@dan-uni/dan-any-plugin-detaolu 0.9.2 → 0.9.5

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.
@@ -4517,14 +4517,14 @@
4517
4517
  else forEachObject(list, iterator, receiver);
4518
4518
  };
4519
4519
  },
4520
- "../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/copy/copy-sync.js": function(module1, __unused_webpack_exports, __webpack_require__) {
4520
+ "../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/copy/copy-sync.js": function(module1, __unused_webpack_exports, __webpack_require__) {
4521
4521
  "use strict";
4522
4522
  var process = __webpack_require__("../../node_modules/.pnpm/process@0.11.10/node_modules/process/browser.js");
4523
4523
  const fs = __webpack_require__("../../node_modules/.pnpm/graceful-fs@4.2.11/node_modules/graceful-fs/graceful-fs.js");
4524
4524
  const path = __webpack_require__("../../node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.js");
4525
- const mkdirsSync = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/mkdirs/index.js").mkdirsSync;
4526
- const utimesMillisSync = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/util/utimes.js").utimesMillisSync;
4527
- const stat = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/util/stat.js");
4525
+ const mkdirsSync = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/mkdirs/index.js").mkdirsSync;
4526
+ const utimesMillisSync = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/util/utimes.js").utimesMillisSync;
4527
+ const stat = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/util/stat.js");
4528
4528
  function copySync(src, dest, opts) {
4529
4529
  if ('function' == typeof opts) opts = {
4530
4530
  filter: opts
@@ -4632,15 +4632,16 @@
4632
4632
  }
4633
4633
  module1.exports = copySync;
4634
4634
  },
4635
- "../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/copy/copy.js": function(module1, __unused_webpack_exports, __webpack_require__) {
4635
+ "../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/copy/copy.js": function(module1, __unused_webpack_exports, __webpack_require__) {
4636
4636
  "use strict";
4637
4637
  var process = __webpack_require__("../../node_modules/.pnpm/process@0.11.10/node_modules/process/browser.js");
4638
- const fs = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/fs/index.js");
4638
+ const fs = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/fs/index.js");
4639
4639
  const path = __webpack_require__("../../node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.js");
4640
- const { mkdirs } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/mkdirs/index.js");
4641
- const { pathExists } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/path-exists/index.js");
4642
- const { utimesMillis } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/util/utimes.js");
4643
- const stat = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/util/stat.js");
4640
+ const { mkdirs } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/mkdirs/index.js");
4641
+ const { pathExists } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/path-exists/index.js");
4642
+ const { utimesMillis } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/util/utimes.js");
4643
+ const stat = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/util/stat.js");
4644
+ const { asyncIteratorConcurrentProcess } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/util/async.js");
4644
4645
  async function copy(src, dest, opts = {}) {
4645
4646
  if ('function' == typeof opts) opts = {
4646
4647
  filter: opts
@@ -4696,15 +4697,15 @@
4696
4697
  }
4697
4698
  async function onDir(srcStat, destStat, src, dest, opts) {
4698
4699
  if (!destStat) await fs.mkdir(dest);
4699
- const promises = [];
4700
- for await (const item of (await fs.opendir(src))){
4700
+ await asyncIteratorConcurrentProcess(await fs.opendir(src), async (item)=>{
4701
4701
  const srcItem = path.join(src, item.name);
4702
4702
  const destItem = path.join(dest, item.name);
4703
- promises.push(runFilter(srcItem, destItem, opts).then((include)=>{
4704
- if (include) return stat.checkPaths(srcItem, destItem, 'copy', opts).then(({ destStat })=>getStatsAndPerformCopy(destStat, srcItem, destItem, opts));
4705
- }));
4706
- }
4707
- await Promise.all(promises);
4703
+ const include = await runFilter(srcItem, destItem, opts);
4704
+ if (include) {
4705
+ const { destStat } = await stat.checkPaths(srcItem, destItem, 'copy', opts);
4706
+ await getStatsAndPerformCopy(destStat, srcItem, destItem, opts);
4707
+ }
4708
+ });
4708
4709
  if (!destStat) await fs.chmod(dest, srcStat.mode);
4709
4710
  }
4710
4711
  async function onLink(destStat, src, dest, opts) {
@@ -4726,21 +4727,21 @@
4726
4727
  }
4727
4728
  module1.exports = copy;
4728
4729
  },
4729
- "../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/copy/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
4730
+ "../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/copy/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
4730
4731
  "use strict";
4731
4732
  const u = __webpack_require__("../../node_modules/.pnpm/universalify@2.0.1/node_modules/universalify/index.js").fromPromise;
4732
4733
  module1.exports = {
4733
- copy: u(__webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/copy/copy.js")),
4734
- copySync: __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/copy/copy-sync.js")
4734
+ copy: u(__webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/copy/copy.js")),
4735
+ copySync: __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/copy/copy-sync.js")
4735
4736
  };
4736
4737
  },
4737
- "../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/empty/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
4738
+ "../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/empty/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
4738
4739
  "use strict";
4739
4740
  const u = __webpack_require__("../../node_modules/.pnpm/universalify@2.0.1/node_modules/universalify/index.js").fromPromise;
4740
- const fs = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/fs/index.js");
4741
+ const fs = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/fs/index.js");
4741
4742
  const path = __webpack_require__("../../node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.js");
4742
- const mkdir = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/mkdirs/index.js");
4743
- const remove = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/remove/index.js");
4743
+ const mkdir = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/mkdirs/index.js");
4744
+ const remove = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/remove/index.js");
4744
4745
  const emptyDir = u(async function(dir) {
4745
4746
  let items;
4746
4747
  try {
@@ -4769,12 +4770,12 @@
4769
4770
  emptydir: emptyDir
4770
4771
  };
4771
4772
  },
4772
- "../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/ensure/file.js": function(module1, __unused_webpack_exports, __webpack_require__) {
4773
+ "../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/ensure/file.js": function(module1, __unused_webpack_exports, __webpack_require__) {
4773
4774
  "use strict";
4774
4775
  const u = __webpack_require__("../../node_modules/.pnpm/universalify@2.0.1/node_modules/universalify/index.js").fromPromise;
4775
4776
  const path = __webpack_require__("../../node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.js");
4776
- const fs = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/fs/index.js");
4777
- const mkdir = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/mkdirs/index.js");
4777
+ const fs = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/fs/index.js");
4778
+ const mkdir = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/mkdirs/index.js");
4778
4779
  async function createFile(file) {
4779
4780
  let stats;
4780
4781
  try {
@@ -4816,11 +4817,11 @@
4816
4817
  createFileSync
4817
4818
  };
4818
4819
  },
4819
- "../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/ensure/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
4820
+ "../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/ensure/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
4820
4821
  "use strict";
4821
- const { createFile, createFileSync } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/ensure/file.js");
4822
- const { createLink, createLinkSync } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/ensure/link.js");
4823
- const { createSymlink, createSymlinkSync } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/ensure/symlink.js");
4822
+ const { createFile, createFileSync } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/ensure/file.js");
4823
+ const { createLink, createLinkSync } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/ensure/link.js");
4824
+ const { createSymlink, createSymlinkSync } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/ensure/symlink.js");
4824
4825
  module1.exports = {
4825
4826
  createFile,
4826
4827
  createFileSync,
@@ -4836,14 +4837,14 @@
4836
4837
  ensureSymlinkSync: createSymlinkSync
4837
4838
  };
4838
4839
  },
4839
- "../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/ensure/link.js": function(module1, __unused_webpack_exports, __webpack_require__) {
4840
+ "../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/ensure/link.js": function(module1, __unused_webpack_exports, __webpack_require__) {
4840
4841
  "use strict";
4841
4842
  const u = __webpack_require__("../../node_modules/.pnpm/universalify@2.0.1/node_modules/universalify/index.js").fromPromise;
4842
4843
  const path = __webpack_require__("../../node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.js");
4843
- const fs = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/fs/index.js");
4844
- const mkdir = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/mkdirs/index.js");
4845
- const { pathExists } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/path-exists/index.js");
4846
- const { areIdentical } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/util/stat.js");
4844
+ const fs = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/fs/index.js");
4845
+ const mkdir = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/mkdirs/index.js");
4846
+ const { pathExists } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/path-exists/index.js");
4847
+ const { areIdentical } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/util/stat.js");
4847
4848
  async function createLink(srcpath, dstpath) {
4848
4849
  let dstStat;
4849
4850
  try {
@@ -4885,11 +4886,11 @@
4885
4886
  createLinkSync
4886
4887
  };
4887
4888
  },
4888
- "../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/ensure/symlink-paths.js": function(module1, __unused_webpack_exports, __webpack_require__) {
4889
+ "../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/ensure/symlink-paths.js": function(module1, __unused_webpack_exports, __webpack_require__) {
4889
4890
  "use strict";
4890
4891
  const path = __webpack_require__("../../node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.js");
4891
- const fs = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/fs/index.js");
4892
- const { pathExists } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/path-exists/index.js");
4892
+ const fs = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/fs/index.js");
4893
+ const { pathExists } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/path-exists/index.js");
4893
4894
  const u = __webpack_require__("../../node_modules/.pnpm/universalify@2.0.1/node_modules/universalify/index.js").fromPromise;
4894
4895
  async function symlinkPaths(srcpath, dstpath) {
4895
4896
  if (path.isAbsolute(srcpath)) {
@@ -4950,9 +4951,9 @@
4950
4951
  symlinkPathsSync
4951
4952
  };
4952
4953
  },
4953
- "../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/ensure/symlink-type.js": function(module1, __unused_webpack_exports, __webpack_require__) {
4954
+ "../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/ensure/symlink-type.js": function(module1, __unused_webpack_exports, __webpack_require__) {
4954
4955
  "use strict";
4955
- const fs = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/fs/index.js");
4956
+ const fs = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/fs/index.js");
4956
4957
  const u = __webpack_require__("../../node_modules/.pnpm/universalify@2.0.1/node_modules/universalify/index.js").fromPromise;
4957
4958
  async function symlinkType(srcpath, type) {
4958
4959
  if (type) return type;
@@ -4979,16 +4980,16 @@
4979
4980
  symlinkTypeSync
4980
4981
  };
4981
4982
  },
4982
- "../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/ensure/symlink.js": function(module1, __unused_webpack_exports, __webpack_require__) {
4983
+ "../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/ensure/symlink.js": function(module1, __unused_webpack_exports, __webpack_require__) {
4983
4984
  "use strict";
4984
4985
  const u = __webpack_require__("../../node_modules/.pnpm/universalify@2.0.1/node_modules/universalify/index.js").fromPromise;
4985
4986
  const path = __webpack_require__("../../node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.js");
4986
- const fs = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/fs/index.js");
4987
- const { mkdirs, mkdirsSync } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/mkdirs/index.js");
4988
- const { symlinkPaths, symlinkPathsSync } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/ensure/symlink-paths.js");
4989
- const { symlinkType, symlinkTypeSync } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/ensure/symlink-type.js");
4990
- const { pathExists } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/path-exists/index.js");
4991
- const { areIdentical } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/util/stat.js");
4987
+ const fs = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/fs/index.js");
4988
+ const { mkdirs, mkdirsSync } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/mkdirs/index.js");
4989
+ const { symlinkPaths, symlinkPathsSync } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/ensure/symlink-paths.js");
4990
+ const { symlinkType, symlinkTypeSync } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/ensure/symlink-type.js");
4991
+ const { pathExists } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/path-exists/index.js");
4992
+ const { areIdentical } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/util/stat.js");
4992
4993
  async function createSymlink(srcpath, dstpath, type) {
4993
4994
  let stats;
4994
4995
  try {
@@ -5032,7 +5033,7 @@
5032
5033
  createSymlinkSync
5033
5034
  };
5034
5035
  },
5035
- "../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/fs/index.js": function(__unused_webpack_module, exports1, __webpack_require__) {
5036
+ "../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/fs/index.js": function(__unused_webpack_module, exports1, __webpack_require__) {
5036
5037
  "use strict";
5037
5038
  var process = __webpack_require__("../../node_modules/.pnpm/process@0.11.10/node_modules/process/browser.js");
5038
5039
  const u = __webpack_require__("../../node_modules/.pnpm/universalify@2.0.1/node_modules/universalify/index.js").fromCallback;
@@ -5136,27 +5137,27 @@
5136
5137
  if ('function' == typeof fs.realpath.native) exports1.realpath.native = u(fs.realpath.native);
5137
5138
  else process.emitWarning('fs.realpath.native is not a function. Is fs being monkey-patched?', 'Warning', 'fs-extra-WARN0003');
5138
5139
  },
5139
- "../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5140
+ "../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5140
5141
  "use strict";
5141
5142
  module1.exports = {
5142
- ...__webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/fs/index.js"),
5143
- ...__webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/copy/index.js"),
5144
- ...__webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/empty/index.js"),
5145
- ...__webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/ensure/index.js"),
5146
- ...__webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/json/index.js"),
5147
- ...__webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/mkdirs/index.js"),
5148
- ...__webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/move/index.js"),
5149
- ...__webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/output-file/index.js"),
5150
- ...__webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/path-exists/index.js"),
5151
- ...__webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/remove/index.js")
5143
+ ...__webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/fs/index.js"),
5144
+ ...__webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/copy/index.js"),
5145
+ ...__webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/empty/index.js"),
5146
+ ...__webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/ensure/index.js"),
5147
+ ...__webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/json/index.js"),
5148
+ ...__webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/mkdirs/index.js"),
5149
+ ...__webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/move/index.js"),
5150
+ ...__webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/output-file/index.js"),
5151
+ ...__webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/path-exists/index.js"),
5152
+ ...__webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/remove/index.js")
5152
5153
  };
5153
5154
  },
5154
- "../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/json/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5155
+ "../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/json/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5155
5156
  "use strict";
5156
5157
  const u = __webpack_require__("../../node_modules/.pnpm/universalify@2.0.1/node_modules/universalify/index.js").fromPromise;
5157
- const jsonFile = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/json/jsonfile.js");
5158
- jsonFile.outputJson = u(__webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/json/output-json.js"));
5159
- jsonFile.outputJsonSync = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/json/output-json-sync.js");
5158
+ const jsonFile = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/json/jsonfile.js");
5159
+ jsonFile.outputJson = u(__webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/json/output-json.js"));
5160
+ jsonFile.outputJsonSync = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/json/output-json-sync.js");
5160
5161
  jsonFile.outputJSON = jsonFile.outputJson;
5161
5162
  jsonFile.outputJSONSync = jsonFile.outputJsonSync;
5162
5163
  jsonFile.writeJSON = jsonFile.writeJson;
@@ -5165,9 +5166,9 @@
5165
5166
  jsonFile.readJSONSync = jsonFile.readJsonSync;
5166
5167
  module1.exports = jsonFile;
5167
5168
  },
5168
- "../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/json/jsonfile.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5169
+ "../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/json/jsonfile.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5169
5170
  "use strict";
5170
- const jsonFile = __webpack_require__("../../node_modules/.pnpm/jsonfile@6.1.0/node_modules/jsonfile/index.js");
5171
+ const jsonFile = __webpack_require__("../../node_modules/.pnpm/jsonfile@6.2.0/node_modules/jsonfile/index.js");
5171
5172
  module1.exports = {
5172
5173
  readJson: jsonFile.readFile,
5173
5174
  readJsonSync: jsonFile.readFileSync,
@@ -5175,30 +5176,30 @@
5175
5176
  writeJsonSync: jsonFile.writeFileSync
5176
5177
  };
5177
5178
  },
5178
- "../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/json/output-json-sync.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5179
+ "../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/json/output-json-sync.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5179
5180
  "use strict";
5180
- const { stringify } = __webpack_require__("../../node_modules/.pnpm/jsonfile@6.1.0/node_modules/jsonfile/utils.js");
5181
- const { outputFileSync } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/output-file/index.js");
5181
+ const { stringify } = __webpack_require__("../../node_modules/.pnpm/jsonfile@6.2.0/node_modules/jsonfile/utils.js");
5182
+ const { outputFileSync } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/output-file/index.js");
5182
5183
  function outputJsonSync(file, data, options) {
5183
5184
  const str = stringify(data, options);
5184
5185
  outputFileSync(file, str, options);
5185
5186
  }
5186
5187
  module1.exports = outputJsonSync;
5187
5188
  },
5188
- "../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/json/output-json.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5189
+ "../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/json/output-json.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5189
5190
  "use strict";
5190
- const { stringify } = __webpack_require__("../../node_modules/.pnpm/jsonfile@6.1.0/node_modules/jsonfile/utils.js");
5191
- const { outputFile } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/output-file/index.js");
5191
+ const { stringify } = __webpack_require__("../../node_modules/.pnpm/jsonfile@6.2.0/node_modules/jsonfile/utils.js");
5192
+ const { outputFile } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/output-file/index.js");
5192
5193
  async function outputJson(file, data, options = {}) {
5193
5194
  const str = stringify(data, options);
5194
5195
  await outputFile(file, str, options);
5195
5196
  }
5196
5197
  module1.exports = outputJson;
5197
5198
  },
5198
- "../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/mkdirs/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5199
+ "../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/mkdirs/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5199
5200
  "use strict";
5200
5201
  const u = __webpack_require__("../../node_modules/.pnpm/universalify@2.0.1/node_modules/universalify/index.js").fromPromise;
5201
- const { makeDir: _makeDir, makeDirSync } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/mkdirs/make-dir.js");
5202
+ const { makeDir: _makeDir, makeDirSync } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/mkdirs/make-dir.js");
5202
5203
  const makeDir = u(_makeDir);
5203
5204
  module1.exports = {
5204
5205
  mkdirs: makeDir,
@@ -5209,10 +5210,10 @@
5209
5210
  ensureDirSync: makeDirSync
5210
5211
  };
5211
5212
  },
5212
- "../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/mkdirs/make-dir.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5213
+ "../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/mkdirs/make-dir.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5213
5214
  "use strict";
5214
- const fs = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/fs/index.js");
5215
- const { checkPath } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/mkdirs/utils.js");
5215
+ const fs = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/fs/index.js");
5216
+ const { checkPath } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/mkdirs/utils.js");
5216
5217
  const getMode = (options)=>{
5217
5218
  const defaults = {
5218
5219
  mode: 511
@@ -5238,7 +5239,7 @@
5238
5239
  });
5239
5240
  };
5240
5241
  },
5241
- "../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/mkdirs/utils.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5242
+ "../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/mkdirs/utils.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5242
5243
  "use strict";
5243
5244
  var process = __webpack_require__("../../node_modules/.pnpm/process@0.11.10/node_modules/process/browser.js");
5244
5245
  const path = __webpack_require__("../../node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.js");
@@ -5253,22 +5254,22 @@
5253
5254
  }
5254
5255
  };
5255
5256
  },
5256
- "../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/move/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5257
+ "../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/move/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5257
5258
  "use strict";
5258
5259
  const u = __webpack_require__("../../node_modules/.pnpm/universalify@2.0.1/node_modules/universalify/index.js").fromPromise;
5259
5260
  module1.exports = {
5260
- move: u(__webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/move/move.js")),
5261
- moveSync: __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/move/move-sync.js")
5261
+ move: u(__webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/move/move.js")),
5262
+ moveSync: __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/move/move-sync.js")
5262
5263
  };
5263
5264
  },
5264
- "../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/move/move-sync.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5265
+ "../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/move/move-sync.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5265
5266
  "use strict";
5266
5267
  const fs = __webpack_require__("../../node_modules/.pnpm/graceful-fs@4.2.11/node_modules/graceful-fs/graceful-fs.js");
5267
5268
  const path = __webpack_require__("../../node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.js");
5268
- const copySync = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/copy/index.js").copySync;
5269
- const removeSync = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/remove/index.js").removeSync;
5270
- const mkdirpSync = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/mkdirs/index.js").mkdirpSync;
5271
- const stat = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/util/stat.js");
5269
+ const copySync = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/copy/index.js").copySync;
5270
+ const removeSync = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/remove/index.js").removeSync;
5271
+ const mkdirpSync = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/mkdirs/index.js").mkdirpSync;
5272
+ const stat = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/util/stat.js");
5272
5273
  function moveSync(src, dest, opts) {
5273
5274
  opts = opts || {};
5274
5275
  const overwrite = opts.overwrite || opts.clobber || false;
@@ -5310,15 +5311,15 @@
5310
5311
  }
5311
5312
  module1.exports = moveSync;
5312
5313
  },
5313
- "../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/move/move.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5314
+ "../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/move/move.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5314
5315
  "use strict";
5315
- const fs = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/fs/index.js");
5316
+ const fs = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/fs/index.js");
5316
5317
  const path = __webpack_require__("../../node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.js");
5317
- const { copy } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/copy/index.js");
5318
- const { remove } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/remove/index.js");
5319
- const { mkdirp } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/mkdirs/index.js");
5320
- const { pathExists } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/path-exists/index.js");
5321
- const stat = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/util/stat.js");
5318
+ const { copy } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/copy/index.js");
5319
+ const { remove } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/remove/index.js");
5320
+ const { mkdirp } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/mkdirs/index.js");
5321
+ const { pathExists } = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/path-exists/index.js");
5322
+ const stat = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/util/stat.js");
5322
5323
  async function move(src, dest, opts = {}) {
5323
5324
  const overwrite = opts.overwrite || opts.clobber || false;
5324
5325
  const { srcStat, isChangingCase = false } = await stat.checkPaths(src, dest, 'move', opts);
@@ -5351,13 +5352,13 @@
5351
5352
  }
5352
5353
  module1.exports = move;
5353
5354
  },
5354
- "../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/output-file/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5355
+ "../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/output-file/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5355
5356
  "use strict";
5356
5357
  const u = __webpack_require__("../../node_modules/.pnpm/universalify@2.0.1/node_modules/universalify/index.js").fromPromise;
5357
- const fs = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/fs/index.js");
5358
+ const fs = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/fs/index.js");
5358
5359
  const path = __webpack_require__("../../node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.js");
5359
- const mkdir = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/mkdirs/index.js");
5360
- const pathExists = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/path-exists/index.js").pathExists;
5360
+ const mkdir = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/mkdirs/index.js");
5361
+ const pathExists = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/path-exists/index.js").pathExists;
5361
5362
  async function outputFile(file, data, encoding = 'utf-8') {
5362
5363
  const dir = path.dirname(file);
5363
5364
  if (!await pathExists(dir)) await mkdir.mkdirs(dir);
@@ -5373,10 +5374,10 @@
5373
5374
  outputFileSync
5374
5375
  };
5375
5376
  },
5376
- "../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/path-exists/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5377
+ "../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/path-exists/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5377
5378
  "use strict";
5378
5379
  const u = __webpack_require__("../../node_modules/.pnpm/universalify@2.0.1/node_modules/universalify/index.js").fromPromise;
5379
- const fs = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/fs/index.js");
5380
+ const fs = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/fs/index.js");
5380
5381
  function pathExists(path) {
5381
5382
  return fs.access(path).then(()=>true).catch(()=>false);
5382
5383
  }
@@ -5385,7 +5386,7 @@
5385
5386
  pathExistsSync: fs.existsSync
5386
5387
  };
5387
5388
  },
5388
- "../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/remove/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5389
+ "../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/remove/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5389
5390
  "use strict";
5390
5391
  const fs = __webpack_require__("../../node_modules/.pnpm/graceful-fs@4.2.11/node_modules/graceful-fs/graceful-fs.js");
5391
5392
  const u = __webpack_require__("../../node_modules/.pnpm/universalify@2.0.1/node_modules/universalify/index.js").fromCallback;
@@ -5406,9 +5407,22 @@
5406
5407
  removeSync
5407
5408
  };
5408
5409
  },
5409
- "../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/util/stat.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5410
+ "../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/util/async.js": function(module1) {
5411
+ "use strict";
5412
+ async function asyncIteratorConcurrentProcess(iterator, fn) {
5413
+ const promises = [];
5414
+ for await (const item of iterator)promises.push(fn(item).then(()=>null, (err)=>err ?? new Error('unknown error')));
5415
+ await Promise.all(promises.map((promise)=>promise.then((possibleErr)=>{
5416
+ if (null !== possibleErr) throw possibleErr;
5417
+ })));
5418
+ }
5419
+ module1.exports = {
5420
+ asyncIteratorConcurrentProcess
5421
+ };
5422
+ },
5423
+ "../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/util/stat.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5410
5424
  "use strict";
5411
- const fs = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/fs/index.js");
5425
+ const fs = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/fs/index.js");
5412
5426
  const path = __webpack_require__("../../node_modules/.pnpm/path-browserify@1.0.1/node_modules/path-browserify/index.js");
5413
5427
  const u = __webpack_require__("../../node_modules/.pnpm/universalify@2.0.1/node_modules/universalify/index.js").fromPromise;
5414
5428
  function getStats(src, dest, opts) {
@@ -5527,7 +5541,7 @@
5527
5541
  return checkParentPathsSync(src, srcStat, destParent, funcName);
5528
5542
  }
5529
5543
  function areIdentical(srcStat, destStat) {
5530
- return destStat.ino && destStat.dev && destStat.ino === srcStat.ino && destStat.dev === srcStat.dev;
5544
+ return void 0 !== destStat.ino && void 0 !== destStat.dev && destStat.ino === srcStat.ino && destStat.dev === srcStat.dev;
5531
5545
  }
5532
5546
  function isSrcSubdir(src, dest) {
5533
5547
  const srcArr = path.resolve(src).split(path.sep).filter((i)=>i);
@@ -5546,9 +5560,9 @@
5546
5560
  areIdentical
5547
5561
  };
5548
5562
  },
5549
- "../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/util/utimes.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5563
+ "../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/util/utimes.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5550
5564
  "use strict";
5551
- const fs = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/fs/index.js");
5565
+ const fs = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/fs/index.js");
5552
5566
  const u = __webpack_require__("../../node_modules/.pnpm/universalify@2.0.1/node_modules/universalify/index.js").fromPromise;
5553
5567
  async function utimesMillis(path, atime, mtime) {
5554
5568
  const fd = await fs.open(path, 'r+');
@@ -5630,6 +5644,11 @@
5630
5644
  var implementation = __webpack_require__("../../node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/implementation.js");
5631
5645
  module1.exports = Function.prototype.bind || implementation;
5632
5646
  },
5647
+ "../../node_modules/.pnpm/generator-function@2.0.1/node_modules/generator-function/index.js": function(module1) {
5648
+ "use strict";
5649
+ const cached = (function*() {}).constructor;
5650
+ module1.exports = ()=>cached;
5651
+ },
5633
5652
  "../../node_modules/.pnpm/get-intrinsic@1.3.0/node_modules/get-intrinsic/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
5634
5653
  "use strict";
5635
5654
  var undefined;
@@ -7203,7 +7222,7 @@
7203
7222
  return tryFunctionObject(value);
7204
7223
  };
7205
7224
  },
7206
- "../../node_modules/.pnpm/is-generator-function@1.1.0/node_modules/is-generator-function/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
7225
+ "../../node_modules/.pnpm/is-generator-function@1.1.2/node_modules/is-generator-function/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
7207
7226
  "use strict";
7208
7227
  var callBound = __webpack_require__("../../node_modules/.pnpm/call-bound@1.0.4/node_modules/call-bound/index.js");
7209
7228
  var safeRegexTest = __webpack_require__("../../node_modules/.pnpm/safe-regex-test@1.1.0/node_modules/safe-regex-test/index.js");
@@ -7212,13 +7231,7 @@
7212
7231
  var getProto = __webpack_require__("../../node_modules/.pnpm/get-proto@1.0.1/node_modules/get-proto/index.js");
7213
7232
  var toStr = callBound('Object.prototype.toString');
7214
7233
  var fnToStr = callBound('Function.prototype.toString');
7215
- var getGeneratorFunc = function() {
7216
- if (!hasToStringTag) return false;
7217
- try {
7218
- return Function('return function*() {}')();
7219
- } catch (e) {}
7220
- };
7221
- var GeneratorFunction;
7234
+ var getGeneratorFunction = __webpack_require__("../../node_modules/.pnpm/generator-function@2.0.1/node_modules/generator-function/index.js");
7222
7235
  module1.exports = function(fn) {
7223
7236
  if ('function' != typeof fn) return false;
7224
7237
  if (isFnRegex(fnToStr(fn))) return true;
@@ -7227,11 +7240,8 @@
7227
7240
  return '[object GeneratorFunction]' === str;
7228
7241
  }
7229
7242
  if (!getProto) return false;
7230
- if (void 0 === GeneratorFunction) {
7231
- var generatorFunc = getGeneratorFunc();
7232
- GeneratorFunction = generatorFunc ? getProto(generatorFunc) : false;
7233
- }
7234
- return getProto(fn) === GeneratorFunction;
7243
+ var GeneratorFunction = getGeneratorFunction();
7244
+ return GeneratorFunction && getProto(fn) === GeneratorFunction.prototype;
7235
7245
  };
7236
7246
  },
7237
7247
  "../../node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/implementation.js": function(module1) {
@@ -7635,15 +7645,15 @@
7635
7645
  };
7636
7646
  })();
7637
7647
  },
7638
- "../../node_modules/.pnpm/jsonfile@6.1.0/node_modules/jsonfile/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
7648
+ "../../node_modules/.pnpm/jsonfile@6.2.0/node_modules/jsonfile/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
7639
7649
  let _fs;
7640
7650
  try {
7641
7651
  _fs = __webpack_require__("../../node_modules/.pnpm/graceful-fs@4.2.11/node_modules/graceful-fs/graceful-fs.js");
7642
7652
  } catch (_) {
7643
- _fs = __webpack_require__("?91c0");
7653
+ _fs = __webpack_require__("?8e15");
7644
7654
  }
7645
7655
  const universalify = __webpack_require__("../../node_modules/.pnpm/universalify@2.0.1/node_modules/universalify/index.js");
7646
- const { stringify, stripBom } = __webpack_require__("../../node_modules/.pnpm/jsonfile@6.1.0/node_modules/jsonfile/utils.js");
7656
+ const { stringify, stripBom } = __webpack_require__("../../node_modules/.pnpm/jsonfile@6.2.0/node_modules/jsonfile/utils.js");
7647
7657
  async function _readFile(file, options = {}) {
7648
7658
  if ('string' == typeof options) options = {
7649
7659
  encoding: options
@@ -7690,15 +7700,14 @@
7690
7700
  const str = stringify(obj, options);
7691
7701
  return fs.writeFileSync(file, str, options);
7692
7702
  }
7693
- const jsonfile = {
7703
+ module1.exports = {
7694
7704
  readFile,
7695
7705
  readFileSync,
7696
7706
  writeFile,
7697
7707
  writeFileSync
7698
7708
  };
7699
- module1.exports = jsonfile;
7700
7709
  },
7701
- "../../node_modules/.pnpm/jsonfile@6.1.0/node_modules/jsonfile/utils.js": function(module1, __unused_webpack_exports, __webpack_require__) {
7710
+ "../../node_modules/.pnpm/jsonfile@6.2.0/node_modules/jsonfile/utils.js": function(module1, __unused_webpack_exports, __webpack_require__) {
7702
7711
  var Buffer = __webpack_require__("../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.js")["Buffer"];
7703
7712
  function stringify(obj, { EOL = '\n', finalEOL = true, replacer = null, spaces } = {}) {
7704
7713
  const EOF = finalEOL ? EOL : '';
@@ -10887,7 +10896,7 @@
10887
10896
  "../../node_modules/.pnpm/util@0.12.5/node_modules/util/support/types.js": function(__unused_webpack_module, exports1, __webpack_require__) {
10888
10897
  "use strict";
10889
10898
  var isArgumentsObject = __webpack_require__("../../node_modules/.pnpm/is-arguments@1.2.0/node_modules/is-arguments/index.js");
10890
- var isGeneratorFunction = __webpack_require__("../../node_modules/.pnpm/is-generator-function@1.1.0/node_modules/is-generator-function/index.js");
10899
+ var isGeneratorFunction = __webpack_require__("../../node_modules/.pnpm/is-generator-function@1.1.2/node_modules/is-generator-function/index.js");
10891
10900
  var whichTypedArray = __webpack_require__("../../node_modules/.pnpm/which-typed-array@1.1.19/node_modules/which-typed-array/index.js");
10892
10901
  var isTypedArray = __webpack_require__("../../node_modules/.pnpm/is-typed-array@1.1.15/node_modules/is-typed-array/index.js");
10893
10902
  function uncurryThis(f) {
@@ -11967,10 +11976,10 @@
11967
11976
  },
11968
11977
  "./src/pakku.js/similarity-gen.wasm": function(module1, __unused_webpack_exports, __webpack_require__) {
11969
11978
  "use strict";
11970
- module1.exports = __webpack_require__.p + "static/wasm/54a7637a81e5f86e.module.wasm";
11979
+ module1.exports = __webpack_require__.p + "static/wasm/54a7637a.module.wasm";
11971
11980
  },
11972
11981
  "?d512": function() {},
11973
- "?91c0": function() {},
11982
+ "?8e15": function() {},
11974
11983
  "?fe28": function() {},
11975
11984
  "?14dd": function() {},
11976
11985
  "../../node_modules/.pnpm/available-typed-arrays@1.0.7/node_modules/available-typed-arrays/index.js": function(module1, __unused_webpack_exports, __webpack_require__) {
@@ -13695,7 +13704,7 @@ and limitations under the License.
13695
13704
  function IsObject_isObject(value) {
13696
13705
  return null != value && ('object' == typeof value || 'function' == typeof value) && !Array.isArray(value);
13697
13706
  }
13698
- const defaultOptions = {
13707
+ const OptionsBuilder_defaultOptions = {
13699
13708
  preserveOrder: false,
13700
13709
  attributeNamePrefix: '@_',
13701
13710
  attributesGroupName: false,
@@ -13735,7 +13744,7 @@ and limitations under the License.
13735
13744
  captureMetaData: false
13736
13745
  };
13737
13746
  const buildOptions = function(options) {
13738
- return Object.assign({}, defaultOptions, options);
13747
+ return Object.assign({}, OptionsBuilder_defaultOptions, options);
13739
13748
  };
13740
13749
  const nameStartChar = ':A-Za-z_\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD';
13741
13750
  const nameChar = nameStartChar + '\\-.\\d\\u00B7\\u0300-\\u036F\\u203F-\\u2040';
@@ -13792,147 +13801,229 @@ and limitations under the License.
13792
13801
  return METADATA_SYMBOL;
13793
13802
  }
13794
13803
  }
13795
- function readDocType(xmlData, i) {
13796
- const entities = {};
13797
- if ('O' === xmlData[i + 3] && 'C' === xmlData[i + 4] && 'T' === xmlData[i + 5] && 'Y' === xmlData[i + 6] && 'P' === xmlData[i + 7] && 'E' === xmlData[i + 8]) {
13798
- i += 9;
13799
- let angleBracketsCount = 1;
13800
- let hasBody = false, comment = false;
13801
- for(; i < xmlData.length; i++)if ('<' !== xmlData[i] || comment) if ('>' === xmlData[i]) {
13802
- if (comment) {
13803
- if ("-" === xmlData[i - 1] && "-" === xmlData[i - 2]) {
13804
- comment = false;
13805
- angleBracketsCount--;
13806
- }
13807
- } else angleBracketsCount--;
13808
- if (0 === angleBracketsCount) break;
13809
- } else if ('[' === xmlData[i]) hasBody = true;
13810
- else xmlData[i];
13811
- else {
13812
- if (hasBody && hasSeq(xmlData, "!ENTITY", i)) {
13813
- i += 7;
13814
- let entityName, val;
13815
- [entityName, val, i] = readEntityExp(xmlData, i + 1);
13816
- if (-1 === val.indexOf("&")) entities[entityName] = {
13817
- regx: RegExp(`&${entityName};`, "g"),
13818
- val: val
13819
- };
13820
- } else if (hasBody && hasSeq(xmlData, "!ELEMENT", i)) {
13821
- i += 8;
13822
- const { index } = readElementExp(xmlData, i + 1);
13823
- i = index;
13824
- } else if (hasBody && hasSeq(xmlData, "!ATTLIST", i)) i += 8;
13825
- else if (hasBody && hasSeq(xmlData, "!NOTATION", i)) {
13826
- i += 9;
13827
- const { index } = readNotationExp(xmlData, i + 1);
13828
- i = index;
13829
- } else if (hasSeq(xmlData, "!--", i)) comment = true;
13830
- else throw new Error("Invalid DOCTYPE");
13831
- angleBracketsCount++;
13832
- }
13833
- if (0 !== angleBracketsCount) throw new Error("Unclosed DOCTYPE");
13834
- } else throw new Error("Invalid Tag instead of DOCTYPE");
13835
- return {
13836
- entities,
13837
- i
13838
- };
13839
- }
13840
- const skipWhitespace = (data, index)=>{
13841
- while(index < data.length && /\s/.test(data[index]))index++;
13842
- return index;
13843
- };
13844
- function readEntityExp(xmlData, i) {
13845
- i = skipWhitespace(xmlData, i);
13846
- let entityName = "";
13847
- while(i < xmlData.length && !/\s/.test(xmlData[i]) && '"' !== xmlData[i] && "'" !== xmlData[i]){
13848
- entityName += xmlData[i];
13849
- i++;
13804
+ class DocTypeReader {
13805
+ constructor(processEntities){
13806
+ this.suppressValidationErr = !processEntities;
13807
+ }
13808
+ readDocType(xmlData, i) {
13809
+ const entities = {};
13810
+ if ('O' === xmlData[i + 3] && 'C' === xmlData[i + 4] && 'T' === xmlData[i + 5] && 'Y' === xmlData[i + 6] && 'P' === xmlData[i + 7] && 'E' === xmlData[i + 8]) {
13811
+ i += 9;
13812
+ let angleBracketsCount = 1;
13813
+ let hasBody = false, comment = false;
13814
+ for(; i < xmlData.length; i++)if ('<' !== xmlData[i] || comment) if ('>' === xmlData[i]) {
13815
+ if (comment) {
13816
+ if ("-" === xmlData[i - 1] && "-" === xmlData[i - 2]) {
13817
+ comment = false;
13818
+ angleBracketsCount--;
13819
+ }
13820
+ } else angleBracketsCount--;
13821
+ if (0 === angleBracketsCount) break;
13822
+ } else if ('[' === xmlData[i]) hasBody = true;
13823
+ else xmlData[i];
13824
+ else {
13825
+ if (hasBody && hasSeq(xmlData, "!ENTITY", i)) {
13826
+ i += 7;
13827
+ let entityName, val;
13828
+ [entityName, val, i] = this.readEntityExp(xmlData, i + 1, this.suppressValidationErr);
13829
+ if (-1 === val.indexOf("&")) entities[entityName] = {
13830
+ regx: RegExp(`&${entityName};`, "g"),
13831
+ val: val
13832
+ };
13833
+ } else if (hasBody && hasSeq(xmlData, "!ELEMENT", i)) {
13834
+ i += 8;
13835
+ const { index } = this.readElementExp(xmlData, i + 1);
13836
+ i = index;
13837
+ } else if (hasBody && hasSeq(xmlData, "!ATTLIST", i)) i += 8;
13838
+ else if (hasBody && hasSeq(xmlData, "!NOTATION", i)) {
13839
+ i += 9;
13840
+ const { index } = this.readNotationExp(xmlData, i + 1, this.suppressValidationErr);
13841
+ i = index;
13842
+ } else if (hasSeq(xmlData, "!--", i)) comment = true;
13843
+ else throw new Error("Invalid DOCTYPE");
13844
+ angleBracketsCount++;
13845
+ }
13846
+ if (0 !== angleBracketsCount) throw new Error("Unclosed DOCTYPE");
13847
+ } else throw new Error("Invalid Tag instead of DOCTYPE");
13848
+ return {
13849
+ entities,
13850
+ i
13851
+ };
13850
13852
  }
13851
- validateEntityName(entityName);
13852
- i = skipWhitespace(xmlData, i);
13853
- if ("SYSTEM" === xmlData.substring(i, i + 6).toUpperCase()) throw new Error("External entities are not supported");
13854
- if ("%" === xmlData[i]) throw new Error("Parameter entities are not supported");
13855
- let entityValue = "";
13856
- [i, entityValue] = readIdentifierVal(xmlData, i, "entity");
13857
- i--;
13858
- return [
13859
- entityName,
13860
- entityValue,
13861
- i
13862
- ];
13863
- }
13864
- function readNotationExp(xmlData, i) {
13865
- i = skipWhitespace(xmlData, i);
13866
- let notationName = "";
13867
- while(i < xmlData.length && !/\s/.test(xmlData[i])){
13868
- notationName += xmlData[i];
13869
- i++;
13853
+ readEntityExp(xmlData, i) {
13854
+ i = skipWhitespace(xmlData, i);
13855
+ let entityName = "";
13856
+ while(i < xmlData.length && !/\s/.test(xmlData[i]) && '"' !== xmlData[i] && "'" !== xmlData[i]){
13857
+ entityName += xmlData[i];
13858
+ i++;
13859
+ }
13860
+ validateEntityName(entityName);
13861
+ i = skipWhitespace(xmlData, i);
13862
+ if (!this.suppressValidationErr) {
13863
+ if ("SYSTEM" === xmlData.substring(i, i + 6).toUpperCase()) throw new Error("External entities are not supported");
13864
+ else if ("%" === xmlData[i]) throw new Error("Parameter entities are not supported");
13865
+ }
13866
+ let entityValue = "";
13867
+ [i, entityValue] = this.readIdentifierVal(xmlData, i, "entity");
13868
+ i--;
13869
+ return [
13870
+ entityName,
13871
+ entityValue,
13872
+ i
13873
+ ];
13870
13874
  }
13871
- validateEntityName(notationName);
13872
- i = skipWhitespace(xmlData, i);
13873
- const identifierType = xmlData.substring(i, i + 6).toUpperCase();
13874
- if ("SYSTEM" !== identifierType && "PUBLIC" !== identifierType) throw new Error(`Expected SYSTEM or PUBLIC, found "${identifierType}"`);
13875
- i += identifierType.length;
13876
- i = skipWhitespace(xmlData, i);
13877
- let publicIdentifier = null;
13878
- let systemIdentifier = null;
13879
- if ("PUBLIC" === identifierType) {
13880
- [i, publicIdentifier] = readIdentifierVal(xmlData, i, "publicIdentifier");
13875
+ readNotationExp(xmlData, i) {
13876
+ i = skipWhitespace(xmlData, i);
13877
+ let notationName = "";
13878
+ while(i < xmlData.length && !/\s/.test(xmlData[i])){
13879
+ notationName += xmlData[i];
13880
+ i++;
13881
+ }
13882
+ this.suppressValidationErr || validateEntityName(notationName);
13881
13883
  i = skipWhitespace(xmlData, i);
13882
- if ('"' === xmlData[i] || "'" === xmlData[i]) [i, systemIdentifier] = readIdentifierVal(xmlData, i, "systemIdentifier");
13883
- } else if ("SYSTEM" === identifierType) {
13884
- [i, systemIdentifier] = readIdentifierVal(xmlData, i, "systemIdentifier");
13885
- if (!systemIdentifier) throw new Error("Missing mandatory system identifier for SYSTEM notation");
13884
+ const identifierType = xmlData.substring(i, i + 6).toUpperCase();
13885
+ if (!this.suppressValidationErr && "SYSTEM" !== identifierType && "PUBLIC" !== identifierType) throw new Error(`Expected SYSTEM or PUBLIC, found "${identifierType}"`);
13886
+ i += identifierType.length;
13887
+ i = skipWhitespace(xmlData, i);
13888
+ let publicIdentifier = null;
13889
+ let systemIdentifier = null;
13890
+ if ("PUBLIC" === identifierType) {
13891
+ [i, publicIdentifier] = this.readIdentifierVal(xmlData, i, "publicIdentifier");
13892
+ i = skipWhitespace(xmlData, i);
13893
+ if ('"' === xmlData[i] || "'" === xmlData[i]) [i, systemIdentifier] = this.readIdentifierVal(xmlData, i, "systemIdentifier");
13894
+ } else if ("SYSTEM" === identifierType) {
13895
+ [i, systemIdentifier] = this.readIdentifierVal(xmlData, i, "systemIdentifier");
13896
+ if (!this.suppressValidationErr && !systemIdentifier) throw new Error("Missing mandatory system identifier for SYSTEM notation");
13897
+ }
13898
+ return {
13899
+ notationName,
13900
+ publicIdentifier,
13901
+ systemIdentifier,
13902
+ index: --i
13903
+ };
13886
13904
  }
13887
- return {
13888
- notationName,
13889
- publicIdentifier,
13890
- systemIdentifier,
13891
- index: --i
13892
- };
13893
- }
13894
- function readIdentifierVal(xmlData, i, type) {
13895
- let identifierVal = "";
13896
- const startChar = xmlData[i];
13897
- if ('"' !== startChar && "'" !== startChar) throw new Error(`Expected quoted string, found "${startChar}"`);
13898
- i++;
13899
- while(i < xmlData.length && xmlData[i] !== startChar){
13900
- identifierVal += xmlData[i];
13905
+ readIdentifierVal(xmlData, i, type) {
13906
+ let identifierVal = "";
13907
+ const startChar = xmlData[i];
13908
+ if ('"' !== startChar && "'" !== startChar) throw new Error(`Expected quoted string, found "${startChar}"`);
13901
13909
  i++;
13902
- }
13903
- if (xmlData[i] !== startChar) throw new Error(`Unterminated ${type} value`);
13904
- i++;
13905
- return [
13906
- i,
13907
- identifierVal
13908
- ];
13909
- }
13910
- function readElementExp(xmlData, i) {
13911
- i = skipWhitespace(xmlData, i);
13912
- let elementName = "";
13913
- while(i < xmlData.length && !/\s/.test(xmlData[i])){
13914
- elementName += xmlData[i];
13910
+ while(i < xmlData.length && xmlData[i] !== startChar){
13911
+ identifierVal += xmlData[i];
13912
+ i++;
13913
+ }
13914
+ if (xmlData[i] !== startChar) throw new Error(`Unterminated ${type} value`);
13915
13915
  i++;
13916
+ return [
13917
+ i,
13918
+ identifierVal
13919
+ ];
13916
13920
  }
13917
- if (!validateEntityName(elementName)) throw new Error(`Invalid element name: "${elementName}"`);
13918
- i = skipWhitespace(xmlData, i);
13919
- let contentModel = "";
13920
- if ("E" === xmlData[i] && hasSeq(xmlData, "MPTY", i)) i += 4;
13921
- else if ("A" === xmlData[i] && hasSeq(xmlData, "NY", i)) i += 2;
13922
- else if ("(" === xmlData[i]) {
13923
- i++;
13924
- while(i < xmlData.length && ")" !== xmlData[i]){
13925
- contentModel += xmlData[i];
13921
+ readElementExp(xmlData, i) {
13922
+ i = skipWhitespace(xmlData, i);
13923
+ let elementName = "";
13924
+ while(i < xmlData.length && !/\s/.test(xmlData[i])){
13925
+ elementName += xmlData[i];
13926
13926
  i++;
13927
13927
  }
13928
- if (")" !== xmlData[i]) throw new Error("Unterminated content model");
13929
- } else throw new Error(`Invalid Element Expression, found "${xmlData[i]}"`);
13930
- return {
13931
- elementName,
13932
- contentModel: contentModel.trim(),
13933
- index: i
13934
- };
13928
+ if (!this.suppressValidationErr && !isName(elementName)) throw new Error(`Invalid element name: "${elementName}"`);
13929
+ i = skipWhitespace(xmlData, i);
13930
+ let contentModel = "";
13931
+ if ("E" === xmlData[i] && hasSeq(xmlData, "MPTY", i)) i += 4;
13932
+ else if ("A" === xmlData[i] && hasSeq(xmlData, "NY", i)) i += 2;
13933
+ else if ("(" === xmlData[i]) {
13934
+ i++;
13935
+ while(i < xmlData.length && ")" !== xmlData[i]){
13936
+ contentModel += xmlData[i];
13937
+ i++;
13938
+ }
13939
+ if (")" !== xmlData[i]) throw new Error("Unterminated content model");
13940
+ } else if (!this.suppressValidationErr) throw new Error(`Invalid Element Expression, found "${xmlData[i]}"`);
13941
+ return {
13942
+ elementName,
13943
+ contentModel: contentModel.trim(),
13944
+ index: i
13945
+ };
13946
+ }
13947
+ readAttlistExp(xmlData, i) {
13948
+ i = skipWhitespace(xmlData, i);
13949
+ let elementName = "";
13950
+ while(i < xmlData.length && !/\s/.test(xmlData[i])){
13951
+ elementName += xmlData[i];
13952
+ i++;
13953
+ }
13954
+ validateEntityName(elementName);
13955
+ i = skipWhitespace(xmlData, i);
13956
+ let attributeName = "";
13957
+ while(i < xmlData.length && !/\s/.test(xmlData[i])){
13958
+ attributeName += xmlData[i];
13959
+ i++;
13960
+ }
13961
+ if (!validateEntityName(attributeName)) throw new Error(`Invalid attribute name: "${attributeName}"`);
13962
+ i = skipWhitespace(xmlData, i);
13963
+ let attributeType = "";
13964
+ if ("NOTATION" === xmlData.substring(i, i + 8).toUpperCase()) {
13965
+ attributeType = "NOTATION";
13966
+ i += 8;
13967
+ i = skipWhitespace(xmlData, i);
13968
+ if ("(" !== xmlData[i]) throw new Error(`Expected '(', found "${xmlData[i]}"`);
13969
+ i++;
13970
+ let allowedNotations = [];
13971
+ while(i < xmlData.length && ")" !== xmlData[i]){
13972
+ let notation = "";
13973
+ while(i < xmlData.length && "|" !== xmlData[i] && ")" !== xmlData[i]){
13974
+ notation += xmlData[i];
13975
+ i++;
13976
+ }
13977
+ notation = notation.trim();
13978
+ if (!validateEntityName(notation)) throw new Error(`Invalid notation name: "${notation}"`);
13979
+ allowedNotations.push(notation);
13980
+ if ("|" === xmlData[i]) {
13981
+ i++;
13982
+ i = skipWhitespace(xmlData, i);
13983
+ }
13984
+ }
13985
+ if (")" !== xmlData[i]) throw new Error("Unterminated list of notations");
13986
+ i++;
13987
+ attributeType += " (" + allowedNotations.join("|") + ")";
13988
+ } else {
13989
+ while(i < xmlData.length && !/\s/.test(xmlData[i])){
13990
+ attributeType += xmlData[i];
13991
+ i++;
13992
+ }
13993
+ const validTypes = [
13994
+ "CDATA",
13995
+ "ID",
13996
+ "IDREF",
13997
+ "IDREFS",
13998
+ "ENTITY",
13999
+ "ENTITIES",
14000
+ "NMTOKEN",
14001
+ "NMTOKENS"
14002
+ ];
14003
+ if (!this.suppressValidationErr && !validTypes.includes(attributeType.toUpperCase())) throw new Error(`Invalid attribute type: "${attributeType}"`);
14004
+ }
14005
+ i = skipWhitespace(xmlData, i);
14006
+ let defaultValue = "";
14007
+ if ("#REQUIRED" === xmlData.substring(i, i + 8).toUpperCase()) {
14008
+ defaultValue = "#REQUIRED";
14009
+ i += 8;
14010
+ } else if ("#IMPLIED" === xmlData.substring(i, i + 7).toUpperCase()) {
14011
+ defaultValue = "#IMPLIED";
14012
+ i += 7;
14013
+ } else [i, defaultValue] = this.readIdentifierVal(xmlData, i, "ATTLIST");
14014
+ return {
14015
+ elementName,
14016
+ attributeName,
14017
+ attributeType,
14018
+ defaultValue,
14019
+ index: i
14020
+ };
14021
+ }
13935
14022
  }
14023
+ const skipWhitespace = (data, index)=>{
14024
+ while(index < data.length && /\s/.test(data[index]))index++;
14025
+ return index;
14026
+ };
13936
14027
  function hasSeq(data, seq, i) {
13937
14028
  for(let j = 0; j < seq.length; j++)if (seq[j] !== data[i + j + 1]) return false;
13938
14029
  return true;
@@ -14183,6 +14274,7 @@ and limitations under the License.
14183
14274
  let currentNode = xmlObj;
14184
14275
  let textData = "";
14185
14276
  let jPath = "";
14277
+ const docTypeReader = new DocTypeReader(this.options.processEntities);
14186
14278
  for(let i = 0; i < xmlData.length; i++){
14187
14279
  const ch = xmlData[i];
14188
14280
  if ('<' === ch) if ('/' === xmlData[i + 1]) {
@@ -14230,7 +14322,7 @@ and limitations under the License.
14230
14322
  }
14231
14323
  i = endIndex;
14232
14324
  } else if ('!D' === xmlData.substr(i + 1, 2)) {
14233
- const result = readDocType(xmlData, i);
14325
+ const result = docTypeReader.readDocType(xmlData, i);
14234
14326
  this.docTypeEntities = result.entities;
14235
14327
  i = result.i;
14236
14328
  } else if ('![' === xmlData.substr(i + 1, 2)) {
@@ -14749,9 +14841,8 @@ and limitations under the License.
14749
14841
  this.options = buildOptions(options);
14750
14842
  }
14751
14843
  parse(xmlData, validationOption) {
14752
- if ("string" == typeof xmlData) ;
14753
- else if (xmlData.toString) xmlData = xmlData.toString();
14754
- else throw new Error("XML data is accepted in String or Bytes[] form.");
14844
+ if ("string" != typeof xmlData && xmlData.toString) xmlData = xmlData.toString();
14845
+ else if ("string" != typeof xmlData) throw new Error("XML data is accepted in String or Bytes[] form.");
14755
14846
  if (validationOption) {
14756
14847
  if (true === validationOption) validationOption = {};
14757
14848
  const result = validator_validate(xmlData, validationOption);
@@ -15055,7 +15146,6 @@ and limitations under the License.
15055
15146
  return false;
15056
15147
  }
15057
15148
  var json_bigint = __webpack_require__("../../node_modules/.pnpm/json-bigint@1.0.0/node_modules/json-bigint/index.js");
15058
- var json_bigint_default = /*#__PURE__*/ __webpack_require__.n(json_bigint);
15059
15149
  var descriptors_ScalarType;
15060
15150
  (function(ScalarType) {
15061
15151
  ScalarType[ScalarType["DOUBLE"] = 1] = "DOUBLE";
@@ -15254,7 +15344,7 @@ and limitations under the License.
15254
15344
  const protoInt64 = /*@__PURE__*/ makeInt64Support();
15255
15345
  function makeInt64Support() {
15256
15346
  const dv = new DataView(new ArrayBuffer(8));
15257
- const ok = "function" == typeof BigInt && "function" == typeof dv.getBigInt64 && "function" == typeof dv.getBigUint64 && "function" == typeof dv.setBigInt64 && "function" == typeof dv.setBigUint64 && ("object" != typeof proto_int64_process || "object" != typeof proto_int64_process.env || "1" !== proto_int64_process.env.BUF_BIGINT_DISABLE);
15347
+ const ok = "function" == typeof BigInt && "function" == typeof dv.getBigInt64 && "function" == typeof dv.getBigUint64 && "function" == typeof dv.setBigInt64 && "function" == typeof dv.setBigUint64 && (!!globalThis.Deno || "object" != typeof proto_int64_process || "object" != typeof proto_int64_process.env || "1" !== proto_int64_process.env.BUF_BIGINT_DISABLE);
15258
15348
  if (ok) {
15259
15349
  const MIN = BigInt("-9223372036854775808");
15260
15350
  const MAX = BigInt("9223372036854775807");
@@ -16505,12 +16595,13 @@ and limitations under the License.
16505
16595
  const ok = field.enum.values.some((v)=>v.number === val);
16506
16596
  if (ok) message.set(field, val);
16507
16597
  else if (options.readUnknownFields) {
16508
- const data = new BinaryWriter().int32(val).finish();
16598
+ const bytes = [];
16599
+ varint32write(val, bytes);
16509
16600
  const unknownFields = null != (_a = message.getUnknown()) ? _a : [];
16510
16601
  unknownFields.push({
16511
16602
  no: field.number,
16512
16603
  wireType,
16513
- data
16604
+ data: new Uint8Array(bytes)
16514
16605
  });
16515
16606
  message.setUnknown(unknownFields);
16516
16607
  }
@@ -17180,6 +17271,16 @@ and limitations under the License.
17180
17271
  jsonFormat: 1,
17181
17272
  enforceNamingStyle: 2,
17182
17273
  defaultSymbolVisibility: 1
17274
+ },
17275
+ 1001: {
17276
+ fieldPresence: 1,
17277
+ enumType: 1,
17278
+ repeatedFieldEncoding: 1,
17279
+ utf8Validation: 2,
17280
+ messageEncoding: 1,
17281
+ jsonFormat: 1,
17282
+ enforceNamingStyle: 1,
17283
+ defaultSymbolVisibility: 2
17183
17284
  }
17184
17285
  };
17185
17286
  function addFile(proto, reg) {
@@ -18683,7 +18784,10 @@ and limitations under the License.
18683
18784
  number: 10,
18684
18785
  type: 8,
18685
18786
  label: 1,
18686
- defaultValue: "false"
18787
+ defaultValue: "false",
18788
+ options: {
18789
+ deprecated: true
18790
+ }
18687
18791
  },
18688
18792
  {
18689
18793
  name: "debug_redact",
@@ -20513,7 +20617,6 @@ and limitations under the License.
20513
20617
  };
20514
20618
  }
20515
20619
  var hh_mm_ss = __webpack_require__("../../node_modules/.pnpm/hh-mm-ss@1.2.0/node_modules/hh-mm-ss/index.js");
20516
- var hh_mm_ss_default = /*#__PURE__*/ __webpack_require__.n(hh_mm_ss);
20517
20620
  const sha_t = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/", sha_n = "ARRAYBUFFER not supported by this environment", sha_e = "UINT8ARRAY not supported by this environment";
20518
20621
  function sha_r(t, n, e, r) {
20519
20622
  let i, s, o;
@@ -25381,31 +25484,35 @@ and limitations under the License.
25381
25484
  var implementation = __nested_webpack_require_196280_196299__("../../node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/implementation.js");
25382
25485
  module1.exports = Function.prototype.bind || implementation;
25383
25486
  },
25384
- "../../node_modules/.pnpm/get-intrinsic@1.3.0/node_modules/get-intrinsic/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_196652_196671__) {
25487
+ "../../node_modules/.pnpm/generator-function@2.0.1/node_modules/generator-function/index.js": function(module1) {
25488
+ const cached = (function*() {}).constructor;
25489
+ module1.exports = ()=>cached;
25490
+ },
25491
+ "../../node_modules/.pnpm/get-intrinsic@1.3.0/node_modules/get-intrinsic/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_196866_196885__) {
25385
25492
  var undefined;
25386
- var $Object = __nested_webpack_require_196652_196671__("../../node_modules/.pnpm/es-object-atoms@1.1.1/node_modules/es-object-atoms/index.js");
25387
- var $Error = __nested_webpack_require_196652_196671__("../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/index.js");
25388
- var $EvalError = __nested_webpack_require_196652_196671__("../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/eval.js");
25389
- var $RangeError = __nested_webpack_require_196652_196671__("../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/range.js");
25390
- var $ReferenceError = __nested_webpack_require_196652_196671__("../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/ref.js");
25391
- var $SyntaxError = __nested_webpack_require_196652_196671__("../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/syntax.js");
25392
- var $TypeError = __nested_webpack_require_196652_196671__("../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/type.js");
25393
- var $URIError = __nested_webpack_require_196652_196671__("../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/uri.js");
25394
- var abs = __nested_webpack_require_196652_196671__("../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/abs.js");
25395
- var floor = __nested_webpack_require_196652_196671__("../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/floor.js");
25396
- var max = __nested_webpack_require_196652_196671__("../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/max.js");
25397
- var min = __nested_webpack_require_196652_196671__("../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/min.js");
25398
- var pow = __nested_webpack_require_196652_196671__("../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/pow.js");
25399
- var round = __nested_webpack_require_196652_196671__("../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/round.js");
25400
- var sign = __nested_webpack_require_196652_196671__("../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/sign.js");
25493
+ var $Object = __nested_webpack_require_196866_196885__("../../node_modules/.pnpm/es-object-atoms@1.1.1/node_modules/es-object-atoms/index.js");
25494
+ var $Error = __nested_webpack_require_196866_196885__("../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/index.js");
25495
+ var $EvalError = __nested_webpack_require_196866_196885__("../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/eval.js");
25496
+ var $RangeError = __nested_webpack_require_196866_196885__("../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/range.js");
25497
+ var $ReferenceError = __nested_webpack_require_196866_196885__("../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/ref.js");
25498
+ var $SyntaxError = __nested_webpack_require_196866_196885__("../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/syntax.js");
25499
+ var $TypeError = __nested_webpack_require_196866_196885__("../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/type.js");
25500
+ var $URIError = __nested_webpack_require_196866_196885__("../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/uri.js");
25501
+ var abs = __nested_webpack_require_196866_196885__("../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/abs.js");
25502
+ var floor = __nested_webpack_require_196866_196885__("../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/floor.js");
25503
+ var max = __nested_webpack_require_196866_196885__("../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/max.js");
25504
+ var min = __nested_webpack_require_196866_196885__("../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/min.js");
25505
+ var pow = __nested_webpack_require_196866_196885__("../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/pow.js");
25506
+ var round = __nested_webpack_require_196866_196885__("../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/round.js");
25507
+ var sign = __nested_webpack_require_196866_196885__("../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/sign.js");
25401
25508
  var $Function = Function;
25402
25509
  var getEvalledConstructor = function(expressionSyntax) {
25403
25510
  try {
25404
25511
  return $Function('"use strict"; return (' + expressionSyntax + ').constructor;')();
25405
25512
  } catch (e) {}
25406
25513
  };
25407
- var $gOPD = __nested_webpack_require_196652_196671__("../../node_modules/.pnpm/gopd@1.2.0/node_modules/gopd/index.js");
25408
- var $defineProperty = __nested_webpack_require_196652_196671__("../../node_modules/.pnpm/es-define-property@1.0.1/node_modules/es-define-property/index.js");
25514
+ var $gOPD = __nested_webpack_require_196866_196885__("../../node_modules/.pnpm/gopd@1.2.0/node_modules/gopd/index.js");
25515
+ var $defineProperty = __nested_webpack_require_196866_196885__("../../node_modules/.pnpm/es-define-property@1.0.1/node_modules/es-define-property/index.js");
25409
25516
  var throwTypeError = function() {
25410
25517
  throw new $TypeError();
25411
25518
  };
@@ -25421,12 +25528,12 @@ and limitations under the License.
25421
25528
  }
25422
25529
  }
25423
25530
  }() : throwTypeError;
25424
- var hasSymbols = __nested_webpack_require_196652_196671__("../../node_modules/.pnpm/has-symbols@1.1.0/node_modules/has-symbols/index.js")();
25425
- var getProto = __nested_webpack_require_196652_196671__("../../node_modules/.pnpm/get-proto@1.0.1/node_modules/get-proto/index.js");
25426
- var $ObjectGPO = __nested_webpack_require_196652_196671__("../../node_modules/.pnpm/get-proto@1.0.1/node_modules/get-proto/Object.getPrototypeOf.js");
25427
- var $ReflectGPO = __nested_webpack_require_196652_196671__("../../node_modules/.pnpm/get-proto@1.0.1/node_modules/get-proto/Reflect.getPrototypeOf.js");
25428
- var $apply = __nested_webpack_require_196652_196671__("../../node_modules/.pnpm/call-bind-apply-helpers@1.0.2/node_modules/call-bind-apply-helpers/functionApply.js");
25429
- var $call = __nested_webpack_require_196652_196671__("../../node_modules/.pnpm/call-bind-apply-helpers@1.0.2/node_modules/call-bind-apply-helpers/functionCall.js");
25531
+ var hasSymbols = __nested_webpack_require_196866_196885__("../../node_modules/.pnpm/has-symbols@1.1.0/node_modules/has-symbols/index.js")();
25532
+ var getProto = __nested_webpack_require_196866_196885__("../../node_modules/.pnpm/get-proto@1.0.1/node_modules/get-proto/index.js");
25533
+ var $ObjectGPO = __nested_webpack_require_196866_196885__("../../node_modules/.pnpm/get-proto@1.0.1/node_modules/get-proto/Object.getPrototypeOf.js");
25534
+ var $ReflectGPO = __nested_webpack_require_196866_196885__("../../node_modules/.pnpm/get-proto@1.0.1/node_modules/get-proto/Reflect.getPrototypeOf.js");
25535
+ var $apply = __nested_webpack_require_196866_196885__("../../node_modules/.pnpm/call-bind-apply-helpers@1.0.2/node_modules/call-bind-apply-helpers/functionApply.js");
25536
+ var $call = __nested_webpack_require_196866_196885__("../../node_modules/.pnpm/call-bind-apply-helpers@1.0.2/node_modules/call-bind-apply-helpers/functionCall.js");
25430
25537
  var needsEval = {};
25431
25538
  var TypedArray = 'undefined' != typeof Uint8Array && getProto ? getProto(Uint8Array) : undefined;
25432
25539
  var INTRINSICS = {
@@ -25749,8 +25856,8 @@ and limitations under the License.
25749
25856
  'prototype'
25750
25857
  ]
25751
25858
  };
25752
- var bind = __nested_webpack_require_196652_196671__("../../node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js");
25753
- var hasOwn = __nested_webpack_require_196652_196671__("../../node_modules/.pnpm/hasown@2.0.2/node_modules/hasown/index.js");
25859
+ var bind = __nested_webpack_require_196866_196885__("../../node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js");
25860
+ var hasOwn = __nested_webpack_require_196866_196885__("../../node_modules/.pnpm/hasown@2.0.2/node_modules/hasown/index.js");
25754
25861
  var $concat = bind.call($call, Array.prototype.concat);
25755
25862
  var $spliceApply = bind.call($apply, Array.prototype.splice);
25756
25863
  var $replace = bind.call($call, String.prototype.replace);
@@ -25834,17 +25941,17 @@ and limitations under the License.
25834
25941
  return value;
25835
25942
  };
25836
25943
  },
25837
- "../../node_modules/.pnpm/get-proto@1.0.1/node_modules/get-proto/Object.getPrototypeOf.js": function(module1, __unused_webpack_exports, __nested_webpack_require_217480_217499__) {
25838
- var $Object = __nested_webpack_require_217480_217499__("../../node_modules/.pnpm/es-object-atoms@1.1.1/node_modules/es-object-atoms/index.js");
25944
+ "../../node_modules/.pnpm/get-proto@1.0.1/node_modules/get-proto/Object.getPrototypeOf.js": function(module1, __unused_webpack_exports, __nested_webpack_require_217694_217713__) {
25945
+ var $Object = __nested_webpack_require_217694_217713__("../../node_modules/.pnpm/es-object-atoms@1.1.1/node_modules/es-object-atoms/index.js");
25839
25946
  module1.exports = $Object.getPrototypeOf || null;
25840
25947
  },
25841
25948
  "../../node_modules/.pnpm/get-proto@1.0.1/node_modules/get-proto/Reflect.getPrototypeOf.js": function(module1) {
25842
25949
  module1.exports = 'undefined' != typeof Reflect && Reflect.getPrototypeOf || null;
25843
25950
  },
25844
- "../../node_modules/.pnpm/get-proto@1.0.1/node_modules/get-proto/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_218034_218053__) {
25845
- var reflectGetProto = __nested_webpack_require_218034_218053__("../../node_modules/.pnpm/get-proto@1.0.1/node_modules/get-proto/Reflect.getPrototypeOf.js");
25846
- var originalGetProto = __nested_webpack_require_218034_218053__("../../node_modules/.pnpm/get-proto@1.0.1/node_modules/get-proto/Object.getPrototypeOf.js");
25847
- var getDunderProto = __nested_webpack_require_218034_218053__("../../node_modules/.pnpm/dunder-proto@1.0.1/node_modules/dunder-proto/get.js");
25951
+ "../../node_modules/.pnpm/get-proto@1.0.1/node_modules/get-proto/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_218248_218267__) {
25952
+ var reflectGetProto = __nested_webpack_require_218248_218267__("../../node_modules/.pnpm/get-proto@1.0.1/node_modules/get-proto/Reflect.getPrototypeOf.js");
25953
+ var originalGetProto = __nested_webpack_require_218248_218267__("../../node_modules/.pnpm/get-proto@1.0.1/node_modules/get-proto/Object.getPrototypeOf.js");
25954
+ var getDunderProto = __nested_webpack_require_218248_218267__("../../node_modules/.pnpm/dunder-proto@1.0.1/node_modules/dunder-proto/get.js");
25848
25955
  module1.exports = reflectGetProto ? function(O) {
25849
25956
  return reflectGetProto(O);
25850
25957
  } : originalGetProto ? function(O) {
@@ -25857,8 +25964,8 @@ and limitations under the License.
25857
25964
  "../../node_modules/.pnpm/gopd@1.2.0/node_modules/gopd/gOPD.js": function(module1) {
25858
25965
  module1.exports = Object.getOwnPropertyDescriptor;
25859
25966
  },
25860
- "../../node_modules/.pnpm/gopd@1.2.0/node_modules/gopd/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_219146_219165__) {
25861
- var $gOPD = __nested_webpack_require_219146_219165__("../../node_modules/.pnpm/gopd@1.2.0/node_modules/gopd/gOPD.js");
25967
+ "../../node_modules/.pnpm/gopd@1.2.0/node_modules/gopd/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_219360_219379__) {
25968
+ var $gOPD = __nested_webpack_require_219360_219379__("../../node_modules/.pnpm/gopd@1.2.0/node_modules/gopd/gOPD.js");
25862
25969
  if ($gOPD) try {
25863
25970
  $gOPD([], 'length');
25864
25971
  } catch (e) {
@@ -25866,8 +25973,8 @@ and limitations under the License.
25866
25973
  }
25867
25974
  module1.exports = $gOPD;
25868
25975
  },
25869
- "../../node_modules/.pnpm/has-property-descriptors@1.0.2/node_modules/has-property-descriptors/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_219583_219602__) {
25870
- var $defineProperty = __nested_webpack_require_219583_219602__("../../node_modules/.pnpm/es-define-property@1.0.1/node_modules/es-define-property/index.js");
25976
+ "../../node_modules/.pnpm/has-property-descriptors@1.0.2/node_modules/has-property-descriptors/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_219797_219816__) {
25977
+ var $defineProperty = __nested_webpack_require_219797_219816__("../../node_modules/.pnpm/es-define-property@1.0.1/node_modules/es-define-property/index.js");
25871
25978
  var hasPropertyDescriptors = function() {
25872
25979
  return !!$defineProperty;
25873
25980
  };
@@ -25883,9 +25990,9 @@ and limitations under the License.
25883
25990
  };
25884
25991
  module1.exports = hasPropertyDescriptors;
25885
25992
  },
25886
- "../../node_modules/.pnpm/has-symbols@1.1.0/node_modules/has-symbols/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_220365_220384__) {
25993
+ "../../node_modules/.pnpm/has-symbols@1.1.0/node_modules/has-symbols/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_220579_220598__) {
25887
25994
  var origSymbol = 'undefined' != typeof Symbol && Symbol;
25888
- var hasSymbolSham = __nested_webpack_require_220365_220384__("../../node_modules/.pnpm/has-symbols@1.1.0/node_modules/has-symbols/shams.js");
25995
+ var hasSymbolSham = __nested_webpack_require_220579_220598__("../../node_modules/.pnpm/has-symbols@1.1.0/node_modules/has-symbols/shams.js");
25889
25996
  module1.exports = function() {
25890
25997
  if ('function' != typeof origSymbol) return false;
25891
25998
  if ('function' != typeof Symbol) return false;
@@ -25919,16 +26026,16 @@ and limitations under the License.
25919
26026
  return true;
25920
26027
  };
25921
26028
  },
25922
- "../../node_modules/.pnpm/has-tostringtag@1.0.2/node_modules/has-tostringtag/shams.js": function(module1, __unused_webpack_exports, __nested_webpack_require_222558_222577__) {
25923
- var hasSymbols = __nested_webpack_require_222558_222577__("../../node_modules/.pnpm/has-symbols@1.1.0/node_modules/has-symbols/shams.js");
26029
+ "../../node_modules/.pnpm/has-tostringtag@1.0.2/node_modules/has-tostringtag/shams.js": function(module1, __unused_webpack_exports, __nested_webpack_require_222772_222791__) {
26030
+ var hasSymbols = __nested_webpack_require_222772_222791__("../../node_modules/.pnpm/has-symbols@1.1.0/node_modules/has-symbols/shams.js");
25924
26031
  module1.exports = function() {
25925
26032
  return hasSymbols() && !!Symbol.toStringTag;
25926
26033
  };
25927
26034
  },
25928
- "../../node_modules/.pnpm/hasown@2.0.2/node_modules/hasown/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_222937_222956__) {
26035
+ "../../node_modules/.pnpm/hasown@2.0.2/node_modules/hasown/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_223151_223170__) {
25929
26036
  var call = Function.prototype.call;
25930
26037
  var $hasOwn = Object.prototype.hasOwnProperty;
25931
- var bind = __nested_webpack_require_222937_222956__("../../node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js");
26038
+ var bind = __nested_webpack_require_223151_223170__("../../node_modules/.pnpm/function-bind@1.1.2/node_modules/function-bind/index.js");
25932
26039
  module1.exports = bind.call(call, $hasOwn);
25933
26040
  },
25934
26041
  "../../node_modules/.pnpm/ieee754@1.2.1/node_modules/ieee754/index.js": function(__unused_webpack_module, exports1) {
@@ -26025,9 +26132,9 @@ and limitations under the License.
26025
26132
  }
26026
26133
  };
26027
26134
  },
26028
- "../../node_modules/.pnpm/is-arguments@1.2.0/node_modules/is-arguments/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_227298_227317__) {
26029
- var hasToStringTag = __nested_webpack_require_227298_227317__("../../node_modules/.pnpm/has-tostringtag@1.0.2/node_modules/has-tostringtag/shams.js")();
26030
- var callBound = __nested_webpack_require_227298_227317__("../../node_modules/.pnpm/call-bound@1.0.4/node_modules/call-bound/index.js");
26135
+ "../../node_modules/.pnpm/is-arguments@1.2.0/node_modules/is-arguments/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_227512_227531__) {
26136
+ var hasToStringTag = __nested_webpack_require_227512_227531__("../../node_modules/.pnpm/has-tostringtag@1.0.2/node_modules/has-tostringtag/shams.js")();
26137
+ var callBound = __nested_webpack_require_227512_227531__("../../node_modules/.pnpm/call-bound@1.0.4/node_modules/call-bound/index.js");
26031
26138
  var $toString = callBound('Object.prototype.toString');
26032
26139
  var isStandardArguments = function(value) {
26033
26140
  if (hasToStringTag && value && 'object' == typeof value && Symbol.toStringTag in value) return false;
@@ -26125,21 +26232,15 @@ and limitations under the License.
26125
26232
  return tryFunctionObject(value);
26126
26233
  };
26127
26234
  },
26128
- "../../node_modules/.pnpm/is-generator-function@1.1.0/node_modules/is-generator-function/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_232186_232205__) {
26129
- var callBound = __nested_webpack_require_232186_232205__("../../node_modules/.pnpm/call-bound@1.0.4/node_modules/call-bound/index.js");
26130
- var safeRegexTest = __nested_webpack_require_232186_232205__("../../node_modules/.pnpm/safe-regex-test@1.1.0/node_modules/safe-regex-test/index.js");
26235
+ "../../node_modules/.pnpm/is-generator-function@1.1.2/node_modules/is-generator-function/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_232400_232419__) {
26236
+ var callBound = __nested_webpack_require_232400_232419__("../../node_modules/.pnpm/call-bound@1.0.4/node_modules/call-bound/index.js");
26237
+ var safeRegexTest = __nested_webpack_require_232400_232419__("../../node_modules/.pnpm/safe-regex-test@1.1.0/node_modules/safe-regex-test/index.js");
26131
26238
  var isFnRegex = safeRegexTest(/^\s*(?:function)?\*/);
26132
- var hasToStringTag = __nested_webpack_require_232186_232205__("../../node_modules/.pnpm/has-tostringtag@1.0.2/node_modules/has-tostringtag/shams.js")();
26133
- var getProto = __nested_webpack_require_232186_232205__("../../node_modules/.pnpm/get-proto@1.0.1/node_modules/get-proto/index.js");
26239
+ var hasToStringTag = __nested_webpack_require_232400_232419__("../../node_modules/.pnpm/has-tostringtag@1.0.2/node_modules/has-tostringtag/shams.js")();
26240
+ var getProto = __nested_webpack_require_232400_232419__("../../node_modules/.pnpm/get-proto@1.0.1/node_modules/get-proto/index.js");
26134
26241
  var toStr = callBound('Object.prototype.toString');
26135
26242
  var fnToStr = callBound('Function.prototype.toString');
26136
- var getGeneratorFunc = function() {
26137
- if (!hasToStringTag) return false;
26138
- try {
26139
- return Function('return function*() {}')();
26140
- } catch (e) {}
26141
- };
26142
- var GeneratorFunction;
26243
+ var getGeneratorFunction = __nested_webpack_require_232400_232419__("../../node_modules/.pnpm/generator-function@2.0.1/node_modules/generator-function/index.js");
26143
26244
  module1.exports = function(fn) {
26144
26245
  if ('function' != typeof fn) return false;
26145
26246
  if (isFnRegex(fnToStr(fn))) return true;
@@ -26148,11 +26249,8 @@ and limitations under the License.
26148
26249
  return '[object GeneratorFunction]' === str;
26149
26250
  }
26150
26251
  if (!getProto) return false;
26151
- if (void 0 === GeneratorFunction) {
26152
- var generatorFunc = getGeneratorFunc();
26153
- GeneratorFunction = generatorFunc ? getProto(generatorFunc) : false;
26154
- }
26155
- return getProto(fn) === GeneratorFunction;
26252
+ var GeneratorFunction = getGeneratorFunction();
26253
+ return GeneratorFunction && getProto(fn) === GeneratorFunction.prototype;
26156
26254
  };
26157
26255
  },
26158
26256
  "../../node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/implementation.js": function(module1) {
@@ -26160,12 +26258,12 @@ and limitations under the License.
26160
26258
  return value !== value;
26161
26259
  };
26162
26260
  },
26163
- "../../node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_234081_234100__) {
26164
- var callBind = __nested_webpack_require_234081_234100__("../../node_modules/.pnpm/call-bind@1.0.8/node_modules/call-bind/index.js");
26165
- var define1 = __nested_webpack_require_234081_234100__("../../node_modules/.pnpm/define-properties@1.2.1/node_modules/define-properties/index.js");
26166
- var implementation = __nested_webpack_require_234081_234100__("../../node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/implementation.js");
26167
- var getPolyfill = __nested_webpack_require_234081_234100__("../../node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/polyfill.js");
26168
- var shim = __nested_webpack_require_234081_234100__("../../node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/shim.js");
26261
+ "../../node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_234095_234114__) {
26262
+ var callBind = __nested_webpack_require_234095_234114__("../../node_modules/.pnpm/call-bind@1.0.8/node_modules/call-bind/index.js");
26263
+ var define1 = __nested_webpack_require_234095_234114__("../../node_modules/.pnpm/define-properties@1.2.1/node_modules/define-properties/index.js");
26264
+ var implementation = __nested_webpack_require_234095_234114__("../../node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/implementation.js");
26265
+ var getPolyfill = __nested_webpack_require_234095_234114__("../../node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/polyfill.js");
26266
+ var shim = __nested_webpack_require_234095_234114__("../../node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/shim.js");
26169
26267
  var polyfill = callBind(getPolyfill(), Number);
26170
26268
  define1(polyfill, {
26171
26269
  getPolyfill: getPolyfill,
@@ -26174,16 +26272,16 @@ and limitations under the License.
26174
26272
  });
26175
26273
  module1.exports = polyfill;
26176
26274
  },
26177
- "../../node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/polyfill.js": function(module1, __unused_webpack_exports, __nested_webpack_require_235078_235097__) {
26178
- var implementation = __nested_webpack_require_235078_235097__("../../node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/implementation.js");
26275
+ "../../node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/polyfill.js": function(module1, __unused_webpack_exports, __nested_webpack_require_235092_235111__) {
26276
+ var implementation = __nested_webpack_require_235092_235111__("../../node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/implementation.js");
26179
26277
  module1.exports = function() {
26180
26278
  if (Number.isNaN && Number.isNaN(NaN) && !Number.isNaN('a')) return Number.isNaN;
26181
26279
  return implementation;
26182
26280
  };
26183
26281
  },
26184
- "../../node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/shim.js": function(module1, __unused_webpack_exports, __nested_webpack_require_235531_235550__) {
26185
- var define1 = __nested_webpack_require_235531_235550__("../../node_modules/.pnpm/define-properties@1.2.1/node_modules/define-properties/index.js");
26186
- var getPolyfill = __nested_webpack_require_235531_235550__("../../node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/polyfill.js");
26282
+ "../../node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/shim.js": function(module1, __unused_webpack_exports, __nested_webpack_require_235545_235564__) {
26283
+ var define1 = __nested_webpack_require_235545_235564__("../../node_modules/.pnpm/define-properties@1.2.1/node_modules/define-properties/index.js");
26284
+ var getPolyfill = __nested_webpack_require_235545_235564__("../../node_modules/.pnpm/is-nan@1.3.2/node_modules/is-nan/polyfill.js");
26187
26285
  module1.exports = function() {
26188
26286
  var polyfill = getPolyfill();
26189
26287
  define1(Number, {
@@ -26196,11 +26294,11 @@ and limitations under the License.
26196
26294
  return polyfill;
26197
26295
  };
26198
26296
  },
26199
- "../../node_modules/.pnpm/is-regex@1.2.1/node_modules/is-regex/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_236258_236277__) {
26200
- var callBound = __nested_webpack_require_236258_236277__("../../node_modules/.pnpm/call-bound@1.0.4/node_modules/call-bound/index.js");
26201
- var hasToStringTag = __nested_webpack_require_236258_236277__("../../node_modules/.pnpm/has-tostringtag@1.0.2/node_modules/has-tostringtag/shams.js")();
26202
- var hasOwn = __nested_webpack_require_236258_236277__("../../node_modules/.pnpm/hasown@2.0.2/node_modules/hasown/index.js");
26203
- var gOPD = __nested_webpack_require_236258_236277__("../../node_modules/.pnpm/gopd@1.2.0/node_modules/gopd/index.js");
26297
+ "../../node_modules/.pnpm/is-regex@1.2.1/node_modules/is-regex/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_236272_236291__) {
26298
+ var callBound = __nested_webpack_require_236272_236291__("../../node_modules/.pnpm/call-bound@1.0.4/node_modules/call-bound/index.js");
26299
+ var hasToStringTag = __nested_webpack_require_236272_236291__("../../node_modules/.pnpm/has-tostringtag@1.0.2/node_modules/has-tostringtag/shams.js")();
26300
+ var hasOwn = __nested_webpack_require_236272_236291__("../../node_modules/.pnpm/hasown@2.0.2/node_modules/hasown/index.js");
26301
+ var gOPD = __nested_webpack_require_236272_236291__("../../node_modules/.pnpm/gopd@1.2.0/node_modules/gopd/index.js");
26204
26302
  var fn;
26205
26303
  if (hasToStringTag) {
26206
26304
  var $exec = callBound('RegExp.prototype.exec');
@@ -26234,8 +26332,8 @@ and limitations under the License.
26234
26332
  }
26235
26333
  module1.exports = fn;
26236
26334
  },
26237
- "../../node_modules/.pnpm/is-typed-array@1.1.15/node_modules/is-typed-array/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_238267_238286__) {
26238
- var whichTypedArray = __nested_webpack_require_238267_238286__("../../node_modules/.pnpm/which-typed-array@1.1.19/node_modules/which-typed-array/index.js");
26335
+ "../../node_modules/.pnpm/is-typed-array@1.1.15/node_modules/is-typed-array/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_238281_238300__) {
26336
+ var whichTypedArray = __nested_webpack_require_238281_238300__("../../node_modules/.pnpm/which-typed-array@1.1.19/node_modules/which-typed-array/index.js");
26239
26337
  module1.exports = function(value) {
26240
26338
  return !!whichTypedArray(value);
26241
26339
  };
@@ -26263,8 +26361,8 @@ and limitations under the License.
26263
26361
  "../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/round.js": function(module1) {
26264
26362
  module1.exports = Math.round;
26265
26363
  },
26266
- "../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/sign.js": function(module1, __unused_webpack_exports, __nested_webpack_require_239800_239819__) {
26267
- var $isNaN = __nested_webpack_require_239800_239819__("../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/isNaN.js");
26364
+ "../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/sign.js": function(module1, __unused_webpack_exports, __nested_webpack_require_239814_239833__) {
26365
+ var $isNaN = __nested_webpack_require_239814_239833__("../../node_modules/.pnpm/math-intrinsics@1.1.0/node_modules/math-intrinsics/isNaN.js");
26268
26366
  module1.exports = function(number) {
26269
26367
  if ($isNaN(number) || 0 === number) return number;
26270
26368
  return number < 0 ? -1 : 1;
@@ -26281,12 +26379,12 @@ and limitations under the License.
26281
26379
  return false;
26282
26380
  };
26283
26381
  },
26284
- "../../node_modules/.pnpm/object-is@1.1.6/node_modules/object-is/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_240687_240706__) {
26285
- var define1 = __nested_webpack_require_240687_240706__("../../node_modules/.pnpm/define-properties@1.2.1/node_modules/define-properties/index.js");
26286
- var callBind = __nested_webpack_require_240687_240706__("../../node_modules/.pnpm/call-bind@1.0.8/node_modules/call-bind/index.js");
26287
- var implementation = __nested_webpack_require_240687_240706__("../../node_modules/.pnpm/object-is@1.1.6/node_modules/object-is/implementation.js");
26288
- var getPolyfill = __nested_webpack_require_240687_240706__("../../node_modules/.pnpm/object-is@1.1.6/node_modules/object-is/polyfill.js");
26289
- var shim = __nested_webpack_require_240687_240706__("../../node_modules/.pnpm/object-is@1.1.6/node_modules/object-is/shim.js");
26382
+ "../../node_modules/.pnpm/object-is@1.1.6/node_modules/object-is/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_240701_240720__) {
26383
+ var define1 = __nested_webpack_require_240701_240720__("../../node_modules/.pnpm/define-properties@1.2.1/node_modules/define-properties/index.js");
26384
+ var callBind = __nested_webpack_require_240701_240720__("../../node_modules/.pnpm/call-bind@1.0.8/node_modules/call-bind/index.js");
26385
+ var implementation = __nested_webpack_require_240701_240720__("../../node_modules/.pnpm/object-is@1.1.6/node_modules/object-is/implementation.js");
26386
+ var getPolyfill = __nested_webpack_require_240701_240720__("../../node_modules/.pnpm/object-is@1.1.6/node_modules/object-is/polyfill.js");
26387
+ var shim = __nested_webpack_require_240701_240720__("../../node_modules/.pnpm/object-is@1.1.6/node_modules/object-is/shim.js");
26290
26388
  var polyfill = callBind(getPolyfill(), Object);
26291
26389
  define1(polyfill, {
26292
26390
  getPolyfill: getPolyfill,
@@ -26295,15 +26393,15 @@ and limitations under the License.
26295
26393
  });
26296
26394
  module1.exports = polyfill;
26297
26395
  },
26298
- "../../node_modules/.pnpm/object-is@1.1.6/node_modules/object-is/polyfill.js": function(module1, __unused_webpack_exports, __nested_webpack_require_241708_241727__) {
26299
- var implementation = __nested_webpack_require_241708_241727__("../../node_modules/.pnpm/object-is@1.1.6/node_modules/object-is/implementation.js");
26396
+ "../../node_modules/.pnpm/object-is@1.1.6/node_modules/object-is/polyfill.js": function(module1, __unused_webpack_exports, __nested_webpack_require_241722_241741__) {
26397
+ var implementation = __nested_webpack_require_241722_241741__("../../node_modules/.pnpm/object-is@1.1.6/node_modules/object-is/implementation.js");
26300
26398
  module1.exports = function() {
26301
26399
  return 'function' == typeof Object.is ? Object.is : implementation;
26302
26400
  };
26303
26401
  },
26304
- "../../node_modules/.pnpm/object-is@1.1.6/node_modules/object-is/shim.js": function(module1, __unused_webpack_exports, __nested_webpack_require_242124_242143__) {
26305
- var getPolyfill = __nested_webpack_require_242124_242143__("../../node_modules/.pnpm/object-is@1.1.6/node_modules/object-is/polyfill.js");
26306
- var define1 = __nested_webpack_require_242124_242143__("../../node_modules/.pnpm/define-properties@1.2.1/node_modules/define-properties/index.js");
26402
+ "../../node_modules/.pnpm/object-is@1.1.6/node_modules/object-is/shim.js": function(module1, __unused_webpack_exports, __nested_webpack_require_242138_242157__) {
26403
+ var getPolyfill = __nested_webpack_require_242138_242157__("../../node_modules/.pnpm/object-is@1.1.6/node_modules/object-is/polyfill.js");
26404
+ var define1 = __nested_webpack_require_242138_242157__("../../node_modules/.pnpm/define-properties@1.2.1/node_modules/define-properties/index.js");
26307
26405
  module1.exports = function() {
26308
26406
  var polyfill = getPolyfill();
26309
26407
  define1(Object, {
@@ -26316,12 +26414,12 @@ and limitations under the License.
26316
26414
  return polyfill;
26317
26415
  };
26318
26416
  },
26319
- "../../node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/implementation.js": function(module1, __unused_webpack_exports, __nested_webpack_require_242863_242882__) {
26417
+ "../../node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/implementation.js": function(module1, __unused_webpack_exports, __nested_webpack_require_242877_242896__) {
26320
26418
  var keysShim;
26321
26419
  if (!Object.keys) {
26322
26420
  var has = Object.prototype.hasOwnProperty;
26323
26421
  var toStr = Object.prototype.toString;
26324
- var isArgs = __nested_webpack_require_242863_242882__("../../node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/isArguments.js");
26422
+ var isArgs = __nested_webpack_require_242877_242896__("../../node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/isArguments.js");
26325
26423
  var isEnumerable = Object.prototype.propertyIsEnumerable;
26326
26424
  var hasDontEnumBug = !isEnumerable.call({
26327
26425
  toString: null
@@ -26406,13 +26504,13 @@ and limitations under the License.
26406
26504
  }
26407
26505
  module1.exports = keysShim;
26408
26506
  },
26409
- "../../node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_247175_247194__) {
26507
+ "../../node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_247189_247208__) {
26410
26508
  var slice = Array.prototype.slice;
26411
- var isArgs = __nested_webpack_require_247175_247194__("../../node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/isArguments.js");
26509
+ var isArgs = __nested_webpack_require_247189_247208__("../../node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/isArguments.js");
26412
26510
  var origKeys = Object.keys;
26413
26511
  var keysShim = origKeys ? function(o) {
26414
26512
  return origKeys(o);
26415
- } : __nested_webpack_require_247175_247194__("../../node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/implementation.js");
26513
+ } : __nested_webpack_require_247189_247208__("../../node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/implementation.js");
26416
26514
  var originalKeys = Object.keys;
26417
26515
  keysShim.shim = function() {
26418
26516
  if (Object.keys) {
@@ -26438,11 +26536,11 @@ and limitations under the License.
26438
26536
  return isArgs;
26439
26537
  };
26440
26538
  },
26441
- "../../node_modules/.pnpm/object.assign@4.1.7/node_modules/object.assign/implementation.js": function(module1, __unused_webpack_exports, __nested_webpack_require_248983_249002__) {
26442
- var objectKeys = __nested_webpack_require_248983_249002__("../../node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/index.js");
26443
- var hasSymbols = __nested_webpack_require_248983_249002__("../../node_modules/.pnpm/has-symbols@1.1.0/node_modules/has-symbols/shams.js")();
26444
- var callBound = __nested_webpack_require_248983_249002__("../../node_modules/.pnpm/call-bound@1.0.4/node_modules/call-bound/index.js");
26445
- var $Object = __nested_webpack_require_248983_249002__("../../node_modules/.pnpm/es-object-atoms@1.1.1/node_modules/es-object-atoms/index.js");
26539
+ "../../node_modules/.pnpm/object.assign@4.1.7/node_modules/object.assign/implementation.js": function(module1, __unused_webpack_exports, __nested_webpack_require_248997_249016__) {
26540
+ var objectKeys = __nested_webpack_require_248997_249016__("../../node_modules/.pnpm/object-keys@1.1.1/node_modules/object-keys/index.js");
26541
+ var hasSymbols = __nested_webpack_require_248997_249016__("../../node_modules/.pnpm/has-symbols@1.1.0/node_modules/has-symbols/shams.js")();
26542
+ var callBound = __nested_webpack_require_248997_249016__("../../node_modules/.pnpm/call-bound@1.0.4/node_modules/call-bound/index.js");
26543
+ var $Object = __nested_webpack_require_248997_249016__("../../node_modules/.pnpm/es-object-atoms@1.1.1/node_modules/es-object-atoms/index.js");
26446
26544
  var $push = callBound('Array.prototype.push');
26447
26545
  var $propIsEnumerable = callBound('Object.prototype.propertyIsEnumerable');
26448
26546
  var originalGetSymbols = hasSymbols ? $Object.getOwnPropertySymbols : null;
@@ -26472,8 +26570,8 @@ and limitations under the License.
26472
26570
  return to;
26473
26571
  };
26474
26572
  },
26475
- "../../node_modules/.pnpm/object.assign@4.1.7/node_modules/object.assign/polyfill.js": function(module1, __unused_webpack_exports, __nested_webpack_require_251002_251021__) {
26476
- var implementation = __nested_webpack_require_251002_251021__("../../node_modules/.pnpm/object.assign@4.1.7/node_modules/object.assign/implementation.js");
26573
+ "../../node_modules/.pnpm/object.assign@4.1.7/node_modules/object.assign/polyfill.js": function(module1, __unused_webpack_exports, __nested_webpack_require_251016_251035__) {
26574
+ var implementation = __nested_webpack_require_251016_251035__("../../node_modules/.pnpm/object.assign@4.1.7/node_modules/object.assign/implementation.js");
26477
26575
  var lacksProperEnumerationOrder = function() {
26478
26576
  if (!Object.assign) return false;
26479
26577
  var str = 'abcdefghijklmnopqrst';
@@ -26634,12 +26732,12 @@ and limitations under the License.
26634
26732
  }
26635
26733
  module1.exports = crc32;
26636
26734
  },
26637
- "../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/zlib/deflate.js": function(__unused_webpack_module, exports1, __nested_webpack_require_257386_257405__) {
26638
- var utils = __nested_webpack_require_257386_257405__("../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/utils/common.js");
26639
- var trees = __nested_webpack_require_257386_257405__("../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/zlib/trees.js");
26640
- var adler32 = __nested_webpack_require_257386_257405__("../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/zlib/adler32.js");
26641
- var crc32 = __nested_webpack_require_257386_257405__("../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/zlib/crc32.js");
26642
- var msg = __nested_webpack_require_257386_257405__("../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/zlib/messages.js");
26735
+ "../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/zlib/deflate.js": function(__unused_webpack_module, exports1, __nested_webpack_require_257400_257419__) {
26736
+ var utils = __nested_webpack_require_257400_257419__("../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/utils/common.js");
26737
+ var trees = __nested_webpack_require_257400_257419__("../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/zlib/trees.js");
26738
+ var adler32 = __nested_webpack_require_257400_257419__("../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/zlib/adler32.js");
26739
+ var crc32 = __nested_webpack_require_257400_257419__("../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/zlib/crc32.js");
26740
+ var msg = __nested_webpack_require_257400_257419__("../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/zlib/messages.js");
26643
26741
  var Z_NO_FLUSH = 0;
26644
26742
  var Z_PARTIAL_FLUSH = 1;
26645
26743
  var Z_FULL_FLUSH = 3;
@@ -27680,12 +27778,12 @@ and limitations under the License.
27680
27778
  state.bits = bits;
27681
27779
  };
27682
27780
  },
27683
- "../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/zlib/inflate.js": function(__unused_webpack_module, exports1, __nested_webpack_require_304806_304825__) {
27684
- var utils = __nested_webpack_require_304806_304825__("../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/utils/common.js");
27685
- var adler32 = __nested_webpack_require_304806_304825__("../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/zlib/adler32.js");
27686
- var crc32 = __nested_webpack_require_304806_304825__("../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/zlib/crc32.js");
27687
- var inflate_fast = __nested_webpack_require_304806_304825__("../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/zlib/inffast.js");
27688
- var inflate_table = __nested_webpack_require_304806_304825__("../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/zlib/inftrees.js");
27781
+ "../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/zlib/inflate.js": function(__unused_webpack_module, exports1, __nested_webpack_require_304820_304839__) {
27782
+ var utils = __nested_webpack_require_304820_304839__("../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/utils/common.js");
27783
+ var adler32 = __nested_webpack_require_304820_304839__("../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/zlib/adler32.js");
27784
+ var crc32 = __nested_webpack_require_304820_304839__("../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/zlib/crc32.js");
27785
+ var inflate_fast = __nested_webpack_require_304820_304839__("../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/zlib/inffast.js");
27786
+ var inflate_table = __nested_webpack_require_304820_304839__("../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/zlib/inftrees.js");
27689
27787
  var CODES = 0;
27690
27788
  var LENS = 1;
27691
27789
  var DISTS = 2;
@@ -28716,8 +28814,8 @@ and limitations under the License.
28716
28814
  exports1.inflateSetDictionary = inflateSetDictionary;
28717
28815
  exports1.inflateInfo = 'pako inflate (from Nodeca project)';
28718
28816
  },
28719
- "../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/zlib/inftrees.js": function(module1, __unused_webpack_exports, __nested_webpack_require_348013_348032__) {
28720
- var utils = __nested_webpack_require_348013_348032__("../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/utils/common.js");
28817
+ "../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/zlib/inftrees.js": function(module1, __unused_webpack_exports, __nested_webpack_require_348027_348046__) {
28818
+ var utils = __nested_webpack_require_348027_348046__("../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/utils/common.js");
28721
28819
  var MAXBITS = 15;
28722
28820
  var ENOUGH_LENS = 852;
28723
28821
  var ENOUGH_DISTS = 592;
@@ -28994,8 +29092,8 @@ and limitations under the License.
28994
29092
  '-6': 'incompatible version'
28995
29093
  };
28996
29094
  },
28997
- "../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/zlib/trees.js": function(__unused_webpack_module, exports1, __nested_webpack_require_355688_355707__) {
28998
- var utils = __nested_webpack_require_355688_355707__("../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/utils/common.js");
29095
+ "../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/zlib/trees.js": function(__unused_webpack_module, exports1, __nested_webpack_require_355702_355721__) {
29096
+ var utils = __nested_webpack_require_355702_355721__("../../node_modules/.pnpm/pako@1.0.11/node_modules/pako/lib/utils/common.js");
28999
29097
  var Z_FIXED = 4;
29000
29098
  var Z_BINARY = 0;
29001
29099
  var Z_TEXT = 1;
@@ -29848,17 +29946,17 @@ and limitations under the License.
29848
29946
  createErrorType('ERR_STREAM_UNSHIFT_AFTER_END_EVENT', 'stream.unshift() after end event');
29849
29947
  module1.exports.codes = codes;
29850
29948
  },
29851
- "../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_duplex.js": function(module1, __unused_webpack_exports, __nested_webpack_require_387737_387756__) {
29852
- var process = __nested_webpack_require_387737_387756__("../../node_modules/.pnpm/process@0.11.10/node_modules/process/browser.js");
29949
+ "../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_duplex.js": function(module1, __unused_webpack_exports, __nested_webpack_require_387751_387770__) {
29950
+ var process = __nested_webpack_require_387751_387770__("../../node_modules/.pnpm/process@0.11.10/node_modules/process/browser.js");
29853
29951
  var objectKeys = Object.keys || function(obj) {
29854
29952
  var keys = [];
29855
29953
  for(var key in obj)keys.push(key);
29856
29954
  return keys;
29857
29955
  };
29858
29956
  module1.exports = Duplex;
29859
- var Readable = __nested_webpack_require_387737_387756__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_readable.js");
29860
- var Writable = __nested_webpack_require_387737_387756__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_writable.js");
29861
- __nested_webpack_require_387737_387756__("../../node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js")(Duplex, Readable);
29957
+ var Readable = __nested_webpack_require_387751_387770__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_readable.js");
29958
+ var Writable = __nested_webpack_require_387751_387770__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_writable.js");
29959
+ __nested_webpack_require_387751_387770__("../../node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js")(Duplex, Readable);
29862
29960
  var keys = objectKeys(Writable.prototype);
29863
29961
  for(var v = 0; v < keys.length; v++){
29864
29962
  var method = keys[v];
@@ -29916,10 +30014,10 @@ and limitations under the License.
29916
30014
  }
29917
30015
  });
29918
30016
  },
29919
- "../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_passthrough.js": function(module1, __unused_webpack_exports, __nested_webpack_require_390944_390963__) {
30017
+ "../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_passthrough.js": function(module1, __unused_webpack_exports, __nested_webpack_require_390958_390977__) {
29920
30018
  module1.exports = PassThrough;
29921
- var Transform = __nested_webpack_require_390944_390963__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_transform.js");
29922
- __nested_webpack_require_390944_390963__("../../node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js")(PassThrough, Transform);
30019
+ var Transform = __nested_webpack_require_390958_390977__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_transform.js");
30020
+ __nested_webpack_require_390958_390977__("../../node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js")(PassThrough, Transform);
29923
30021
  function PassThrough(options) {
29924
30022
  if (!(this instanceof PassThrough)) return new PassThrough(options);
29925
30023
  Transform.call(this, options);
@@ -29928,35 +30026,35 @@ and limitations under the License.
29928
30026
  cb(null, chunk);
29929
30027
  };
29930
30028
  },
29931
- "../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_readable.js": function(module1, __unused_webpack_exports, __nested_webpack_require_391738_391757__) {
29932
- var process = __nested_webpack_require_391738_391757__("../../node_modules/.pnpm/process@0.11.10/node_modules/process/browser.js");
30029
+ "../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_readable.js": function(module1, __unused_webpack_exports, __nested_webpack_require_391752_391771__) {
30030
+ var process = __nested_webpack_require_391752_391771__("../../node_modules/.pnpm/process@0.11.10/node_modules/process/browser.js");
29933
30031
  module1.exports = Readable;
29934
30032
  var Duplex;
29935
30033
  Readable.ReadableState = ReadableState;
29936
- __nested_webpack_require_391738_391757__("../../node_modules/.pnpm/events@3.3.0/node_modules/events/events.js").EventEmitter;
30034
+ __nested_webpack_require_391752_391771__("../../node_modules/.pnpm/events@3.3.0/node_modules/events/events.js").EventEmitter;
29937
30035
  var EElistenerCount = function(emitter, type) {
29938
30036
  return emitter.listeners(type).length;
29939
30037
  };
29940
- var Stream = __nested_webpack_require_391738_391757__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/stream-browser.js");
29941
- var Buffer = __nested_webpack_require_391738_391757__("../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.js").Buffer;
29942
- var OurUint8Array = (void 0 !== __nested_webpack_require_391738_391757__.g ? __nested_webpack_require_391738_391757__.g : 'undefined' != typeof window ? window : 'undefined' != typeof self ? self : {}).Uint8Array || function() {};
30038
+ var Stream = __nested_webpack_require_391752_391771__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/stream-browser.js");
30039
+ var Buffer = __nested_webpack_require_391752_391771__("../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.js").Buffer;
30040
+ var OurUint8Array = (void 0 !== __nested_webpack_require_391752_391771__.g ? __nested_webpack_require_391752_391771__.g : 'undefined' != typeof window ? window : 'undefined' != typeof self ? self : {}).Uint8Array || function() {};
29943
30041
  function _uint8ArrayToBuffer(chunk) {
29944
30042
  return Buffer.from(chunk);
29945
30043
  }
29946
30044
  function _isUint8Array(obj) {
29947
30045
  return Buffer.isBuffer(obj) || obj instanceof OurUint8Array;
29948
30046
  }
29949
- var debugUtil = __nested_webpack_require_391738_391757__("?14dd");
30047
+ var debugUtil = __nested_webpack_require_391752_391771__("?14dd");
29950
30048
  var debug;
29951
30049
  debug = debugUtil && debugUtil.debuglog ? debugUtil.debuglog('stream') : function() {};
29952
- var BufferList = __nested_webpack_require_391738_391757__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/buffer_list.js");
29953
- var destroyImpl = __nested_webpack_require_391738_391757__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/destroy.js");
29954
- var _require = __nested_webpack_require_391738_391757__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/state.js"), getHighWaterMark = _require.getHighWaterMark;
29955
- var _require$codes = __nested_webpack_require_391738_391757__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/errors-browser.js").codes, ERR_INVALID_ARG_TYPE = _require$codes.ERR_INVALID_ARG_TYPE, ERR_STREAM_PUSH_AFTER_EOF = _require$codes.ERR_STREAM_PUSH_AFTER_EOF, ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED, ERR_STREAM_UNSHIFT_AFTER_END_EVENT = _require$codes.ERR_STREAM_UNSHIFT_AFTER_END_EVENT;
30050
+ var BufferList = __nested_webpack_require_391752_391771__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/buffer_list.js");
30051
+ var destroyImpl = __nested_webpack_require_391752_391771__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/destroy.js");
30052
+ var _require = __nested_webpack_require_391752_391771__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/state.js"), getHighWaterMark = _require.getHighWaterMark;
30053
+ var _require$codes = __nested_webpack_require_391752_391771__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/errors-browser.js").codes, ERR_INVALID_ARG_TYPE = _require$codes.ERR_INVALID_ARG_TYPE, ERR_STREAM_PUSH_AFTER_EOF = _require$codes.ERR_STREAM_PUSH_AFTER_EOF, ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED, ERR_STREAM_UNSHIFT_AFTER_END_EVENT = _require$codes.ERR_STREAM_UNSHIFT_AFTER_END_EVENT;
29956
30054
  var StringDecoder;
29957
30055
  var createReadableStreamAsyncIterator;
29958
30056
  var from;
29959
- __nested_webpack_require_391738_391757__("../../node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js")(Readable, Stream);
30057
+ __nested_webpack_require_391752_391771__("../../node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js")(Readable, Stream);
29960
30058
  var errorOrDestroy = destroyImpl.errorOrDestroy;
29961
30059
  var kProxyEvents = [
29962
30060
  'error',
@@ -29975,7 +30073,7 @@ and limitations under the License.
29975
30073
  else emitter.on(event, fn);
29976
30074
  }
29977
30075
  function ReadableState(options, stream, isDuplex) {
29978
- Duplex = Duplex || __nested_webpack_require_391738_391757__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_duplex.js");
30076
+ Duplex = Duplex || __nested_webpack_require_391752_391771__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_duplex.js");
29979
30077
  options = options || {};
29980
30078
  if ('boolean' != typeof isDuplex) isDuplex = stream instanceof Duplex;
29981
30079
  this.objectMode = !!options.objectMode;
@@ -30004,13 +30102,13 @@ and limitations under the License.
30004
30102
  this.decoder = null;
30005
30103
  this.encoding = null;
30006
30104
  if (options.encoding) {
30007
- if (!StringDecoder) StringDecoder = __nested_webpack_require_391738_391757__("../../node_modules/.pnpm/string_decoder@1.3.0/node_modules/string_decoder/lib/string_decoder.js").StringDecoder;
30105
+ if (!StringDecoder) StringDecoder = __nested_webpack_require_391752_391771__("../../node_modules/.pnpm/string_decoder@1.3.0/node_modules/string_decoder/lib/string_decoder.js").StringDecoder;
30008
30106
  this.decoder = new StringDecoder(options.encoding);
30009
30107
  this.encoding = options.encoding;
30010
30108
  }
30011
30109
  }
30012
30110
  function Readable(options) {
30013
- Duplex = Duplex || __nested_webpack_require_391738_391757__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_duplex.js");
30111
+ Duplex = Duplex || __nested_webpack_require_391752_391771__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_duplex.js");
30014
30112
  if (!(this instanceof Readable)) return new Readable(options);
30015
30113
  var isDuplex = this instanceof Duplex;
30016
30114
  this._readableState = new ReadableState(options, this, isDuplex);
@@ -30110,7 +30208,7 @@ and limitations under the License.
30110
30208
  return false === this._readableState.flowing;
30111
30209
  };
30112
30210
  Readable.prototype.setEncoding = function(enc) {
30113
- if (!StringDecoder) StringDecoder = __nested_webpack_require_391738_391757__("../../node_modules/.pnpm/string_decoder@1.3.0/node_modules/string_decoder/lib/string_decoder.js").StringDecoder;
30211
+ if (!StringDecoder) StringDecoder = __nested_webpack_require_391752_391771__("../../node_modules/.pnpm/string_decoder@1.3.0/node_modules/string_decoder/lib/string_decoder.js").StringDecoder;
30114
30212
  var decoder = new StringDecoder(enc);
30115
30213
  this._readableState.decoder = decoder;
30116
30214
  this._readableState.encoding = this._readableState.decoder.encoding;
@@ -30518,7 +30616,7 @@ and limitations under the License.
30518
30616
  return this;
30519
30617
  };
30520
30618
  if ('function' == typeof Symbol) Readable.prototype[Symbol.asyncIterator] = function() {
30521
- if (void 0 === createReadableStreamAsyncIterator) createReadableStreamAsyncIterator = __nested_webpack_require_391738_391757__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/async_iterator.js");
30619
+ if (void 0 === createReadableStreamAsyncIterator) createReadableStreamAsyncIterator = __nested_webpack_require_391752_391771__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/async_iterator.js");
30522
30620
  return createReadableStreamAsyncIterator(this);
30523
30621
  };
30524
30622
  Object.defineProperty(Readable.prototype, 'readableHighWaterMark', {
@@ -30580,7 +30678,7 @@ and limitations under the License.
30580
30678
  }
30581
30679
  }
30582
30680
  if ('function' == typeof Symbol) Readable.from = function(iterable, opts) {
30583
- if (void 0 === from) from = __nested_webpack_require_391738_391757__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/from-browser.js");
30681
+ if (void 0 === from) from = __nested_webpack_require_391752_391771__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/from-browser.js");
30584
30682
  return from(Readable, iterable, opts);
30585
30683
  };
30586
30684
  function indexOf(xs, x) {
@@ -30588,11 +30686,11 @@ and limitations under the License.
30588
30686
  return -1;
30589
30687
  }
30590
30688
  },
30591
- "../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_transform.js": function(module1, __unused_webpack_exports, __nested_webpack_require_421870_421889__) {
30689
+ "../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_transform.js": function(module1, __unused_webpack_exports, __nested_webpack_require_421884_421903__) {
30592
30690
  module1.exports = Transform;
30593
- var _require$codes = __nested_webpack_require_421870_421889__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/errors-browser.js").codes, ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED, ERR_MULTIPLE_CALLBACK = _require$codes.ERR_MULTIPLE_CALLBACK, ERR_TRANSFORM_ALREADY_TRANSFORMING = _require$codes.ERR_TRANSFORM_ALREADY_TRANSFORMING, ERR_TRANSFORM_WITH_LENGTH_0 = _require$codes.ERR_TRANSFORM_WITH_LENGTH_0;
30594
- var Duplex = __nested_webpack_require_421870_421889__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_duplex.js");
30595
- __nested_webpack_require_421870_421889__("../../node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js")(Transform, Duplex);
30691
+ var _require$codes = __nested_webpack_require_421884_421903__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/errors-browser.js").codes, ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED, ERR_MULTIPLE_CALLBACK = _require$codes.ERR_MULTIPLE_CALLBACK, ERR_TRANSFORM_ALREADY_TRANSFORMING = _require$codes.ERR_TRANSFORM_ALREADY_TRANSFORMING, ERR_TRANSFORM_WITH_LENGTH_0 = _require$codes.ERR_TRANSFORM_WITH_LENGTH_0;
30692
+ var Duplex = __nested_webpack_require_421884_421903__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_duplex.js");
30693
+ __nested_webpack_require_421884_421903__("../../node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js")(Transform, Duplex);
30596
30694
  function afterTransform(er, data) {
30597
30695
  var ts = this._transformState;
30598
30696
  ts.transforming = false;
@@ -30670,8 +30768,8 @@ and limitations under the License.
30670
30768
  return stream.push(null);
30671
30769
  }
30672
30770
  },
30673
- "../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_writable.js": function(module1, __unused_webpack_exports, __nested_webpack_require_426166_426185__) {
30674
- var process = __nested_webpack_require_426166_426185__("../../node_modules/.pnpm/process@0.11.10/node_modules/process/browser.js");
30771
+ "../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_writable.js": function(module1, __unused_webpack_exports, __nested_webpack_require_426180_426199__) {
30772
+ var process = __nested_webpack_require_426180_426199__("../../node_modules/.pnpm/process@0.11.10/node_modules/process/browser.js");
30675
30773
  module1.exports = Writable;
30676
30774
  function CorkedRequest(state) {
30677
30775
  var _this = this;
@@ -30684,25 +30782,25 @@ and limitations under the License.
30684
30782
  var Duplex;
30685
30783
  Writable.WritableState = WritableState;
30686
30784
  var internalUtil = {
30687
- deprecate: __nested_webpack_require_426166_426185__("../../node_modules/.pnpm/util-deprecate@1.0.2/node_modules/util-deprecate/browser.js")
30785
+ deprecate: __nested_webpack_require_426180_426199__("../../node_modules/.pnpm/util-deprecate@1.0.2/node_modules/util-deprecate/browser.js")
30688
30786
  };
30689
- var Stream = __nested_webpack_require_426166_426185__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/stream-browser.js");
30690
- var Buffer = __nested_webpack_require_426166_426185__("../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.js").Buffer;
30691
- var OurUint8Array = (void 0 !== __nested_webpack_require_426166_426185__.g ? __nested_webpack_require_426166_426185__.g : 'undefined' != typeof window ? window : 'undefined' != typeof self ? self : {}).Uint8Array || function() {};
30787
+ var Stream = __nested_webpack_require_426180_426199__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/stream-browser.js");
30788
+ var Buffer = __nested_webpack_require_426180_426199__("../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.js").Buffer;
30789
+ var OurUint8Array = (void 0 !== __nested_webpack_require_426180_426199__.g ? __nested_webpack_require_426180_426199__.g : 'undefined' != typeof window ? window : 'undefined' != typeof self ? self : {}).Uint8Array || function() {};
30692
30790
  function _uint8ArrayToBuffer(chunk) {
30693
30791
  return Buffer.from(chunk);
30694
30792
  }
30695
30793
  function _isUint8Array(obj) {
30696
30794
  return Buffer.isBuffer(obj) || obj instanceof OurUint8Array;
30697
30795
  }
30698
- var destroyImpl = __nested_webpack_require_426166_426185__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/destroy.js");
30699
- var _require = __nested_webpack_require_426166_426185__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/state.js"), getHighWaterMark = _require.getHighWaterMark;
30700
- var _require$codes = __nested_webpack_require_426166_426185__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/errors-browser.js").codes, ERR_INVALID_ARG_TYPE = _require$codes.ERR_INVALID_ARG_TYPE, ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED, ERR_MULTIPLE_CALLBACK = _require$codes.ERR_MULTIPLE_CALLBACK, ERR_STREAM_CANNOT_PIPE = _require$codes.ERR_STREAM_CANNOT_PIPE, ERR_STREAM_DESTROYED = _require$codes.ERR_STREAM_DESTROYED, ERR_STREAM_NULL_VALUES = _require$codes.ERR_STREAM_NULL_VALUES, ERR_STREAM_WRITE_AFTER_END = _require$codes.ERR_STREAM_WRITE_AFTER_END, ERR_UNKNOWN_ENCODING = _require$codes.ERR_UNKNOWN_ENCODING;
30796
+ var destroyImpl = __nested_webpack_require_426180_426199__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/destroy.js");
30797
+ var _require = __nested_webpack_require_426180_426199__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/state.js"), getHighWaterMark = _require.getHighWaterMark;
30798
+ var _require$codes = __nested_webpack_require_426180_426199__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/errors-browser.js").codes, ERR_INVALID_ARG_TYPE = _require$codes.ERR_INVALID_ARG_TYPE, ERR_METHOD_NOT_IMPLEMENTED = _require$codes.ERR_METHOD_NOT_IMPLEMENTED, ERR_MULTIPLE_CALLBACK = _require$codes.ERR_MULTIPLE_CALLBACK, ERR_STREAM_CANNOT_PIPE = _require$codes.ERR_STREAM_CANNOT_PIPE, ERR_STREAM_DESTROYED = _require$codes.ERR_STREAM_DESTROYED, ERR_STREAM_NULL_VALUES = _require$codes.ERR_STREAM_NULL_VALUES, ERR_STREAM_WRITE_AFTER_END = _require$codes.ERR_STREAM_WRITE_AFTER_END, ERR_UNKNOWN_ENCODING = _require$codes.ERR_UNKNOWN_ENCODING;
30701
30799
  var errorOrDestroy = destroyImpl.errorOrDestroy;
30702
- __nested_webpack_require_426166_426185__("../../node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js")(Writable, Stream);
30800
+ __nested_webpack_require_426180_426199__("../../node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js")(Writable, Stream);
30703
30801
  function nop() {}
30704
30802
  function WritableState(options, stream, isDuplex) {
30705
- Duplex = Duplex || __nested_webpack_require_426166_426185__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_duplex.js");
30803
+ Duplex = Duplex || __nested_webpack_require_426180_426199__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_duplex.js");
30706
30804
  options = options || {};
30707
30805
  if ('boolean' != typeof isDuplex) isDuplex = stream instanceof Duplex;
30708
30806
  this.objectMode = !!options.objectMode;
@@ -30769,7 +30867,7 @@ and limitations under the License.
30769
30867
  return object instanceof this;
30770
30868
  };
30771
30869
  function Writable(options) {
30772
- Duplex = Duplex || __nested_webpack_require_426166_426185__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_duplex.js");
30870
+ Duplex = Duplex || __nested_webpack_require_426180_426199__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_duplex.js");
30773
30871
  var isDuplex = this instanceof Duplex;
30774
30872
  if (!isDuplex && !realHasInstance.call(Writable, this)) return new Writable(options);
30775
30873
  this._writableState = new WritableState(options, this, isDuplex);
@@ -31093,8 +31191,8 @@ and limitations under the License.
31093
31191
  cb(err);
31094
31192
  };
31095
31193
  },
31096
- "../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/async_iterator.js": function(module1, __unused_webpack_exports, __nested_webpack_require_445536_445555__) {
31097
- var process = __nested_webpack_require_445536_445555__("../../node_modules/.pnpm/process@0.11.10/node_modules/process/browser.js");
31194
+ "../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/async_iterator.js": function(module1, __unused_webpack_exports, __nested_webpack_require_445550_445569__) {
31195
+ var process = __nested_webpack_require_445550_445569__("../../node_modules/.pnpm/process@0.11.10/node_modules/process/browser.js");
31098
31196
  var _Object$setPrototypeO;
31099
31197
  function _defineProperty(obj, key, value) {
31100
31198
  key = _toPropertyKey(key);
@@ -31121,7 +31219,7 @@ and limitations under the License.
31121
31219
  }
31122
31220
  return ("string" === hint ? String : Number)(input);
31123
31221
  }
31124
- var finished = __nested_webpack_require_445536_445555__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/end-of-stream.js");
31222
+ var finished = __nested_webpack_require_445550_445569__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/end-of-stream.js");
31125
31223
  var kLastResolve = Symbol('lastResolve');
31126
31224
  var kLastReject = Symbol('lastReject');
31127
31225
  var kError = Symbol('error');
@@ -31255,7 +31353,7 @@ and limitations under the License.
31255
31353
  };
31256
31354
  module1.exports = createReadableStreamAsyncIterator;
31257
31355
  },
31258
- "../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/buffer_list.js": function(module1, __unused_webpack_exports, __nested_webpack_require_452962_452981__) {
31356
+ "../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/buffer_list.js": function(module1, __unused_webpack_exports, __nested_webpack_require_452976_452995__) {
31259
31357
  function ownKeys(object, enumerableOnly) {
31260
31358
  var keys = Object.keys(object);
31261
31359
  if (Object.getOwnPropertySymbols) {
@@ -31322,8 +31420,8 @@ and limitations under the License.
31322
31420
  }
31323
31421
  return ("string" === hint ? String : Number)(input);
31324
31422
  }
31325
- var _require = __nested_webpack_require_452962_452981__("../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.js"), Buffer = _require.Buffer;
31326
- var _require2 = __nested_webpack_require_452962_452981__("?fe28"), inspect = _require2.inspect;
31423
+ var _require = __nested_webpack_require_452976_452995__("../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.js"), Buffer = _require.Buffer;
31424
+ var _require2 = __nested_webpack_require_452976_452995__("?fe28"), inspect = _require2.inspect;
31327
31425
  var custom = inspect && inspect.custom || 'inspect';
31328
31426
  function copyBuffer(src, target, offset) {
31329
31427
  Buffer.prototype.copy.call(src, target, offset);
@@ -31494,8 +31592,8 @@ and limitations under the License.
31494
31592
  return BufferList;
31495
31593
  }();
31496
31594
  },
31497
- "../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/destroy.js": function(module1, __unused_webpack_exports, __nested_webpack_require_463274_463293__) {
31498
- var process = __nested_webpack_require_463274_463293__("../../node_modules/.pnpm/process@0.11.10/node_modules/process/browser.js");
31595
+ "../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/destroy.js": function(module1, __unused_webpack_exports, __nested_webpack_require_463288_463307__) {
31596
+ var process = __nested_webpack_require_463288_463307__("../../node_modules/.pnpm/process@0.11.10/node_modules/process/browser.js");
31499
31597
  function destroy(err, cb) {
31500
31598
  var _this = this;
31501
31599
  var readableDestroyed = this._readableState && this._readableState.destroyed;
@@ -31567,8 +31665,8 @@ and limitations under the License.
31567
31665
  errorOrDestroy: errorOrDestroy
31568
31666
  };
31569
31667
  },
31570
- "../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/end-of-stream.js": function(module1, __unused_webpack_exports, __nested_webpack_require_466770_466789__) {
31571
- var ERR_STREAM_PREMATURE_CLOSE = __nested_webpack_require_466770_466789__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/errors-browser.js").codes.ERR_STREAM_PREMATURE_CLOSE;
31668
+ "../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/end-of-stream.js": function(module1, __unused_webpack_exports, __nested_webpack_require_466784_466803__) {
31669
+ var ERR_STREAM_PREMATURE_CLOSE = __nested_webpack_require_466784_466803__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/errors-browser.js").codes.ERR_STREAM_PREMATURE_CLOSE;
31572
31670
  function once(callback) {
31573
31671
  var called = false;
31574
31672
  return function() {
@@ -31653,7 +31751,7 @@ and limitations under the License.
31653
31751
  throw new Error('Readable.from is not available in the browser');
31654
31752
  };
31655
31753
  },
31656
- "../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/pipeline.js": function(module1, __unused_webpack_exports, __nested_webpack_require_471033_471052__) {
31754
+ "../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/pipeline.js": function(module1, __unused_webpack_exports, __nested_webpack_require_471047_471066__) {
31657
31755
  var eos;
31658
31756
  function once(callback) {
31659
31757
  var called = false;
@@ -31663,7 +31761,7 @@ and limitations under the License.
31663
31761
  callback.apply(void 0, arguments);
31664
31762
  };
31665
31763
  }
31666
- var _require$codes = __nested_webpack_require_471033_471052__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/errors-browser.js").codes, ERR_MISSING_ARGS = _require$codes.ERR_MISSING_ARGS, ERR_STREAM_DESTROYED = _require$codes.ERR_STREAM_DESTROYED;
31764
+ var _require$codes = __nested_webpack_require_471047_471066__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/errors-browser.js").codes, ERR_MISSING_ARGS = _require$codes.ERR_MISSING_ARGS, ERR_STREAM_DESTROYED = _require$codes.ERR_STREAM_DESTROYED;
31667
31765
  function noop(err) {
31668
31766
  if (err) throw err;
31669
31767
  }
@@ -31676,7 +31774,7 @@ and limitations under the License.
31676
31774
  stream.on('close', function() {
31677
31775
  closed = true;
31678
31776
  });
31679
- if (void 0 === eos) eos = __nested_webpack_require_471033_471052__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/end-of-stream.js");
31777
+ if (void 0 === eos) eos = __nested_webpack_require_471047_471066__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/end-of-stream.js");
31680
31778
  eos(stream, {
31681
31779
  readable: reading,
31682
31780
  writable: writing
@@ -31727,8 +31825,8 @@ and limitations under the License.
31727
31825
  }
31728
31826
  module1.exports = pipeline;
31729
31827
  },
31730
- "../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/state.js": function(module1, __unused_webpack_exports, __nested_webpack_require_474289_474308__) {
31731
- var ERR_INVALID_OPT_VALUE = __nested_webpack_require_474289_474308__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/errors-browser.js").codes.ERR_INVALID_OPT_VALUE;
31828
+ "../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/state.js": function(module1, __unused_webpack_exports, __nested_webpack_require_474303_474322__) {
31829
+ var ERR_INVALID_OPT_VALUE = __nested_webpack_require_474303_474322__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/errors-browser.js").codes.ERR_INVALID_OPT_VALUE;
31732
31830
  function highWaterMarkFrom(options, isDuplex, duplexKey) {
31733
31831
  return null != options.highWaterMark ? options.highWaterMark : isDuplex ? options[duplexKey] : null;
31734
31832
  }
@@ -31747,11 +31845,11 @@ and limitations under the License.
31747
31845
  getHighWaterMark: getHighWaterMark
31748
31846
  };
31749
31847
  },
31750
- "../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/stream-browser.js": function(module1, __unused_webpack_exports, __nested_webpack_require_475461_475480__) {
31751
- module1.exports = __nested_webpack_require_475461_475480__("../../node_modules/.pnpm/events@3.3.0/node_modules/events/events.js").EventEmitter;
31848
+ "../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/stream-browser.js": function(module1, __unused_webpack_exports, __nested_webpack_require_475475_475494__) {
31849
+ module1.exports = __nested_webpack_require_475475_475494__("../../node_modules/.pnpm/events@3.3.0/node_modules/events/events.js").EventEmitter;
31752
31850
  },
31753
- "../../node_modules/.pnpm/safe-buffer@5.2.1/node_modules/safe-buffer/index.js": function(module1, exports1, __nested_webpack_require_475731_475750__) {
31754
- /*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */ var buffer = __nested_webpack_require_475731_475750__("../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.js");
31851
+ "../../node_modules/.pnpm/safe-buffer@5.2.1/node_modules/safe-buffer/index.js": function(module1, exports1, __nested_webpack_require_475745_475764__) {
31852
+ /*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */ var buffer = __nested_webpack_require_475745_475764__("../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.js");
31755
31853
  var Buffer = buffer.Buffer;
31756
31854
  function copyProps(src, dst) {
31757
31855
  for(var key in src)dst[key] = src[key];
@@ -31787,11 +31885,11 @@ and limitations under the License.
31787
31885
  return buffer.SlowBuffer(size);
31788
31886
  };
31789
31887
  },
31790
- "../../node_modules/.pnpm/safe-regex-test@1.1.0/node_modules/safe-regex-test/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_477675_477694__) {
31791
- var callBound = __nested_webpack_require_477675_477694__("../../node_modules/.pnpm/call-bound@1.0.4/node_modules/call-bound/index.js");
31792
- var isRegex = __nested_webpack_require_477675_477694__("../../node_modules/.pnpm/is-regex@1.2.1/node_modules/is-regex/index.js");
31888
+ "../../node_modules/.pnpm/safe-regex-test@1.1.0/node_modules/safe-regex-test/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_477689_477708__) {
31889
+ var callBound = __nested_webpack_require_477689_477708__("../../node_modules/.pnpm/call-bound@1.0.4/node_modules/call-bound/index.js");
31890
+ var isRegex = __nested_webpack_require_477689_477708__("../../node_modules/.pnpm/is-regex@1.2.1/node_modules/is-regex/index.js");
31793
31891
  var $exec = callBound('RegExp.prototype.exec');
31794
- var $TypeError = __nested_webpack_require_477675_477694__("../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/type.js");
31892
+ var $TypeError = __nested_webpack_require_477689_477708__("../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/type.js");
31795
31893
  module1.exports = function(regex) {
31796
31894
  if (!isRegex(regex)) throw new $TypeError('`regex` must be a RegExp');
31797
31895
  return function(s) {
@@ -31799,12 +31897,12 @@ and limitations under the License.
31799
31897
  };
31800
31898
  };
31801
31899
  },
31802
- "../../node_modules/.pnpm/set-function-length@1.2.2/node_modules/set-function-length/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_478499_478518__) {
31803
- var GetIntrinsic = __nested_webpack_require_478499_478518__("../../node_modules/.pnpm/get-intrinsic@1.3.0/node_modules/get-intrinsic/index.js");
31804
- var define1 = __nested_webpack_require_478499_478518__("../../node_modules/.pnpm/define-data-property@1.1.4/node_modules/define-data-property/index.js");
31805
- var hasDescriptors = __nested_webpack_require_478499_478518__("../../node_modules/.pnpm/has-property-descriptors@1.0.2/node_modules/has-property-descriptors/index.js")();
31806
- var gOPD = __nested_webpack_require_478499_478518__("../../node_modules/.pnpm/gopd@1.2.0/node_modules/gopd/index.js");
31807
- var $TypeError = __nested_webpack_require_478499_478518__("../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/type.js");
31900
+ "../../node_modules/.pnpm/set-function-length@1.2.2/node_modules/set-function-length/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_478513_478532__) {
31901
+ var GetIntrinsic = __nested_webpack_require_478513_478532__("../../node_modules/.pnpm/get-intrinsic@1.3.0/node_modules/get-intrinsic/index.js");
31902
+ var define1 = __nested_webpack_require_478513_478532__("../../node_modules/.pnpm/define-data-property@1.1.4/node_modules/define-data-property/index.js");
31903
+ var hasDescriptors = __nested_webpack_require_478513_478532__("../../node_modules/.pnpm/has-property-descriptors@1.0.2/node_modules/has-property-descriptors/index.js")();
31904
+ var gOPD = __nested_webpack_require_478513_478532__("../../node_modules/.pnpm/gopd@1.2.0/node_modules/gopd/index.js");
31905
+ var $TypeError = __nested_webpack_require_478513_478532__("../../node_modules/.pnpm/es-errors@1.3.0/node_modules/es-errors/type.js");
31808
31906
  var $floor = GetIntrinsic('%Math.floor%');
31809
31907
  module1.exports = function(fn, length) {
31810
31908
  if ('function' != typeof fn) throw new $TypeError('`fn` is not a function');
@@ -31821,18 +31919,18 @@ and limitations under the License.
31821
31919
  return fn;
31822
31920
  };
31823
31921
  },
31824
- "../../node_modules/.pnpm/stream-browserify@3.0.0/node_modules/stream-browserify/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_480331_480350__) {
31922
+ "../../node_modules/.pnpm/stream-browserify@3.0.0/node_modules/stream-browserify/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_480345_480364__) {
31825
31923
  module1.exports = Stream;
31826
- var EE = __nested_webpack_require_480331_480350__("../../node_modules/.pnpm/events@3.3.0/node_modules/events/events.js").EventEmitter;
31827
- var inherits = __nested_webpack_require_480331_480350__("../../node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js");
31924
+ var EE = __nested_webpack_require_480345_480364__("../../node_modules/.pnpm/events@3.3.0/node_modules/events/events.js").EventEmitter;
31925
+ var inherits = __nested_webpack_require_480345_480364__("../../node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js");
31828
31926
  inherits(Stream, EE);
31829
- Stream.Readable = __nested_webpack_require_480331_480350__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_readable.js");
31830
- Stream.Writable = __nested_webpack_require_480331_480350__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_writable.js");
31831
- Stream.Duplex = __nested_webpack_require_480331_480350__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_duplex.js");
31832
- Stream.Transform = __nested_webpack_require_480331_480350__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_transform.js");
31833
- Stream.PassThrough = __nested_webpack_require_480331_480350__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_passthrough.js");
31834
- Stream.finished = __nested_webpack_require_480331_480350__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/end-of-stream.js");
31835
- Stream.pipeline = __nested_webpack_require_480331_480350__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/pipeline.js");
31927
+ Stream.Readable = __nested_webpack_require_480345_480364__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_readable.js");
31928
+ Stream.Writable = __nested_webpack_require_480345_480364__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_writable.js");
31929
+ Stream.Duplex = __nested_webpack_require_480345_480364__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_duplex.js");
31930
+ Stream.Transform = __nested_webpack_require_480345_480364__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_transform.js");
31931
+ Stream.PassThrough = __nested_webpack_require_480345_480364__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/_stream_passthrough.js");
31932
+ Stream.finished = __nested_webpack_require_480345_480364__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/end-of-stream.js");
31933
+ Stream.pipeline = __nested_webpack_require_480345_480364__("../../node_modules/.pnpm/readable-stream@3.6.2/node_modules/readable-stream/lib/internal/streams/pipeline.js");
31836
31934
  Stream.Stream = Stream;
31837
31935
  function Stream() {
31838
31936
  EE.call(this);
@@ -31888,8 +31986,8 @@ and limitations under the License.
31888
31986
  return dest;
31889
31987
  };
31890
31988
  },
31891
- "../../node_modules/.pnpm/string_decoder@1.3.0/node_modules/string_decoder/lib/string_decoder.js": function(__unused_webpack_module, exports1, __nested_webpack_require_483976_483995__) {
31892
- var Buffer = __nested_webpack_require_483976_483995__("../../node_modules/.pnpm/safe-buffer@5.2.1/node_modules/safe-buffer/index.js").Buffer;
31989
+ "../../node_modules/.pnpm/string_decoder@1.3.0/node_modules/string_decoder/lib/string_decoder.js": function(__unused_webpack_module, exports1, __nested_webpack_require_483990_484009__) {
31990
+ var Buffer = __nested_webpack_require_483990_484009__("../../node_modules/.pnpm/safe-buffer@5.2.1/node_modules/safe-buffer/index.js").Buffer;
31893
31991
  var isEncoding = Buffer.isEncoding || function(encoding) {
31894
31992
  encoding = '' + encoding;
31895
31993
  switch(encoding && encoding.toLowerCase()){
@@ -32114,7 +32212,7 @@ and limitations under the License.
32114
32212
  return buf && buf.length ? this.write(buf) : '';
32115
32213
  }
32116
32214
  },
32117
- "../../node_modules/.pnpm/util-deprecate@1.0.2/node_modules/util-deprecate/browser.js": function(module1, __unused_webpack_exports, __nested_webpack_require_492655_492674__) {
32215
+ "../../node_modules/.pnpm/util-deprecate@1.0.2/node_modules/util-deprecate/browser.js": function(module1, __unused_webpack_exports, __nested_webpack_require_492669_492688__) {
32118
32216
  module1.exports = deprecate;
32119
32217
  function deprecate(fn, msg) {
32120
32218
  if (config('noDeprecation')) return fn;
@@ -32132,11 +32230,11 @@ and limitations under the License.
32132
32230
  }
32133
32231
  function config(name) {
32134
32232
  try {
32135
- if (!__nested_webpack_require_492655_492674__.g.localStorage) return false;
32233
+ if (!__nested_webpack_require_492669_492688__.g.localStorage) return false;
32136
32234
  } catch (_) {
32137
32235
  return false;
32138
32236
  }
32139
- var val = __nested_webpack_require_492655_492674__.g.localStorage[name];
32237
+ var val = __nested_webpack_require_492669_492688__.g.localStorage[name];
32140
32238
  if (null == val) return false;
32141
32239
  return 'true' === String(val).toLowerCase();
32142
32240
  }
@@ -32146,11 +32244,11 @@ and limitations under the License.
32146
32244
  return arg && 'object' == typeof arg && 'function' == typeof arg.copy && 'function' == typeof arg.fill && 'function' == typeof arg.readUInt8;
32147
32245
  };
32148
32246
  },
32149
- "../../node_modules/.pnpm/util@0.12.5/node_modules/util/support/types.js": function(__unused_webpack_module, exports1, __nested_webpack_require_494066_494085__) {
32150
- var isArgumentsObject = __nested_webpack_require_494066_494085__("../../node_modules/.pnpm/is-arguments@1.2.0/node_modules/is-arguments/index.js");
32151
- var isGeneratorFunction = __nested_webpack_require_494066_494085__("../../node_modules/.pnpm/is-generator-function@1.1.0/node_modules/is-generator-function/index.js");
32152
- var whichTypedArray = __nested_webpack_require_494066_494085__("../../node_modules/.pnpm/which-typed-array@1.1.19/node_modules/which-typed-array/index.js");
32153
- var isTypedArray = __nested_webpack_require_494066_494085__("../../node_modules/.pnpm/is-typed-array@1.1.15/node_modules/is-typed-array/index.js");
32247
+ "../../node_modules/.pnpm/util@0.12.5/node_modules/util/support/types.js": function(__unused_webpack_module, exports1, __nested_webpack_require_494080_494099__) {
32248
+ var isArgumentsObject = __nested_webpack_require_494080_494099__("../../node_modules/.pnpm/is-arguments@1.2.0/node_modules/is-arguments/index.js");
32249
+ var isGeneratorFunction = __nested_webpack_require_494080_494099__("../../node_modules/.pnpm/is-generator-function@1.1.2/node_modules/is-generator-function/index.js");
32250
+ var whichTypedArray = __nested_webpack_require_494080_494099__("../../node_modules/.pnpm/which-typed-array@1.1.19/node_modules/which-typed-array/index.js");
32251
+ var isTypedArray = __nested_webpack_require_494080_494099__("../../node_modules/.pnpm/is-typed-array@1.1.15/node_modules/is-typed-array/index.js");
32154
32252
  function uncurryThis(f) {
32155
32253
  return f.call.bind(f);
32156
32254
  }
@@ -32351,8 +32449,8 @@ and limitations under the License.
32351
32449
  });
32352
32450
  });
32353
32451
  },
32354
- "../../node_modules/.pnpm/util@0.12.5/node_modules/util/util.js": function(__unused_webpack_module, exports1, __nested_webpack_require_504209_504228__) {
32355
- var process = __nested_webpack_require_504209_504228__("../../node_modules/.pnpm/process@0.11.10/node_modules/process/browser.js");
32452
+ "../../node_modules/.pnpm/util@0.12.5/node_modules/util/util.js": function(__unused_webpack_module, exports1, __nested_webpack_require_504223_504242__) {
32453
+ var process = __nested_webpack_require_504223_504242__("../../node_modules/.pnpm/process@0.11.10/node_modules/process/browser.js");
32356
32454
  var getOwnPropertyDescriptors = Object.getOwnPropertyDescriptors || function(obj) {
32357
32455
  var keys = Object.keys(obj);
32358
32456
  var descriptors = {};
@@ -32633,7 +32731,7 @@ and limitations under the License.
32633
32731
  if (length > 60) return braces[0] + ('' === base ? '' : base + '\n ') + ' ' + output.join(',\n ') + ' ' + braces[1];
32634
32732
  return braces[0] + base + ' ' + output.join(', ') + ' ' + braces[1];
32635
32733
  }
32636
- exports1.types = __nested_webpack_require_504209_504228__("../../node_modules/.pnpm/util@0.12.5/node_modules/util/support/types.js");
32734
+ exports1.types = __nested_webpack_require_504223_504242__("../../node_modules/.pnpm/util@0.12.5/node_modules/util/support/types.js");
32637
32735
  function isArray(ar) {
32638
32736
  return Array.isArray(ar);
32639
32737
  }
@@ -32693,7 +32791,7 @@ and limitations under the License.
32693
32791
  return null === arg || 'boolean' == typeof arg || 'number' == typeof arg || 'string' == typeof arg || 'symbol' == typeof arg || void 0 === arg;
32694
32792
  }
32695
32793
  exports1.isPrimitive = isPrimitive;
32696
- exports1.isBuffer = __nested_webpack_require_504209_504228__("../../node_modules/.pnpm/util@0.12.5/node_modules/util/support/isBufferBrowser.js");
32794
+ exports1.isBuffer = __nested_webpack_require_504223_504242__("../../node_modules/.pnpm/util@0.12.5/node_modules/util/support/isBufferBrowser.js");
32697
32795
  function objectToString(o) {
32698
32796
  return Object.prototype.toString.call(o);
32699
32797
  }
@@ -32730,7 +32828,7 @@ and limitations under the License.
32730
32828
  exports1.log = function() {
32731
32829
  console.log('%s - %s', timestamp(), exports1.format.apply(exports1, arguments));
32732
32830
  };
32733
- exports1.inherits = __nested_webpack_require_504209_504228__("../../node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js");
32831
+ exports1.inherits = __nested_webpack_require_504223_504242__("../../node_modules/.pnpm/inherits@2.0.4/node_modules/inherits/inherits_browser.js");
32734
32832
  exports1._extend = function(origin, add) {
32735
32833
  if (!add || !isObject(add)) return origin;
32736
32834
  var keys = Object.keys(add);
@@ -32815,16 +32913,16 @@ and limitations under the License.
32815
32913
  }
32816
32914
  exports1.callbackify = callbackify;
32817
32915
  },
32818
- "../../node_modules/.pnpm/which-typed-array@1.1.19/node_modules/which-typed-array/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_523691_523710__) {
32819
- var forEach = __nested_webpack_require_523691_523710__("../../node_modules/.pnpm/for-each@0.3.5/node_modules/for-each/index.js");
32820
- var availableTypedArrays = __nested_webpack_require_523691_523710__("../../node_modules/.pnpm/available-typed-arrays@1.0.7/node_modules/available-typed-arrays/index.js");
32821
- var callBind = __nested_webpack_require_523691_523710__("../../node_modules/.pnpm/call-bind@1.0.8/node_modules/call-bind/index.js");
32822
- var callBound = __nested_webpack_require_523691_523710__("../../node_modules/.pnpm/call-bound@1.0.4/node_modules/call-bound/index.js");
32823
- var gOPD = __nested_webpack_require_523691_523710__("../../node_modules/.pnpm/gopd@1.2.0/node_modules/gopd/index.js");
32824
- var getProto = __nested_webpack_require_523691_523710__("../../node_modules/.pnpm/get-proto@1.0.1/node_modules/get-proto/index.js");
32916
+ "../../node_modules/.pnpm/which-typed-array@1.1.19/node_modules/which-typed-array/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_523705_523724__) {
32917
+ var forEach = __nested_webpack_require_523705_523724__("../../node_modules/.pnpm/for-each@0.3.5/node_modules/for-each/index.js");
32918
+ var availableTypedArrays = __nested_webpack_require_523705_523724__("../../node_modules/.pnpm/available-typed-arrays@1.0.7/node_modules/available-typed-arrays/index.js");
32919
+ var callBind = __nested_webpack_require_523705_523724__("../../node_modules/.pnpm/call-bind@1.0.8/node_modules/call-bind/index.js");
32920
+ var callBound = __nested_webpack_require_523705_523724__("../../node_modules/.pnpm/call-bound@1.0.4/node_modules/call-bound/index.js");
32921
+ var gOPD = __nested_webpack_require_523705_523724__("../../node_modules/.pnpm/gopd@1.2.0/node_modules/gopd/index.js");
32922
+ var getProto = __nested_webpack_require_523705_523724__("../../node_modules/.pnpm/get-proto@1.0.1/node_modules/get-proto/index.js");
32825
32923
  var $toString = callBound('Object.prototype.toString');
32826
- var hasToStringTag = __nested_webpack_require_523691_523710__("../../node_modules/.pnpm/has-tostringtag@1.0.2/node_modules/has-tostringtag/shams.js")();
32827
- var g = 'undefined' == typeof globalThis ? __nested_webpack_require_523691_523710__.g : globalThis;
32924
+ var hasToStringTag = __nested_webpack_require_523705_523724__("../../node_modules/.pnpm/has-tostringtag@1.0.2/node_modules/has-tostringtag/shams.js")();
32925
+ var g = 'undefined' == typeof globalThis ? __nested_webpack_require_523705_523724__.g : globalThis;
32828
32926
  var typedArrays = availableTypedArrays();
32829
32927
  var $slice = callBound('String.prototype.slice');
32830
32928
  var $indexOf = callBound('Array.prototype.indexOf', true) || function(array, value) {
@@ -32883,9 +32981,9 @@ and limitations under the License.
32883
32981
  },
32884
32982
  "?fe28": function() {},
32885
32983
  "?14dd": function() {},
32886
- "../../node_modules/.pnpm/available-typed-arrays@1.0.7/node_modules/available-typed-arrays/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_527258_527277__) {
32887
- var possibleNames = __nested_webpack_require_527258_527277__("../../node_modules/.pnpm/possible-typed-array-names@1.1.0/node_modules/possible-typed-array-names/index.js");
32888
- var g = 'undefined' == typeof globalThis ? __nested_webpack_require_527258_527277__.g : globalThis;
32984
+ "../../node_modules/.pnpm/available-typed-arrays@1.0.7/node_modules/available-typed-arrays/index.js": function(module1, __unused_webpack_exports, __nested_webpack_require_527272_527291__) {
32985
+ var possibleNames = __nested_webpack_require_527272_527291__("../../node_modules/.pnpm/possible-typed-array-names@1.1.0/node_modules/possible-typed-array-names/index.js");
32986
+ var g = 'undefined' == typeof globalThis ? __nested_webpack_require_527272_527291__.g : globalThis;
32889
32987
  module1.exports = function() {
32890
32988
  var out = [];
32891
32989
  for(var i = 0; i < possibleNames.length; i++)if ('function' == typeof g[possibleNames[i]]) out[out.length] = possibleNames[i];
@@ -32894,25 +32992,25 @@ and limitations under the License.
32894
32992
  }
32895
32993
  };
32896
32994
  var __webpack_module_cache__ = {};
32897
- function __nested_webpack_require_527809__(moduleId) {
32995
+ function __nested_webpack_require_527823__(moduleId) {
32898
32996
  var cachedModule = __webpack_module_cache__[moduleId];
32899
32997
  if (void 0 !== cachedModule) return cachedModule.exports;
32900
32998
  var module1 = __webpack_module_cache__[moduleId] = {
32901
32999
  exports: {}
32902
33000
  };
32903
- __webpack_modules__[moduleId](module1, module1.exports, __nested_webpack_require_527809__);
33001
+ __webpack_modules__[moduleId](module1, module1.exports, __nested_webpack_require_527823__);
32904
33002
  return module1.exports;
32905
33003
  }
32906
33004
  (()=>{
32907
- __nested_webpack_require_527809__.d = (exports1, definition)=>{
32908
- for(var key in definition)if (__nested_webpack_require_527809__.o(definition, key) && !__nested_webpack_require_527809__.o(exports1, key)) Object.defineProperty(exports1, key, {
33005
+ __nested_webpack_require_527823__.d = (exports1, definition)=>{
33006
+ for(var key in definition)if (__nested_webpack_require_527823__.o(definition, key) && !__nested_webpack_require_527823__.o(exports1, key)) Object.defineProperty(exports1, key, {
32909
33007
  enumerable: true,
32910
33008
  get: definition[key]
32911
33009
  });
32912
33010
  };
32913
33011
  })();
32914
33012
  (()=>{
32915
- __nested_webpack_require_527809__.g = (()=>{
33013
+ __nested_webpack_require_527823__.g = (()=>{
32916
33014
  if ('object' == typeof globalThis) return globalThis;
32917
33015
  try {
32918
33016
  return new Function('return this')();
@@ -32922,10 +33020,10 @@ and limitations under the License.
32922
33020
  })();
32923
33021
  })();
32924
33022
  (()=>{
32925
- __nested_webpack_require_527809__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
33023
+ __nested_webpack_require_527823__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
32926
33024
  })();
32927
33025
  (()=>{
32928
- __nested_webpack_require_527809__.r = (exports1)=>{
33026
+ __nested_webpack_require_527823__.r = (exports1)=>{
32929
33027
  if ('undefined' != typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
32930
33028
  value: 'Module'
32931
33029
  });
@@ -32935,8 +33033,8 @@ and limitations under the License.
32935
33033
  };
32936
33034
  })();
32937
33035
  var platform_namespaceObject = {};
32938
- __nested_webpack_require_527809__.r(platform_namespaceObject);
32939
- __nested_webpack_require_527809__.d(platform_namespaceObject, {
33036
+ __nested_webpack_require_527823__.r(platform_namespaceObject);
33037
+ __nested_webpack_require_527823__.d(platform_namespaceObject, {
32940
33038
  PlatformDanmakuOnlySource: ()=>platform_PlatformDanmakuOnlySource,
32941
33039
  PlatformDanmakuOnlySources: ()=>PlatformDanmakuOnlySources,
32942
33040
  PlatformDanmakuSources: ()=>PlatformDanmakuSources,
@@ -32947,14 +33045,14 @@ and limitations under the License.
32947
33045
  PlatformVideoSources: ()=>PlatformVideoSources
32948
33046
  });
32949
33047
  var id_gen_namespaceObject = {};
32950
- __nested_webpack_require_527809__.r(id_gen_namespaceObject);
32951
- __nested_webpack_require_527809__.d(id_gen_namespaceObject, {
33048
+ __nested_webpack_require_527823__.r(id_gen_namespaceObject);
33049
+ __nested_webpack_require_527823__.d(id_gen_namespaceObject, {
32952
33050
  UniID: ()=>id_gen_UniID,
32953
33051
  createDMID: ()=>createDMID
32954
33052
  });
32955
33053
  var dm_gen_namespaceObject = {};
32956
- __nested_webpack_require_527809__.r(dm_gen_namespaceObject);
32957
- __nested_webpack_require_527809__.d(dm_gen_namespaceObject, {
33054
+ __nested_webpack_require_527823__.r(dm_gen_namespaceObject);
33055
+ __nested_webpack_require_527823__.d(dm_gen_namespaceObject, {
32958
33056
  DMAttr: ()=>dm_gen_DMAttr,
32959
33057
  ExtraDanUniChapterAction: ()=>dm_gen_ExtraDanUniChapterAction,
32960
33058
  ExtraDanUniChapterType: ()=>dm_gen_ExtraDanUniChapterType,
@@ -32962,7 +33060,7 @@ and limitations under the License.
32962
33060
  Pools: ()=>dm_gen_Pools,
32963
33061
  UniDM: ()=>UniDM
32964
33062
  });
32965
- var package_namespaceObject = JSON.parse('{"u2":"@dan-uni/dan-any","i8":"0.9.2","e8":"https://github.com/ani-uni/danuni/tree/master/packages/dan-any#readme"}');
33063
+ var package_namespaceObject = JSON.parse('{"UU":"@dan-uni/dan-any","rE":"0.9.5","TB":"https://github.com/ani-uni/danuni/tree/master/packages/dan-any#readme"}');
32966
33064
  const file_bili_dm = /*@__PURE__*/ fileDesc("Cg1iaWxpL2RtLnByb3RvEiBiaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MSJkCgZBdmF0YXISCgoCaWQYASABKAkSCwoDdXJsGAIgASgJEkEKC2F2YXRhcl90eXBlGAMgASgOMiwuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuQXZhdGFyVHlwZSIjCgZCdWJibGUSDAoEdGV4dBgBIAEoCRILCgN1cmwYAiABKAkixgEKCEJ1YmJsZVYyEgwKBHRleHQYASABKAkSCwoDdXJsGAIgASgJEkEKC2J1YmJsZV90eXBlGAMgASgOMiwuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuQnViYmxlVHlwZRIVCg1leHBvc3VyZV9vbmNlGAQgASgIEkUKDWV4cG9zdXJlX3R5cGUYBSABKA4yLi5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5FeHBvc3VyZVR5cGUiWwoGQnV0dG9uEgwKBHRleHQYASABKAkSQwoGYWN0aW9uGAIgASgOMjMuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuVG9hc3RGdW5jdGlvblR5cGUiWAoOQnV6endvcmRDb25maWcSRgoIa2V5d29yZHMYASADKAsyNC5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5CdXp6d29yZFNob3dDb25maWcieAoSQnV6endvcmRTaG93Q29uZmlnEgwKBG5hbWUYASABKAkSDgoGc2NoZW1hGAIgASgJEg4KBnNvdXJjZRgDIAEoBRIKCgJpZBgEIAEoAxITCgtidXp6d29yZF9pZBgFIAEoAxITCgtzY2hlbWFfdHlwZRgGIAEoBSJ7CghDaGVja0JveBIMCgR0ZXh0GAEgASgJEjwKBHR5cGUYAiABKA4yLi5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5DaGVja2JveFR5cGUSFQoNZGVmYXVsdF92YWx1ZRgDIAEoCBIMCgRzaG93GAQgASgIIm8KCkNoZWNrQm94VjISDAoEdGV4dBgBIAEoCRI8CgR0eXBlGAIgASgOMi4uYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuQ2hlY2tib3hUeXBlEhUKDWRlZmF1bHRfdmFsdWUYAyABKAgiggIKC0NsaWNrQnV0dG9uEhUKDXBvcnRyYWl0X3RleHQYASADKAkSFgoObGFuZHNjYXBlX3RleHQYAiADKAkSGwoTcG9ydHJhaXRfdGV4dF9mb2N1cxgDIAMoCRIcChRsYW5kc2NhcGVfdGV4dF9mb2N1cxgEIAMoCRJBCgtyZW5kZXJfdHlwZRgFIAEoDjIsLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLlJlbmRlclR5cGUSDAoEc2hvdxgGIAEoCBI4CgZidWJibGUYByABKAsyKC5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5CdWJibGUiswIKDUNsaWNrQnV0dG9uVjISFQoNcG9ydHJhaXRfdGV4dBgBIAMoCRIWCg5sYW5kc2NhcGVfdGV4dBgCIAMoCRIbChNwb3J0cmFpdF90ZXh0X2ZvY3VzGAMgAygJEhwKFGxhbmRzY2FwZV90ZXh0X2ZvY3VzGAQgAygJEkEKC3JlbmRlcl90eXBlGAUgASgOMiwuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuUmVuZGVyVHlwZRIXCg90ZXh0X2lucHV0X3Bvc3QYBiABKAgSFQoNZXhwb3N1cmVfb25jZRgHIAEoCBJFCg1leHBvc3VyZV90eXBlGAggASgOMi4uYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuRXhwb3N1cmVUeXBlIksKB0NvbW1hbmQSQAoLY29tbWFuZF9kbXMYASADKAsyKy5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5Db21tYW5kRG0i5gEKCUNvbW1hbmREbRIKCgJpZBgBIAEoAxILCgNvaWQYAiABKAMSCwoDbWlkGAMgASgDEg8KB2NvbW1hbmQYBCABKAkSDwoHY29udGVudBgFIAEoCRIQCghwcm9ncmVzcxgGIAEoBRINCgVjdGltZRgHIAEoCRINCgVtdGltZRgIIAEoCRINCgVleHRyYRgJIAEoCRINCgVpZFN0chgKIAEoCRIMCgR0eXBlGAsgASgFEhMKC2F1dG9fY3JlYXRlGAwgASgIEhIKCmNvdW50X2Rvd24YDSABKAUSDAoEYXR0chgOIAEoBSJQCg1EYW5tYWt1QUlGbGFnEj8KCGRtX2ZsYWdzGAEgAygLMi0uYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuRGFubWFrdUZsYWciiwMKC0Rhbm1ha3VFbGVtEgoKAmlkGAEgASgDEhAKCHByb2dyZXNzGAIgASgFEgwKBG1vZGUYAyABKAUSEAoIZm9udHNpemUYBCABKAUSPwoFY29sb3IYBSABKA4yMC5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5EbUNvbG9yZnVsVHlwZRIQCghtaWRfaGFzaBgGIAEoCRIPCgdjb250ZW50GAcgASgJEg0KBWN0aW1lGAggASgDEg4KBndlaWdodBgJIAEoBRIOCgZhY3Rpb24YCiABKAkSDAoEcG9vbBgLIAEoBRIOCgZpZF9zdHIYDCABKAkSDAoEYXR0chgNIAEoBRIRCglhbmltYXRpb24YFiABKAkSDQoFZXh0cmEYFyABKAkSQgoIY29sb3JmdWwYGCABKA4yMC5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5EbUNvbG9yZnVsVHlwZRIMCgR0eXBlGBkgASgFEgsKA29pZBgaIAEoAyIpCgtEYW5tYWt1RmxhZxIMCgRkbWlkGAEgASgDEgwKBGZsYWcYAiABKAUiSwoRRGFubWFrdUZsYWdDb25maWcSEAoIcmVjX2ZsYWcYASABKAUSEAoIcmVjX3RleHQYAiABKAkSEgoKcmVjX3N3aXRjaBgDIAEoBSKLBwoYRGFubXVEZWZhdWx0UGxheWVyQ29uZmlnEikKIXBsYXllcl9kYW5tYWt1X3VzZV9kZWZhdWx0X2NvbmZpZxgBIAEoCBIsCiRwbGF5ZXJfZGFubWFrdV9haV9yZWNvbW1lbmRlZF9zd2l0Y2gYBCABKAgSKwojcGxheWVyX2Rhbm1ha3VfYWlfcmVjb21tZW5kZWRfbGV2ZWwYBSABKAUSHwoXcGxheWVyX2Rhbm1ha3VfYmxvY2t0b3AYBiABKAgSIgoacGxheWVyX2Rhbm1ha3VfYmxvY2tzY3JvbGwYByABKAgSIgoacGxheWVyX2Rhbm1ha3VfYmxvY2tib3R0b20YCCABKAgSJAoccGxheWVyX2Rhbm1ha3VfYmxvY2tjb2xvcmZ1bBgJIAEoCBIiChpwbGF5ZXJfZGFubWFrdV9ibG9ja3JlcGVhdBgKIAEoCBIjChtwbGF5ZXJfZGFubWFrdV9ibG9ja3NwZWNpYWwYCyABKAgSHgoWcGxheWVyX2Rhbm1ha3Vfb3BhY2l0eRgMIAEoAhIkChxwbGF5ZXJfZGFubWFrdV9zY2FsaW5nZmFjdG9yGA0gASgCEh0KFXBsYXllcl9kYW5tYWt1X2RvbWFpbhgOIAEoAhIcChRwbGF5ZXJfZGFubWFrdV9zcGVlZBgPIAEoBRIkChxpbmxpbmVfcGxheWVyX2Rhbm1ha3Vfc3dpdGNoGBAgASgIEikKIXBsYXllcl9kYW5tYWt1X3Nlbmlvcl9tb2RlX3N3aXRjaBgRIAEoBRIuCiZwbGF5ZXJfZGFubWFrdV9haV9yZWNvbW1lbmRlZF9sZXZlbF92MhgSIAEoBRKYAQoqcGxheWVyX2Rhbm1ha3VfYWlfcmVjb21tZW5kZWRfbGV2ZWxfdjJfbWFwGBMgAygLMmQuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuRGFubXVEZWZhdWx0UGxheWVyQ29uZmlnLlBsYXllckRhbm1ha3VBaVJlY29tbWVuZGVkTGV2ZWxWMk1hcEVudHJ5EiUKHXBsYXllcl9kYW5tYWt1X2VuYWJsZV9oZXJkX2RtGBQgASgIGksKKVBsYXllckRhbm1ha3VBaVJlY29tbWVuZGVkTGV2ZWxWMk1hcEVudHJ5EgsKA2tleRgBIAEoBRINCgV2YWx1ZRgCIAEoBToCOAEi7AkKEURhbm11UGxheWVyQ29uZmlnEh0KFXBsYXllcl9kYW5tYWt1X3N3aXRjaBgBIAEoCBIiChpwbGF5ZXJfZGFubWFrdV9zd2l0Y2hfc2F2ZRgCIAEoCBIpCiFwbGF5ZXJfZGFubWFrdV91c2VfZGVmYXVsdF9jb25maWcYAyABKAgSLAokcGxheWVyX2Rhbm1ha3VfYWlfcmVjb21tZW5kZWRfc3dpdGNoGAQgASgIEisKI3BsYXllcl9kYW5tYWt1X2FpX3JlY29tbWVuZGVkX2xldmVsGAUgASgFEh8KF3BsYXllcl9kYW5tYWt1X2Jsb2NrdG9wGAYgASgIEiIKGnBsYXllcl9kYW5tYWt1X2Jsb2Nrc2Nyb2xsGAcgASgIEiIKGnBsYXllcl9kYW5tYWt1X2Jsb2NrYm90dG9tGAggASgIEiQKHHBsYXllcl9kYW5tYWt1X2Jsb2NrY29sb3JmdWwYCSABKAgSIgoacGxheWVyX2Rhbm1ha3VfYmxvY2tyZXBlYXQYCiABKAgSIwobcGxheWVyX2Rhbm1ha3VfYmxvY2tzcGVjaWFsGAsgASgIEh4KFnBsYXllcl9kYW5tYWt1X29wYWNpdHkYDCABKAISJAoccGxheWVyX2Rhbm1ha3Vfc2NhbGluZ2ZhY3RvchgNIAEoAhIdChVwbGF5ZXJfZGFubWFrdV9kb21haW4YDiABKAISHAoUcGxheWVyX2Rhbm1ha3Vfc3BlZWQYDyABKAUSJgoecGxheWVyX2Rhbm1ha3VfZW5hYmxlYmxvY2tsaXN0GBAgASgIEiQKHGlubGluZV9wbGF5ZXJfZGFubWFrdV9zd2l0Y2gYESABKAgSJAocaW5saW5lX3BsYXllcl9kYW5tYWt1X2NvbmZpZxgSIAEoBRImCh5wbGF5ZXJfZGFubWFrdV9pb3Nfc3dpdGNoX3NhdmUYEyABKAUSKQohcGxheWVyX2Rhbm1ha3Vfc2VuaW9yX21vZGVfc3dpdGNoGBQgASgFEi4KJnBsYXllcl9kYW5tYWt1X2FpX3JlY29tbWVuZGVkX2xldmVsX3YyGBUgASgFEpEBCipwbGF5ZXJfZGFubWFrdV9haV9yZWNvbW1lbmRlZF9sZXZlbF92Ml9tYXAYFiADKAsyXS5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5EYW5tdVBsYXllckNvbmZpZy5QbGF5ZXJEYW5tYWt1QWlSZWNvbW1lbmRlZExldmVsVjJNYXBFbnRyeRIlCh1wbGF5ZXJfZGFubWFrdV9lbmFibGVfaGVyZF9kbRgXIAEoCBImCh5wbGF5ZXJfZGFubWFrdV9ibG9ja3RvcF9ib3R0b20YGCABKAgSIAoYcGxheWVyX2Rhbm1ha3VfZG9tYWluX3YyGBkgASgFEh4KFnBsYXllcl9kYW5tYWt1X2RlbnNpdHkYGiABKAUSJQodcGxheWVyX2Rhbm1ha3Vfc3VidGl0bGVfcHJvb2YYGyABKAgSIwobcGxheWVyX2Rhbm1ha3VfcGVvcGxlX3Byb29mGBwgASgIGksKKVBsYXllckRhbm1ha3VBaVJlY29tbWVuZGVkTGV2ZWxWMk1hcEVudHJ5EgsKA2tleRgBIAEoBRINCgV2YWx1ZRgCIAEoBToCOAEiMAoWRGFubXVQbGF5ZXJDb25maWdQYW5lbBIWCg5zZWxlY3Rpb25fdGV4dBgBIAEoCSJLChhEYW5tdVBsYXllckR5bmFtaWNDb25maWcSEAoIcHJvZ3Jlc3MYASABKAUSHQoVcGxheWVyX2Rhbm1ha3VfZG9tYWluGA4gASgCIpADChVEYW5tdVBsYXllclZpZXdDb25maWcSYQodZGFubXVrdV9kZWZhdWx0X3BsYXllcl9jb25maWcYASABKAsyOi5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5EYW5tdURlZmF1bHRQbGF5ZXJDb25maWcSUgoVZGFubXVrdV9wbGF5ZXJfY29uZmlnGAIgASgLMjMuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuRGFubXVQbGF5ZXJDb25maWcSYQodZGFubXVrdV9wbGF5ZXJfZHluYW1pY19jb25maWcYAyADKAsyOi5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5EYW5tdVBsYXllckR5bmFtaWNDb25maWcSXQobZGFubXVrdV9wbGF5ZXJfY29uZmlnX3BhbmVsGAQgASgLMjguYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuRGFubXVQbGF5ZXJDb25maWdQYW5lbCKZBQoURGFubXVXZWJQbGF5ZXJDb25maWcSEQoJZG1fc3dpdGNoGAEgASgIEhEKCWFpX3N3aXRjaBgCIAEoCBIQCghhaV9sZXZlbBgDIAEoBRIQCghibG9ja3RvcBgEIAEoCBITCgtibG9ja3Njcm9sbBgFIAEoCBITCgtibG9ja2JvdHRvbRgGIAEoCBISCgpibG9ja2NvbG9yGAcgASgIEhQKDGJsb2Nrc3BlY2lhbBgIIAEoCBIUCgxwcmV2ZW50c2hhZGUYCSABKAgSDQoFZG1hc2sYCiABKAgSDwoHb3BhY2l0eRgLIAEoAhIOCgZkbWFyZWEYDCABKAUSEQoJc3BlZWRwbHVzGA0gASgCEhAKCGZvbnRzaXplGA4gASgCEhIKCnNjcmVlbnN5bmMYDyABKAgSEQoJc3BlZWRzeW5jGBAgASgIEhIKCmZvbnRmYW1pbHkYESABKAkSDAoEYm9sZBgSIAEoCBISCgpmb250Ym9yZGVyGBMgASgFEhEKCWRyYXdfdHlwZRgUIAEoCRIaChJzZW5pb3JfbW9kZV9zd2l0Y2gYFSABKAUSEwoLYWlfbGV2ZWxfdjIYFiABKAUSYQoPYWlfbGV2ZWxfdjJfbWFwGBcgAygLMkguYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuRGFubXVXZWJQbGF5ZXJDb25maWcuQWlMZXZlbFYyTWFwRW50cnkSFwoPYmxvY2t0b3BfYm90dG9tGBggASgIEhIKCmRtX2FyZWFfdjIYGSABKAUSEgoKZG1fZGVuc2l0eRgaIAEoBRozChFBaUxldmVsVjJNYXBFbnRyeRILCgNrZXkYASABKAUSDQoFdmFsdWUYAiABKAU6AjgBIlkKCkRtQ29sb3JmdWwSPgoEdHlwZRgBIAEoDjIwLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLkRtQ29sb3JmdWxUeXBlEgsKA3NyYxgCIAEoCSJQCg9EbUV4cG9SZXBvcnRSZXESEgoKc2Vzc2lvbl9pZBgBIAEoCRILCgNvaWQYAiABKAMSDQoFZG1pZHMYAyABKAwSDQoFc3BtaWQYBCABKAkiEQoPRG1FeHBvUmVwb3J0UmVzIm0KCkRtSGVyZFZpZXcSGwoTZGlzcGxheV9oZXJkX2RtX251bRgBIAEoBRJCCghoZXJkX2RtcxgCIAMoCzIwLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLlZpZXdIZXJkRG1FbGVtIpYCCgpEbU1hc2tXYWxsEg0KBXN0YXJ0GAEgASgDEgsKA2VuZBgCIAEoAxIPCgdjb250ZW50GAMgASgJEk0KDGNvbnRlbnRfdHlwZRgEIAEoDjI3LmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLkRtTWFza1dhbGxDb250ZW50VHlwZRJFCghiaXpfdHlwZRgFIAEoDjIzLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLkRtTWFza1dhbGxCaXpUeXBlEkUKCGNvbnRlbnRzGAYgAygLMjMuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuRG1NYXNrV2FsbENvbnRlbnQiawoRRG1NYXNrV2FsbENvbnRlbnQSRQoEdHlwZRgBIAEoDjI3LmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLkRtTWFza1dhbGxDb250ZW50VHlwZRIPCgdjb250ZW50GAIgASgJIs0QChFEbVBsYXllckNvbmZpZ1JlcRIKCgJ0cxgBIAEoAxJFCgZzd2l0Y2gYAiABKAsyNS5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5QbGF5ZXJEYW5tYWt1U3dpdGNoEk4KC3N3aXRjaF9zYXZlGAMgASgLMjkuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuUGxheWVyRGFubWFrdVN3aXRjaFNhdmUSWwoSdXNlX2RlZmF1bHRfY29uZmlnGAQgASgLMj8uYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuUGxheWVyRGFubWFrdVVzZURlZmF1bHRDb25maWcSYQoVYWlfcmVjb21tZW5kZWRfc3dpdGNoGAUgASgLMkIuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuUGxheWVyRGFubWFrdUFpUmVjb21tZW5kZWRTd2l0Y2gSXwoUYWlfcmVjb21tZW5kZWRfbGV2ZWwYBiABKAsyQS5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5QbGF5ZXJEYW5tYWt1QWlSZWNvbW1lbmRlZExldmVsEkkKCGJsb2NrdG9wGAcgASgLMjcuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuUGxheWVyRGFubWFrdUJsb2NrdG9wEk8KC2Jsb2Nrc2Nyb2xsGAggASgLMjouYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuUGxheWVyRGFubWFrdUJsb2Nrc2Nyb2xsEk8KC2Jsb2NrYm90dG9tGAkgASgLMjouYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuUGxheWVyRGFubWFrdUJsb2NrYm90dG9tElMKDWJsb2NrY29sb3JmdWwYCiABKAsyPC5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5QbGF5ZXJEYW5tYWt1QmxvY2tjb2xvcmZ1bBJPCgtibG9ja3JlcGVhdBgLIAEoCzI6LmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLlBsYXllckRhbm1ha3VCbG9ja3JlcGVhdBJRCgxibG9ja3NwZWNpYWwYDCABKAsyOy5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5QbGF5ZXJEYW5tYWt1QmxvY2tzcGVjaWFsEkcKB29wYWNpdHkYDSABKAsyNi5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5QbGF5ZXJEYW5tYWt1T3BhY2l0eRJTCg1zY2FsaW5nZmFjdG9yGA4gASgLMjwuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuUGxheWVyRGFubWFrdVNjYWxpbmdmYWN0b3ISRQoGZG9tYWluGA8gASgLMjUuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuUGxheWVyRGFubWFrdURvbWFpbhJDCgVzcGVlZBgQIAEoCzI0LmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLlBsYXllckRhbm1ha3VTcGVlZBJXCg9lbmFibGVibG9ja2xpc3QYESABKAsyPi5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5QbGF5ZXJEYW5tYWt1RW5hYmxlYmxvY2tsaXN0El4KGWlubGluZVBsYXllckRhbm1ha3VTd2l0Y2gYEiABKAsyOy5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5JbmxpbmVQbGF5ZXJEYW5tYWt1U3dpdGNoElsKEnNlbmlvcl9tb2RlX3N3aXRjaBgTIAEoCzI/LmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLlBsYXllckRhbm1ha3VTZW5pb3JNb2RlU3dpdGNoEmQKF2FpX3JlY29tbWVuZGVkX2xldmVsX3YyGBQgASgLMkMuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuUGxheWVyRGFubWFrdUFpUmVjb21tZW5kZWRMZXZlbFYyElMKDmVuYWJsZV9oZXJkX2RtGBUgASgLMjsuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuUGxheWVyRGFubWFrdUVuYWJsZUhlcmREbRJWCg9ibG9ja3RvcF9ib3R0b20YFiABKAsyPS5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5QbGF5ZXJEYW5tYWt1QmxvY2t0b3BCb3R0b20SSgoJZG9tYWluX3YyGBcgASgLMjcuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuUGxheWVyRGFubWFrdURvbWFpblYyEkcKB2RlbnNpdHkYGCABKAsyNi5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5QbGF5ZXJEYW5tYWt1RGVuc2l0eRJUCg5zdWJ0aXRsZV9wcm9vZhgZIAEoCzI8LmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLlBsYXllckRhbm1ha3VTdWJ0aXRsZVByb29mElAKDHBlb3BsZV9wcm9vZhgaIAEoCzI6LmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLlBsYXllckRhbm1ha3VQZW9wbGVQcm9vZiIvCgtEbVNlZ0NvbmZpZxIRCglwYWdlX3NpemUYASABKAMSDQoFdG90YWwYAiABKAMikQIKEERtU2VnTW9iaWxlUmVwbHkSPAoFZWxlbXMYASADKAsyLS5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5EYW5tYWt1RWxlbRINCgVzdGF0ZRgCIAEoBRJACgdhaV9mbGFnGAMgASgLMi8uYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuRGFubWFrdUFJRmxhZxIVCg1zZWdtZW50X3J1bGVzGAQgAygDEkIKDGNvbG9yZnVsX3NyYxgFIAMoCzIsLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLkRtQ29sb3JmdWwSEwoLY29udGV4dF9zcmMYBiABKAkiygEKDkRtU2VnTW9iaWxlUmVxEgsKA3BpZBgBIAEoAxILCgNvaWQYAiABKAMSDAoEdHlwZRgDIAEoBRIVCg1zZWdtZW50X2luZGV4GAQgASgDEhYKDnRlZW5hZ2Vyc19tb2RlGAUgASgFEgoKAnBzGAYgASgDEgoKAnBlGAcgASgDEhEKCXB1bGxfbW9kZRgIIAEoBRISCgpmcm9tX3NjZW5lGAkgASgFEg0KBXNwbWlkGAogASgJEhMKC2NvbnRleHRfZXh0GAsgASgJIlwKDURtU2VnT3R0UmVwbHkSPAoFZWxlbXMYASADKAsyLS5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5EYW5tYWt1RWxlbRINCgVzdGF0ZRgCIAEoBSJMCgtEbVNlZ090dFJlcRILCgNwaWQYASABKAMSCwoDb2lkGAIgASgDEgwKBHR5cGUYAyABKAUSFQoNc2VnbWVudF9pbmRleBgEIAEoAyJdCg1EbVNlZ1NES1JlcGx5Eg4KBmNsb3NlZBgBIAEoCBI8CgVlbGVtcxgCIAMoCzItLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLkRhbm1ha3VFbGVtIkwKC0RtU2VnU0RLUmVxEgsKA3BpZBgBIAEoAxILCgNvaWQYAiABKAMSDAoEdHlwZRgDIAEoBRIVCg1zZWdtZW50X2luZGV4GAQgASgDIncKCURtU3ViVmlldxIMCgR0eXBlGAEgASgFEgsKA29pZBgCIAEoAxILCgNwaWQYAyABKAMSQgoLcG9zdF9wYW5lbDIYBCADKAsyLS5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5Qb3N0UGFuZWxWMiKhCQoLRG1WaWV3UmVwbHkSDgoGY2xvc2VkGAEgASgIEjkKBG1hc2sYAiABKAsyKy5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5WaWRlb01hc2sSQQoIc3VidGl0bGUYAyABKAsyLy5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5WaWRlb1N1YnRpdGxlEhMKC3NwZWNpYWxfZG1zGAQgAygJEkQKB2FpX2ZsYWcYBSABKAsyMy5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5EYW5tYWt1RmxhZ0NvbmZpZxJOCg1wbGF5ZXJfY29uZmlnGAYgASgLMjcuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuRGFubXVQbGF5ZXJWaWV3Q29uZmlnEhYKDnNlbmRfYm94X3N0eWxlGAcgASgFEg0KBWFsbG93GAggASgIEhEKCWNoZWNrX2JveBgJIAEoCBIaChJjaGVja19ib3hfc2hvd19tc2cYCiABKAkSGAoQdGV4dF9wbGFjZWhvbGRlchgLIAEoCRIZChFpbnB1dF9wbGFjZWhvbGRlchgMIAEoCRIdChVyZXBvcnRfZmlsdGVyX2NvbnRlbnQYDSADKAkSQQoLZXhwb19yZXBvcnQYDiABKAsyLC5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5FeHBvUmVwb3J0EkkKD2J1enp3b3JkX2NvbmZpZxgPIAEoCzIwLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLkJ1enp3b3JkQ29uZmlnEkIKC2V4cHJlc3Npb25zGBAgAygLMi0uYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuRXhwcmVzc2lvbnMSPwoKcG9zdF9wYW5lbBgRIAMoCzIrLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLlBvc3RQYW5lbBIVCg1hY3Rpdml0eV9tZXRhGBIgAygJEkIKC3Bvc3RfcGFuZWwyGBMgAygLMi0uYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuUG9zdFBhbmVsVjISQgoMZG1fbWFza193YWxsGBQgAygLMiwuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuRG1NYXNrV2FsbBI9CgdkbV9oZXJkGBUgASgLMiwuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuRG1IZXJkVmlldxI6Cgdjb21tYW5kGBYgASgLMikuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuQ29tbWFuZBIKCgJrdhgXIAEoCRI+CglzdWJfdmlld3MYGCADKAsyKy5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5EbVN1YlZpZXcSNgoDcW9lGBkgASgLMikuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuUW9lSW5mbyJtCglEbVZpZXdSZXESCwoDcGlkGAEgASgDEgsKA29pZBgCIAEoAxIMCgR0eXBlGAMgASgFEg0KBXNwbWlkGAQgASgJEhQKDGlzX2hhcmRfYm9vdBgFIAEoBRITCgtjb250ZXh0X2V4dBgGIAEoCSKBBgoORG1XZWJWaWV3UmVwbHkSDQoFc3RhdGUYASABKAUSDAoEdGV4dBgCIAEoCRIRCgl0ZXh0X3NpZGUYAyABKAkSPQoGZG1fc2dlGAQgASgLMi0uYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuRG1TZWdDb25maWcSQQoEZmxhZxgFIAEoCzIzLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLkRhbm1ha3VGbGFnQ29uZmlnEhMKC3NwZWNpYWxfZG1zGAYgAygJEhEKCWNoZWNrX2JveBgHIAEoCBINCgVjb3VudBgIIAEoAxJACgtjb21tYW5kX2RtcxgJIAMoCzIrLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLkNvbW1hbmREbRJNCg1wbGF5ZXJfY29uZmlnGAogASgLMjYuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuRGFubXVXZWJQbGF5ZXJDb25maWcSHQoVcmVwb3J0X2ZpbHRlcl9jb250ZW50GAsgAygJEkIKC2V4cHJlc3Npb25zGAwgAygLMi0uYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuRXhwcmVzc2lvbnMSPwoKcG9zdF9wYW5lbBgNIAMoCzIrLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLlBvc3RQYW5lbBIVCg1hY3Rpdml0eV9tZXRhGA4gAygJEkIKC3Bvc3RfcGFuZWwyGA8gAygLMi0uYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuUG9zdFBhbmVsVjISPgoJc3ViX3ZpZXdzGBAgAygLMisuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuRG1TdWJWaWV3EjYKA3FvZRgRIAEoCzIpLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLlFvZUluZm8iKgoKRXhwb1JlcG9ydBIcChRzaG91bGRfcmVwb3J0X2F0X2VuZBgBIAEoCCJkCgpFeHByZXNzaW9uEg8KB2tleXdvcmQYASADKAkSCwoDdXJsGAIgASgJEjgKBnBlcmlvZBgDIAMoCzIoLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLlBlcmlvZCJJCgtFeHByZXNzaW9ucxI6CgRkYXRhGAEgAygLMiwuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuRXhwcmVzc2lvbiIqChlJbmxpbmVQbGF5ZXJEYW5tYWt1U3dpdGNoEg0KBXZhbHVlGAEgASgIIicKBUxhYmVsEg0KBXRpdGxlGAEgASgJEg8KB2NvbnRlbnQYAiADKAkihwEKB0xhYmVsVjISDQoFdGl0bGUYASABKAkSDwoHY29udGVudBgCIAMoCRIVCg1leHBvc3VyZV9vbmNlGAMgASgIEkUKDWV4cG9zdXJlX3R5cGUYBCABKA4yLi5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5FeHBvc3VyZVR5cGUiJAoGUGVyaW9kEg0KBXN0YXJ0GAEgASgDEgsKA2VuZBgCIAEoAyIwCh9QbGF5ZXJEYW5tYWt1QWlSZWNvbW1lbmRlZExldmVsEg0KBXZhbHVlGAEgASgFIjIKIVBsYXllckRhbm1ha3VBaVJlY29tbWVuZGVkTGV2ZWxWMhINCgV2YWx1ZRgBIAEoBSIxCiBQbGF5ZXJEYW5tYWt1QWlSZWNvbW1lbmRlZFN3aXRjaBINCgV2YWx1ZRgBIAEoCCIpChhQbGF5ZXJEYW5tYWt1QmxvY2tib3R0b20SDQoFdmFsdWUYASABKAgiKwoaUGxheWVyRGFubWFrdUJsb2NrY29sb3JmdWwSDQoFdmFsdWUYASABKAgiKQoYUGxheWVyRGFubWFrdUJsb2NrcmVwZWF0Eg0KBXZhbHVlGAEgASgIIikKGFBsYXllckRhbm1ha3VCbG9ja3Njcm9sbBINCgV2YWx1ZRgBIAEoCCIqChlQbGF5ZXJEYW5tYWt1QmxvY2tzcGVjaWFsEg0KBXZhbHVlGAEgASgIIiYKFVBsYXllckRhbm1ha3VCbG9ja3RvcBINCgV2YWx1ZRgBIAEoCCIsChtQbGF5ZXJEYW5tYWt1QmxvY2t0b3BCb3R0b20SDQoFdmFsdWUYASABKAgiJQoUUGxheWVyRGFubWFrdURlbnNpdHkSDQoFdmFsdWUYASABKAUiJAoTUGxheWVyRGFubWFrdURvbWFpbhINCgV2YWx1ZRgBIAEoAiImChVQbGF5ZXJEYW5tYWt1RG9tYWluVjISDQoFdmFsdWUYASABKAUiKgoZUGxheWVyRGFubWFrdUVuYWJsZUhlcmREbRINCgV2YWx1ZRgBIAEoCCItChxQbGF5ZXJEYW5tYWt1RW5hYmxlYmxvY2tsaXN0Eg0KBXZhbHVlGAEgASgIIiUKFFBsYXllckRhbm1ha3VPcGFjaXR5Eg0KBXZhbHVlGAEgASgCIikKGFBsYXllckRhbm1ha3VQZW9wbGVQcm9vZhINCgV2YWx1ZRgBIAEoCCIrChpQbGF5ZXJEYW5tYWt1U2NhbGluZ2ZhY3RvchINCgV2YWx1ZRgBIAEoAiIuCh1QbGF5ZXJEYW5tYWt1U2VuaW9yTW9kZVN3aXRjaBINCgV2YWx1ZRgBIAEoBSIjChJQbGF5ZXJEYW5tYWt1U3BlZWQSDQoFdmFsdWUYASABKAUiKwoaUGxheWVyRGFubWFrdVN1YnRpdGxlUHJvb2YSDQoFdmFsdWUYASABKAgiOAoTUGxheWVyRGFubWFrdVN3aXRjaBINCgV2YWx1ZRgBIAEoCBISCgpjYW5faWdub3JlGAIgASgIIigKF1BsYXllckRhbm1ha3VTd2l0Y2hTYXZlEg0KBXZhbHVlGAEgASgIIi4KHVBsYXllckRhbm1ha3VVc2VEZWZhdWx0Q29uZmlnEg0KBXZhbHVlGAEgASgIIowDCglQb3N0UGFuZWwSDQoFc3RhcnQYASABKAMSCwoDZW5kGAIgASgDEhAKCHByaW9yaXR5GAMgASgDEg4KBmJpel9pZBgEIAEoAxJECghiaXpfdHlwZRgFIAEoDjIyLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLlBvc3RQYW5lbEJpelR5cGUSQwoMY2xpY2tfYnV0dG9uGAYgASgLMi0uYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuQ2xpY2tCdXR0b24SPwoKdGV4dF9pbnB1dBgHIAEoCzIrLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLlRleHRJbnB1dBI9CgljaGVja19ib3gYCCABKAsyKi5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5DaGVja0JveBI2CgV0b2FzdBgJIAEoCzInLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLlRvYXN0Iq0ECgtQb3N0UGFuZWxWMhINCgVzdGFydBgBIAEoAxILCgNlbmQYAiABKAMSRAoIYml6X3R5cGUYAyABKA4yMi5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5Qb3N0UGFuZWxCaXpUeXBlEkUKDGNsaWNrX2J1dHRvbhgEIAEoCzIvLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLkNsaWNrQnV0dG9uVjISQQoKdGV4dF9pbnB1dBgFIAEoCzItLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLlRleHRJbnB1dFYyEj8KCWNoZWNrX2JveBgGIAEoCzIsLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLkNoZWNrQm94VjISOAoFdG9hc3QYByABKAsyKS5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5Ub2FzdFYyEjoKBmJ1YmJsZRgIIAEoCzIqLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLkJ1YmJsZVYyEjgKBWxhYmVsGAkgASgLMikuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuTGFiZWxWMhJBCgtwb3N0X3N0YXR1cxgKIAEoDjIsLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLlBvc3RTdGF0dXMiFwoHUW9lSW5mbxIMCgRpbmZvGAEgASgJIikKCFJlc3BvbnNlEgwKBGNvZGUYASABKAUSDwoHbWVzc2FnZRgCIAEoCSL5AgoMU3VidGl0bGVJdGVtEgoKAmlkGAEgASgDEg4KBmlkX3N0chgCIAEoCRILCgNsYW4YAyABKAkSDwoHbGFuX2RvYxgEIAEoCRIUCgxzdWJ0aXRsZV91cmwYBSABKAkSOgoGYXV0aG9yGAYgASgLMiouYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuVXNlckluZm8SPAoEdHlwZRgHIAEoDjIuLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLlN1YnRpdGxlVHlwZRIVCg1sYW5fZG9jX2JyaWVmGAggASgJEkEKB2FpX3R5cGUYCSABKA4yMC5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5TdWJ0aXRsZUFpVHlwZRJFCglhaV9zdGF0dXMYCiABKA4yMi5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5TdWJ0aXRsZUFpU3RhdHVzIugCCglUZXh0SW5wdXQSHAoUcG9ydHJhaXRfcGxhY2Vob2xkZXIYASADKAkSHQoVbGFuZHNjYXBlX3BsYWNlaG9sZGVyGAIgAygJEkEKC3JlbmRlcl90eXBlGAMgASgOMiwuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuUmVuZGVyVHlwZRIYChBwbGFjZWhvbGRlcl9wb3N0GAQgASgIEgwKBHNob3cYBSABKAgSOAoGYXZhdGFyGAYgAygLMiguYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuQXZhdGFyEkEKC3Bvc3Rfc3RhdHVzGAcgASgOMiwuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuUG9zdFN0YXR1cxI2CgVsYWJlbBgIIAEoCzInLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLkxhYmVsIvsBCgtUZXh0SW5wdXRWMhIcChRwb3J0cmFpdF9wbGFjZWhvbGRlchgBIAMoCRIdChVsYW5kc2NhcGVfcGxhY2Vob2xkZXIYAiADKAkSQQoLcmVuZGVyX3R5cGUYAyABKA4yLC5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5SZW5kZXJUeXBlEhgKEHBsYWNlaG9sZGVyX3Bvc3QYBCABKAgSOAoGYXZhdGFyGAUgAygLMiguYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuQXZhdGFyEhgKEHRleHRfaW5wdXRfbGltaXQYBiABKAUibwoFVG9hc3QSDAoEdGV4dBgBIAEoCRIQCghkdXJhdGlvbhgCIAEoBRIMCgRzaG93GAMgASgIEjgKBmJ1dHRvbhgEIAEoCzIoLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLkJ1dHRvbiJiCg1Ub2FzdEJ1dHRvblYyEgwKBHRleHQYASABKAkSQwoGYWN0aW9uGAIgASgOMjMuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuVG9hc3RGdW5jdGlvblR5cGUicwoHVG9hc3RWMhIMCgR0ZXh0GAEgASgJEhAKCGR1cmF0aW9uGAIgASgFEkgKD3RvYXN0X2J1dHRvbl92MhgDIAEoCzIvLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLlRvYXN0QnV0dG9uVjIiXAoIVXNlckluZm8SCwoDbWlkGAEgASgDEgwKBG5hbWUYAiABKAkSCwoDc2V4GAMgASgJEgwKBGZhY2UYBCABKAkSDAoEc2lnbhgFIAEoCRIMCgRyYW5rGAYgASgFIlMKCVZpZGVvTWFzaxILCgNjaWQYASABKAMSDAoEcGxhdBgCIAEoBRILCgNmcHMYAyABKAUSDAoEdGltZRgEIAEoAxIQCghtYXNrX3VybBgFIAEoCSJwCg1WaWRlb1N1YnRpdGxlEgsKA2xhbhgBIAEoCRIPCgdsYW5fZG9jGAIgASgJEkEKCXN1YnRpdGxlcxgDIAMoCzIuLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLlN1YnRpdGxlSXRlbSKSAQoOVmlld0hlcmREbUVsZW0SEAoIaGVyZF9tc2cYASABKAkSFgoOaGVyZF9zdGFydF9jbnQYAiABKAUSFAoMaGVyZF9lbmRfY250GAMgASgFEhIKCnJlZ2V4X3J1bGUYBCABKAkSFgoOc3RhcnRfcHJvZ3Jlc3MYBSABKAUSFAoMZW5kX3Byb2dyZXNzGAYgASgFKjMKCkF2YXRhclR5cGUSEgoOQXZhdGFyVHlwZU5vbmUQABIRCg1BdmF0YXJUeXBlTkZUEAEqWQoKQnViYmxlVHlwZRISCg5CdWJibGVUeXBlTm9uZRAAEhkKFUJ1YmJsZVR5cGVDbGlja0J1dHRvbhABEhwKGEJ1YmJsZVR5cGVEbVNldHRpbmdQYW5lbBACKlgKDENoZWNrYm94VHlwZRIUChBDaGVja2JveFR5cGVOb25lEAASGQoVQ2hlY2tib3hUeXBlRW5jb3VyYWdlEAESFwoTQ2hlY2tib3hUeXBlQ29sb3JETRACKjUKDkRtQ29sb3JmdWxUeXBlEgwKCE5vbmVUeXBlEAASFQoPVmlwR3JhZHVhbENvbG9yEOHUAypgChFEbU1hc2tXYWxsQml6VHlwZRILCgdVbmtub3duEAASBwoDT0dWEAESCgoGQml6UGljEAISCAoETXV0ZRADEgoKBlJlY29yZBAEEgkKBUNsb3VkEAUSCAoEQUlHQxAGKnYKFURtTWFza1dhbGxDb250ZW50VHlwZRIgChxEbU1hc2tXYWxsQ29udGVudFR5cGVVbmtub3duEAASHQoZRG1NYXNrV2FsbENvbnRlbnRUeXBlVGV4dBABEhwKGERtTWFza1dhbGxDb250ZW50VHlwZVBpYxACKjwKDEV4cG9zdXJlVHlwZRIUChBFeHBvc3VyZVR5cGVOb25lEAASFgoSRXhwb3N1cmVUeXBlRE1TZW5kEAEqgwIKEFBvc3RQYW5lbEJpelR5cGUSGAoUUG9zdFBhbmVsQml6VHlwZU5vbmUQABIdChlQb3N0UGFuZWxCaXpUeXBlRW5jb3VyYWdlEAESGwoXUG9zdFBhbmVsQml6VHlwZUNvbG9yRE0QAhIZChVQb3N0UGFuZWxCaXpUeXBlTkZURE0QAxIdChlQb3N0UGFuZWxCaXpUeXBlRnJhZ0Nsb3NlEAQSHQoZUG9zdFBhbmVsQml6VHlwZVJlY29tbWVuZBAFEhwKGFBvc3RQYW5lbEJpelR5cGVQbG90TGVhaxAGEiIKHlBvc3RQYW5lbEJpelR5cGVBbnRpSGFyYXNzbWVudBAHKjgKClBvc3RTdGF0dXMSFAoQUG9zdFN0YXR1c05vcm1hbBAAEhQKEFBvc3RTdGF0dXNDbG9zZWQQASpOCgpSZW5kZXJUeXBlEhIKDlJlbmRlclR5cGVOb25lEAASFAoQUmVuZGVyVHlwZVNpbmdsZRABEhYKElJlbmRlclR5cGVSb3RhdGlvbhACKjYKEFN1YnRpdGxlQWlTdGF0dXMSCAoETm9uZRAAEgwKCEV4cG9zdXJlEAESCgoGQXNzaXN0EAIqKwoOU3VidGl0bGVBaVR5cGUSCgoGTm9ybWFsEAASDQoJVHJhbnNsYXRlEAEqHgoMU3VidGl0bGVUeXBlEgYKAkNDEAASBgoCQUkQASpOChFUb2FzdEZ1bmN0aW9uVHlwZRIZChVUb2FzdEZ1bmN0aW9uVHlwZU5vbmUQABIeChpUb2FzdEZ1bmN0aW9uVHlwZVBvc3RQYW5lbBABMqAFCgJETRJzCgtEbVNlZ01vYmlsZRIwLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLkRtU2VnTW9iaWxlUmVxGjIuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuRG1TZWdNb2JpbGVSZXBseRJkCgZEbVZpZXcSKy5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5EbVZpZXdSZXEaLS5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5EbVZpZXdSZXBseRJxCg5EbVBsYXllckNvbmZpZxIzLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLkRtUGxheWVyQ29uZmlnUmVxGiouYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuUmVzcG9uc2USagoIRG1TZWdPdHQSLS5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5EbVNlZ090dFJlcRovLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLkRtU2VnT3R0UmVwbHkSagoIRG1TZWdTREsSLS5iaWxpYmlsaS5jb21tdW5pdHkuc2VydmljZS5kbS52MS5EbVNlZ1NES1JlcRovLmJpbGliaWxpLmNvbW11bml0eS5zZXJ2aWNlLmRtLnYxLkRtU2VnU0RLUmVwbHkSdAoMRG1FeHBvUmVwb3J0EjEuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuRG1FeHBvUmVwb3J0UmVxGjEuYmlsaWJpbGkuY29tbXVuaXR5LnNlcnZpY2UuZG0udjEuRG1FeHBvUmVwb3J0UmVzYgZwcm90bzM");
32967
33065
  const DmSegMobileReplySchema = /*@__PURE__*/ message_messageDesc(file_bili_dm, 30);
32968
33066
  const DmWebViewReplySchema = /*@__PURE__*/ message_messageDesc(file_bili_dm, 39);
@@ -33030,7 +33128,7 @@ and limitations under the License.
33030
33128
  function createDMID(dan, slice = 8) {
33031
33129
  return new ht('SHA3-256', 'TEXT').update(`${dan.content}|${dan.mode}|${dan.pool}|${dan.platform}|${dan.extraStr}|${dan.senderID}|${UniDM.transCtime(dan.ctime).toISOString()}`).getHash('HEX').slice(0, slice);
33032
33130
  }
33033
- var index_min_Buffer = __nested_webpack_require_527809__("../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.js")["Buffer"];
33131
+ var index_min_Buffer = __nested_webpack_require_527823__("../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.js")["Buffer"];
33034
33132
  function _ts_decorate(decorators, target, key, desc) {
33035
33133
  var c = arguments.length, r = c < 3 ? target : null === desc ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
33036
33134
  if ("object" == typeof Reflect && "function" == typeof Reflect.decorate) r = Reflect.decorate(decorators, target, key, desc);
@@ -33040,7 +33138,7 @@ and limitations under the License.
33040
33138
  function _ts_metadata(k, v) {
33041
33139
  if ("object" == typeof Reflect && "function" == typeof Reflect.metadata) return Reflect.metadata(k, v);
33042
33140
  }
33043
- const dm_gen_JSON = json_bigint_default()({
33141
+ const dm_gen_JSON = json_bigint({
33044
33142
  useNativeBigInt: true
33045
33143
  });
33046
33144
  function cleanEmptyObjects(obj) {
@@ -33085,7 +33183,8 @@ and limitations under the License.
33085
33183
  }({});
33086
33184
  const DMAttrUtils = {
33087
33185
  fromBin (bin = 0, format) {
33088
- const array = toBits(bin), attr = [];
33186
+ const array = toBits(bin);
33187
+ const attr = [];
33089
33188
  if ('bili' === format) {
33090
33189
  if (array[0]) attr.push("Protect");
33091
33190
  if (array[1]) attr.push("FromLive");
@@ -33118,16 +33217,16 @@ and limitations under the License.
33118
33217
  }({});
33119
33218
  const ExtraDanUniChapterTypeDict = {
33120
33219
  chs: {
33121
- ch: "\u5176\u5B83\u7247\u6BB5",
33122
- rev: "\u56DE\u987E",
33123
- op: "\u7247\u5934",
33124
- int: "\u4E2D\u573A",
33125
- ed: "\u7247\u5C3E",
33126
- prvw: "\u9884\u544A",
33127
- cut: "\u5220\u51CF",
33128
- dup: "\u8865\u6863",
33129
- biz: "\u5546\u4E1A\u5E7F\u544A",
33130
- promo: "\u63A8\u5E7F"
33220
+ ch: '其它片段',
33221
+ rev: '回顾',
33222
+ op: '片头',
33223
+ int: '中场',
33224
+ ed: '片尾',
33225
+ prvw: '预告',
33226
+ cut: '删减',
33227
+ dup: '补档',
33228
+ biz: '商业广告',
33229
+ promo: '推广'
33131
33230
  }
33132
33231
  };
33133
33232
  var dm_gen_ExtraDanUniChapterAction = /*#__PURE__*/ function(ExtraDanUniChapterAction) {
@@ -33213,7 +33312,8 @@ and limitations under the License.
33213
33312
  isSameAs(dan, options) {
33214
33313
  if (4 === this.mode || 4 === dan.mode) return false;
33215
33314
  if (!options?.skipDanuniMerge && (this.extra.danuni?.merge || dan.extra.danuni?.merge)) return false;
33216
- const isSame = (k)=>this[k] === dan[k], checks = [
33315
+ const isSame = (k)=>this[k] === dan[k];
33316
+ const checks = [
33217
33317
  'SOID',
33218
33318
  'content',
33219
33319
  'mode',
@@ -33223,22 +33323,29 @@ and limitations under the License.
33223
33323
  return checks;
33224
33324
  }
33225
33325
  minify() {
33226
- const def = UniDM.create(), dan = UniDM.create(this);
33227
- for(const key in dan){
33228
- const k = key, v = dan[k];
33229
- if ('SOID' !== key) if (v) if (v === def[k]) delete dan[k];
33230
- else {
33231
- if ('attr' === k && Array.isArray(v) && 0 === v.length) delete dan[k];
33232
- if ('extraStr' === k && '{}' === v) delete dan[k];
33326
+ const def = UniDM.create();
33327
+ const dan = UniDM.create(this);
33328
+ const shouldKeep = (key, value)=>{
33329
+ if ('SOID' === key) return true;
33330
+ if (null == value) return false;
33331
+ if (value === def[key]) return false;
33332
+ if ('attr' === key && Array.isArray(value) && 0 === value.length) return false;
33333
+ if ('extraStr' === key && '{}' === value) return false;
33334
+ return true;
33335
+ };
33336
+ const result = {
33337
+ SOID: dan.SOID
33338
+ };
33339
+ for (const key of Object.keys(dan)){
33340
+ const value = dan[key];
33341
+ if (shouldKeep(key, value)) {
33342
+ if ('SOID' === key) continue;
33343
+ Reflect.set(result, key, value);
33233
33344
  }
33234
- else delete dan[k];
33235
33345
  }
33236
- return dm_gen_JSON.parse(dm_gen_JSON.stringify(dan));
33346
+ return result;
33237
33347
  }
33238
- downgradeAdvcancedDan({ include, exclude, cleanExtra = false } = {
33239
- include: [],
33240
- exclude: []
33241
- }) {
33348
+ downgradeAdvcancedDan({ include, exclude, cleanExtra = false } = {}) {
33242
33349
  if (!this.extra) return this;
33243
33350
  {
33244
33351
  if (!include) include = [];
@@ -33253,16 +33360,16 @@ and limitations under the License.
33253
33360
  clone.content = `${this.content} x${merge.count}`;
33254
33361
  } else if (danuni.chapter) {
33255
33362
  const chapter = danuni.chapter;
33256
- if ("cut" === chapter.type) clone.content = `[\u{63D0}\u{793A}]${clone.platform}\u{6E90}${ExtraDanUniChapterTypeDict.chs[chapter.type]}\u{4E86}${chapter.duration}\u{79D2}`;
33257
- else if ("dup" === chapter.type) clone.content = `[\u{63D0}\u{793A}(${ExtraDanUniChapterTypeDict.chs[chapter.type]})]${clone.platform}\u{6E90}-${chapter.duration}\u{79D2}`;
33258
- else clone.content = `[\u{7A7A}\u{964D}(${ExtraDanUniChapterTypeDict.chs[chapter.type]})]${hh_mm_ss_default().fromS(clone.progress + chapter.duration)}`;
33363
+ if ("cut" === chapter.type) clone.content = `[提示]${clone.platform}源${ExtraDanUniChapterTypeDict.chs[chapter.type]}了${chapter.duration}秒`;
33364
+ else if ("dup" === chapter.type) clone.content = `[提示(${ExtraDanUniChapterTypeDict.chs[chapter.type]})]${clone.platform}源-${chapter.duration}秒`;
33365
+ else clone.content = `[空降(${ExtraDanUniChapterTypeDict.chs[chapter.type]})]${hh_mm_ss.fromS(clone.progress + chapter.duration)}`;
33259
33366
  }
33260
33367
  } else if (check('bili') && clone.extra.bili) {
33261
33368
  const bili = clone.extra.bili;
33262
- if (7 === bili.mode && bili.adv) clone.content = `[B\u{7AD9}\u{9AD8}\u{7EA7}\u{5F39}\u{5E55}]${dm_gen_JSON.parse(bili.adv)[4] || ''}`;
33369
+ if (7 === bili.mode && bili.adv) clone.content = `[B站高级弹幕]${dm_gen_JSON.parse(bili.adv)[4] || ''}`;
33263
33370
  else if (bili.command) {
33264
33371
  const command = bili.command;
33265
- clone.content = `[B\u{7AD9}\u{6307}\u{4EE4}\u{5F39}\u{5E55}]${command.content}`;
33372
+ clone.content = `[B站指令弹幕]${command.content}`;
33266
33373
  clone.fontsize = 36;
33267
33374
  }
33268
33375
  }
@@ -33330,13 +33437,15 @@ and limitations under the License.
33330
33437
  if (args.oid && !cid) cid = args.oid;
33331
33438
  const SOID = recSOID || `def_${platform_PlatformVideoSource.Bilibili}+${id_gen_UniID.fromBili({
33332
33439
  cid
33333
- })}`, senderID = IsEmail_isEmail(args.midHash, {
33440
+ })}`;
33441
+ const senderID = IsEmail_isEmail(args.midHash, {
33334
33442
  require_tld: false
33335
33443
  }) ? args.midHash : id_gen_UniID.fromBili({
33336
33444
  midHash: args.midHash
33337
33445
  });
33338
33446
  let mode = 0;
33339
- const pool = args.pool, extra = {
33447
+ const pool = args.pool;
33448
+ const extra = {
33340
33449
  bili: {
33341
33450
  mode: args.mode,
33342
33451
  pool: args.pool,
@@ -33375,7 +33484,7 @@ and limitations under the License.
33375
33484
  mode,
33376
33485
  senderID: senderID.toString(),
33377
33486
  ctime: this.transCtime(args.ctime, 's'),
33378
- weight: args.weight ? args.weight : 3 === pool ? 1 : 0,
33487
+ weight: args.weight || (3 === pool ? 1 : 0),
33379
33488
  pool,
33380
33489
  attr: DMAttrUtils.fromBin(args.attr, platform_PlatformVideoSource.Bilibili),
33381
33490
  platform: platform_PlatformVideoSource.Bilibili,
@@ -33439,7 +33548,8 @@ and limitations under the License.
33439
33548
  if (args.oid && !cid) cid = args.oid;
33440
33549
  const SOID = `def_${platform_PlatformVideoSource.Bilibili}+${id_gen_UniID.fromBili({
33441
33550
  cid
33442
- })}`, senderID = id_gen_UniID.fromBili({
33551
+ })}`;
33552
+ const senderID = id_gen_UniID.fromBili({
33443
33553
  mid: args.mid
33444
33554
  });
33445
33555
  return this.create({
@@ -33462,7 +33572,8 @@ and limitations under the License.
33462
33572
  }, options);
33463
33573
  }
33464
33574
  static fromDplayer(args, playerID, domain, options) {
33465
- const SOID = id_gen_UniID.fromUnknown(playerID, domain), senderID = id_gen_UniID.fromUnknown(args.midHash, domain);
33575
+ const SOID = id_gen_UniID.fromUnknown(playerID, domain);
33576
+ const senderID = id_gen_UniID.fromUnknown(args.midHash, domain);
33466
33577
  return this.create({
33467
33578
  ...args,
33468
33579
  SOID: SOID.toString(),
@@ -33484,7 +33595,8 @@ and limitations under the License.
33484
33595
  };
33485
33596
  }
33486
33597
  static fromArtplayer(args, playerID, domain, options) {
33487
- const SOID = id_gen_UniID.fromUnknown(playerID, domain), senderID = id_gen_UniID.fromUnknown('', domain);
33598
+ const SOID = id_gen_UniID.fromUnknown(playerID, domain);
33599
+ const senderID = id_gen_UniID.fromUnknown('', domain);
33488
33600
  let extra = args.border ? {
33489
33601
  artplayer: {
33490
33602
  border: args.border,
@@ -33741,12 +33853,12 @@ and limitations under the License.
33741
33853
  _ts_metadata("design:paramtypes", []),
33742
33854
  _ts_metadata("design:returntype", "undefined" == typeof DMDDplay ? Object : DMDDplay)
33743
33855
  ], UniDM.prototype, "toDDplay", null);
33744
- const src_JSON = json_bigint_default()({
33856
+ const src_JSON = json_bigint({
33745
33857
  useNativeBigInt: true
33746
33858
  });
33747
33859
  const DanUniConvertTipTemplate = {
33748
33860
  meassage: 'Converted by DanUni!',
33749
- version: `JS/TS ${package_namespaceObject.u2} (v${package_namespaceObject.i8})`
33861
+ version: `JS/TS ${package_namespaceObject.UU} (v${package_namespaceObject.rE})`
33750
33862
  };
33751
33863
  class UniPool {
33752
33864
  constructor(dans, options = {}, info = {
@@ -33775,126 +33887,36 @@ and limitations under the License.
33775
33887
  color: isShared('color') ? this.dans[0].color : void 0
33776
33888
  };
33777
33889
  }
33778
- get stat() {
33779
- const default_stat = {
33780
- SOID: [],
33781
- mode: [
33782
- {
33783
- val: dm_gen_Modes.Normal,
33784
- count: 0
33785
- },
33786
- {
33787
- val: dm_gen_Modes.Bottom,
33788
- count: 0
33789
- },
33790
- {
33791
- val: dm_gen_Modes.Top,
33792
- count: 0
33793
- },
33794
- {
33795
- val: dm_gen_Modes.Reverse,
33796
- count: 0
33797
- },
33798
- {
33799
- val: dm_gen_Modes.Ext,
33800
- count: 0
33801
- }
33802
- ],
33803
- fontsize: [],
33804
- color: [],
33805
- senderID: [],
33806
- content: [],
33807
- weight: [],
33808
- pool: [
33809
- {
33810
- val: dm_gen_Pools.Def,
33811
- count: 0
33812
- },
33813
- {
33814
- val: dm_gen_Pools.Sub,
33815
- count: 0
33816
- },
33817
- {
33818
- val: dm_gen_Pools.Adv,
33819
- count: 0
33820
- },
33821
- {
33822
- val: dm_gen_Pools.Ix,
33823
- count: 0
33824
- }
33825
- ],
33826
- platform: []
33827
- };
33828
- const stat = this.dans.reduce((s, d)=>{
33829
- const SOID = s.SOID.find((i)=>i.val === d.SOID);
33830
- if (SOID) SOID.count++;
33831
- else s.SOID.push({
33832
- val: d.SOID,
33833
- count: 1
33834
- });
33835
- const mode = s.mode.find((i)=>i.val === d.mode);
33836
- if (mode) mode.count++;
33837
- else s.mode.push({
33838
- val: d.mode,
33839
- count: 1
33840
- });
33841
- const fontsize = s.fontsize.find((i)=>i.val === d.fontsize);
33842
- if (fontsize) fontsize.count++;
33843
- else s.fontsize.push({
33844
- val: d.fontsize,
33845
- count: 1
33846
- });
33847
- const color = s.color.find((i)=>i.val === d.color);
33848
- if (color) color.count++;
33849
- else s.color.push({
33850
- val: d.color,
33851
- count: 1
33852
- });
33853
- const senderID = s.senderID.find((i)=>i.val === d.senderID);
33854
- if (senderID) senderID.count++;
33855
- else s.senderID.push({
33856
- val: d.senderID,
33857
- count: 1
33858
- });
33859
- const content = s.content.find((i)=>i.val === d.content);
33860
- if (content) content.count++;
33861
- else s.content.push({
33862
- val: d.content,
33863
- count: 1
33864
- });
33865
- const weight = s.weight.find((i)=>i.val === d.weight);
33866
- if (weight) weight.count++;
33867
- else s.weight.push({
33868
- val: d.weight,
33869
- count: 1
33870
- });
33871
- const pool = s.pool.find((i)=>i.val === d.pool);
33872
- if (pool) pool.count++;
33873
- else s.pool.push({
33874
- val: d.pool,
33875
- count: 1
33876
- });
33877
- const platform = s.platform.find((i)=>i.val === d.platform);
33878
- if (platform) platform.count++;
33879
- else s.platform.push({
33880
- val: d.platform,
33890
+ getShared(key) {
33891
+ const isShared = (key)=>this.dans.every((d)=>d[key]);
33892
+ return isShared(key) ? this.dans[0][key] : void 0;
33893
+ }
33894
+ getStat(key) {
33895
+ const default_stat = [];
33896
+ const stats = this.dans.reduce((stat, dan)=>{
33897
+ const valWithCount = stat.find((i)=>i.val === dan[key]);
33898
+ if (valWithCount) valWithCount.count++;
33899
+ else stat.push({
33900
+ val: dan[key],
33881
33901
  count: 1
33882
33902
  });
33883
- return s;
33903
+ return stat;
33884
33904
  }, default_stat);
33885
- return stat;
33905
+ return stats;
33906
+ }
33907
+ getMost(key) {
33908
+ return this.getStat(key).toSorted((a, b)=>b.count - a.count)[0];
33886
33909
  }
33887
33910
  get most() {
33888
- const s = this.stat;
33889
33911
  return {
33890
- mode: s.mode.sort((a, b)=>b.count - a.count)[0].val,
33891
- fontsize: s.fontsize.sort((a, b)=>b.count - a.count)[0].val,
33892
- color: s.color.sort((a, b)=>b.count - a.count)[0].val,
33893
- senderID: s.senderID.sort((a, b)=>b.count - a.count)[0].val,
33894
- content: s.content.sort((a, b)=>b.count - a.count)[0].val,
33895
- weight: s.weight.sort((a, b)=>b.count - a.count)[0].val,
33896
- pool: s.pool.sort((a, b)=>b.count - a.count)[0].val,
33897
- platform: s.platform.sort((a, b)=>b.count - a.count)[0].val
33912
+ mode: this.getMost('mode').val,
33913
+ fontsize: this.getMost('fontsize').val,
33914
+ color: this.getMost('color').val,
33915
+ senderID: this.getMost('senderID').val,
33916
+ content: this.getMost('content').val,
33917
+ weight: this.getMost('weight').val,
33918
+ pool: this.getMost('pool').val,
33919
+ platform: this.getMost('platform').val
33898
33920
  };
33899
33921
  }
33900
33922
  static create(options) {
@@ -33945,7 +33967,7 @@ and limitations under the License.
33945
33967
  }
33946
33968
  merge(lifetime = 0) {
33947
33969
  if (!this.shared.SOID) {
33948
- console.error("\u672C\u529F\u80FD\u4EC5\u652F\u6301\u540C\u5F39\u5E55\u5E93\u5185\u4F7F\u7528\uFF0C\u53EF\u5148 .split('SOID') \u5728\u5206\u522B\u4F7F\u7528");
33970
+ console.error("本功能仅支持同弹幕库内使用,可先 .split('SOID') 在分别使用");
33949
33971
  return this;
33950
33972
  }
33951
33973
  if (lifetime <= 0) return this;
@@ -34018,7 +34040,8 @@ and limitations under the License.
34018
34040
  'platform',
34019
34041
  'pool'
34020
34042
  ].map((k)=>danmaku[k]).join('|');
34021
- const extra = result[i].extra, mergeData = mergeObj[key];
34043
+ const extra = result[i].extra;
34044
+ const mergeData = mergeObj[key];
34022
34045
  result[i].extraStr = src_JSON.stringify({
34023
34046
  ...extra,
34024
34047
  danuni: {
@@ -34047,8 +34070,13 @@ and limitations under the License.
34047
34070
  minify() {
34048
34071
  return this.dans.map((d)=>d.minify());
34049
34072
  }
34050
- static import(file, options) {
34051
- const err = "\u65E0\u6CD5\u8BC6\u522B\u8BE5\u6587\u4EF6\uFF0C\u8BF7\u624B\u52A8\u6307\u5B9A\u683C\u5F0F\uFF01";
34073
+ static import(file, options, mod) {
34074
+ if (!mod) mod = [
34075
+ 'json',
34076
+ 'str',
34077
+ 'bin'
34078
+ ];
34079
+ const err = '无法识别该文件,请手动指定格式!';
34052
34080
  const parseJSON = (json)=>{
34053
34081
  try {
34054
34082
  if (Array.isArray(json) && json.every((d)=>d.SOID)) return {
@@ -34070,63 +34098,68 @@ and limitations under the License.
34070
34098
  } catch {}
34071
34099
  };
34072
34100
  const parseStr = (file)=>{
34073
- try {
34101
+ if (mod.includes('json')) try {
34074
34102
  if (IsJSON_isJSON(file)) {
34075
34103
  const json = src_JSON.parse(file);
34076
34104
  return parseJSON(json);
34077
34105
  }
34078
34106
  } catch {}
34079
- try {
34080
- const xmlParser = new XMLParser({
34081
- ignoreAttributes: false
34082
- });
34083
- const xml = xmlParser.parse(file);
34084
- if (xml?.i?.d) return {
34085
- pool: this.fromBiliXML(file, options),
34086
- fmt: 'bili.xml'
34087
- };
34088
- } catch {}
34089
- try {
34090
- return {
34091
- pool: this.fromASS(file, options),
34092
- fmt: 'common.ass'
34093
- };
34094
- } catch {}
34107
+ if (mod.includes('str')) {
34108
+ try {
34109
+ const xmlParser = new XMLParser({
34110
+ ignoreAttributes: false
34111
+ });
34112
+ const xml = xmlParser.parse(file);
34113
+ if (xml?.i?.d) return {
34114
+ pool: this.fromBiliXML(file, options),
34115
+ fmt: 'bili.xml'
34116
+ };
34117
+ } catch {}
34118
+ try {
34119
+ return {
34120
+ pool: this.fromASS(file, options),
34121
+ fmt: 'common.ass'
34122
+ };
34123
+ } catch {}
34124
+ }
34095
34125
  };
34096
34126
  let errmesg;
34097
- if (IsObject_isObject(file)) if (file instanceof ArrayBuffer || file instanceof Uint8Array) {
34098
- try {
34099
- return {
34100
- pool: this.fromPb(file),
34101
- fmt: 'danuni.pb.bin'
34102
- };
34103
- } catch {}
34104
- try {
34105
- return {
34106
- pool: this.fromBiliGrpc(file),
34107
- fmt: 'bili.pb.bin'
34108
- };
34109
- } catch {}
34110
- try {
34111
- return {
34112
- pool: this.fromBiliCommandGrpc(file),
34113
- fmt: 'bili.cmd.pb.bin'
34114
- };
34115
- } catch {}
34116
- try {
34117
- const fileStr = new TextDecoder().decode(file);
34118
- const prStr = parseStr(fileStr);
34119
- if (prStr) return prStr;
34120
- errmesg = `${err}(\u{5B9A}\u{4F4D}: bin->string)`;
34121
- } catch {}
34122
- } else {
34123
- const prJSON = parseJSON(file);
34124
- if (!prJSON) throw new Error(`${err}(\u{5B9A}\u{4F4D}: json)`);
34125
- return prJSON;
34126
- }
34127
- else if (IsString_isString(file)) {
34127
+ if (IsObject_isObject(file)) {
34128
+ if (file instanceof ArrayBuffer || file instanceof Uint8Array) {
34129
+ if (mod.includes('bin')) {
34130
+ try {
34131
+ return {
34132
+ pool: this.fromPb(file),
34133
+ fmt: 'danuni.pb.bin'
34134
+ };
34135
+ } catch {}
34136
+ try {
34137
+ return {
34138
+ pool: this.fromBiliGrpc(file),
34139
+ fmt: 'bili.pb.bin'
34140
+ };
34141
+ } catch {}
34142
+ try {
34143
+ return {
34144
+ pool: this.fromBiliCommandGrpc(file),
34145
+ fmt: 'bili.cmd.pb.bin'
34146
+ };
34147
+ } catch {}
34148
+ }
34149
+ try {
34150
+ const fileStr = new TextDecoder().decode(file);
34151
+ const prStr = parseStr(fileStr);
34152
+ if (prStr) return prStr;
34153
+ errmesg = `${err}(定位: bin->string)`;
34154
+ } catch {}
34155
+ } else if (mod.includes('json')) {
34156
+ const prJSON = parseJSON(file);
34157
+ if (!prJSON) throw new Error(`${err}(定位: json)`);
34158
+ return prJSON;
34159
+ }
34160
+ } else if (IsString_isString(file)) {
34128
34161
  const prStr = parseStr(file);
34129
- if (!prStr) throw new Error(`${err}(\u{5B9A}\u{4F4D}: string)`);
34162
+ if (!prStr) throw new Error(`${err}(定位: string)`);
34130
34163
  return prStr;
34131
34164
  }
34132
34165
  throw new Error(errmesg ?? err);
@@ -34189,9 +34222,14 @@ and limitations under the License.
34189
34222
  static fromBiliXML(xml, options) {
34190
34223
  const parser = new XMLParser({
34191
34224
  ignoreAttributes: false
34192
- }), oriData = parser.parse(xml), dans = oriData.i.d, fromConverted = !!oriData.danuni, cid = BigInt(oriData.i.chatid);
34225
+ });
34226
+ const oriData = parser.parse(xml);
34227
+ const dans = oriData.i.d;
34228
+ const fromConverted = !!oriData.danuni;
34229
+ const cid = BigInt(oriData.i.chatid);
34193
34230
  return new UniPool(dans.map((d)=>{
34194
- const p_str = d['@_p'], p_arr = p_str.split(',');
34231
+ const p_str = d['@_p'];
34232
+ const p_arr = p_str.split(',');
34195
34233
  return UniDM.fromBili({
34196
34234
  content: d['#text'],
34197
34235
  progress: Number.parseFloat(p_arr[0]),
@@ -34219,7 +34257,7 @@ and limitations under the License.
34219
34257
  };
34220
34258
  if (options?.avoidSenderIDWithAt) {
34221
34259
  const ok = this.dans.every((d)=>d.senderID.endsWith(`@${platform_PlatformVideoSource.Bilibili}`));
34222
- if (!ok) throw new Error("\u5B58\u5728\u5176\u4ED6\u6765\u6E90\u7684senderID\uFF0C\u8BF7\u5173\u95ED\u8BE5\u529F\u80FD\u518D\u8BD5\uFF01");
34260
+ if (!ok) throw new Error('存在其他来源的senderID,请关闭该功能再试!');
34223
34261
  }
34224
34262
  const builder = new Builder({
34225
34263
  ignoreAttributes: false
@@ -34246,14 +34284,16 @@ and limitations under the License.
34246
34284
  });
34247
34285
  }
34248
34286
  static fromBiliGrpc(bin, options) {
34249
- const data = fromBinary(DmSegMobileReplySchema, new Uint8Array(bin)), json = data.elems;
34287
+ const data = fromBinary(DmSegMobileReplySchema, new Uint8Array(bin));
34288
+ const json = data.elems;
34250
34289
  return new UniPool(json.map((d)=>UniDM.fromBili({
34251
34290
  ...d,
34252
34291
  progress: d.progress / 1000
34253
34292
  }, d.oid, options)), options);
34254
34293
  }
34255
34294
  static fromBiliCommandGrpc(bin, options) {
34256
- const data = fromBinary(DmWebViewReplySchema, new Uint8Array(bin)), json = data.commandDms;
34295
+ const data = fromBinary(DmWebViewReplySchema, new Uint8Array(bin));
34296
+ const json = data.commandDms;
34257
34297
  return new UniPool(json.map((d)=>UniDM.fromBiliCommand(d, d.oid, options)), options);
34258
34298
  }
34259
34299
  static fromDplayer(json, playerID, domain = 'other', options) {
@@ -34352,14 +34392,16 @@ and limitations under the License.
34352
34392
  static fromASS(ass, options) {
34353
34393
  return parseAssRawField(ass, options);
34354
34394
  }
34355
- toASS(canvasCtx, options = {
34356
- substyle: {}
34357
- }) {
34395
+ toASS(canvasCtx, options) {
34396
+ const defaultOptions = {
34397
+ substyle: {}
34398
+ };
34399
+ const finalOptions = options ?? defaultOptions;
34358
34400
  const fn = this.shared.SOID;
34359
34401
  return generateASS(this, {
34360
34402
  filename: fn,
34361
34403
  title: fn,
34362
- ...options
34404
+ ...finalOptions
34363
34405
  }, canvasCtx);
34364
34406
  }
34365
34407
  }
@@ -34471,7 +34513,7 @@ and limitations under the License.
34471
34513
  };
34472
34514
  };
34473
34515
  const measureTextWidthConstructor = (canvasContext)=>{
34474
- const supportTextMeasure = !!canvasContext.measureText("\u4E2D");
34516
+ const supportTextMeasure = !!canvasContext.measureText('中');
34475
34517
  if (supportTextMeasure) return (fontName, fontSize, bold, text)=>{
34476
34518
  canvasContext.font = `${bold ? 'bold' : 'normal'} ${fontSize}px ${fontName}`;
34477
34519
  const textWidth = canvasContext.measureText(text).width;
@@ -34549,7 +34591,7 @@ and limitations under the License.
34549
34591
  const layoutDanmaku = (inputList, config, canvasCtx)=>{
34550
34592
  const list = [
34551
34593
  ...UniPool2DanmakuLists(inputList)
34552
- ].sort((x, y)=>x.time - y.time);
34594
+ ].toSorted((x, y)=>x.time - y.time);
34553
34595
  const layout = initializeLayout(config, canvasCtx);
34554
34596
  return DanmakuList2UniPool(list.map(layout).filter((danmaku)=>!!danmaku));
34555
34597
  };
@@ -34563,7 +34605,7 @@ and limitations under the License.
34563
34605
  const minorSecond = Math.floor((seconds - integer) * 100);
34564
34606
  return `${hour}:${pad(minute)}:${pad(second)}.${minorSecond}`;
34565
34607
  };
34566
- const encode = (text)=>text.toString().replaceAll('{', "\uFF5B").replaceAll('}', "\uFF5D").replaceAll(/\r|\n/g, '');
34608
+ const encode = (text)=>text.toString().replaceAll('{', '{').replaceAll('}', '}').replaceAll(/\r|\n/g, '');
34567
34609
  const scrollCommand = ({ start, end, top })=>`\\move(${start},${top},${end},${top})`;
34568
34610
  const fixCommand = ({ top, left })=>`\\an8\\pos(${left},${top})`;
34569
34611
  const colorCommand = (color)=>`\\c${formatColor(color)}`;
@@ -34632,7 +34674,7 @@ and limitations under the License.
34632
34674
  throw new Error(`Unknown danmaku type: ${danmaku.type}`);
34633
34675
  }
34634
34676
  };
34635
- const ass_event = (list, config)=>{
34677
+ const event_event = (list, config)=>{
34636
34678
  const content = [
34637
34679
  '[Events]',
34638
34680
  'Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text',
@@ -34643,11 +34685,11 @@ and limitations under the License.
34643
34685
  ];
34644
34686
  return content.join('\n');
34645
34687
  };
34646
- const ass_info = ({ playResX, playResY }, { filename, title })=>{
34688
+ const info_info = ({ playResX, playResY }, { filename, title })=>{
34647
34689
  const content = [
34648
34690
  '[Script Info]',
34649
34691
  `Title: ${title}`,
34650
- `Original Script: \u{6839}\u{636E} ${filename} \u{7684}\u{5F39}\u{5E55}\u{4FE1}\u{606F}\u{FF0C}\u{7531} ${package_namespaceObject.e8} \u{751F}\u{6210}`,
34692
+ `Original Script: 根据 ${filename} 的弹幕信息,由 ${package_namespaceObject.TB} 生成`,
34651
34693
  'ScriptType: v4.00+',
34652
34694
  'Collisions: Reverse',
34653
34695
  `PlayResX: ${playResX}`,
@@ -34656,18 +34698,19 @@ and limitations under the License.
34656
34698
  ];
34657
34699
  return content.join('\n');
34658
34700
  };
34659
- var index_min_lib = __nested_webpack_require_527809__("../../node_modules/.pnpm/browserify-zlib@0.2.0/node_modules/browserify-zlib/lib/index.js");
34660
- var raw_Buffer = __nested_webpack_require_527809__("../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.js")["Buffer"];
34661
- const compressTypes = [
34701
+ var index_min_lib = __nested_webpack_require_527823__("../../node_modules/.pnpm/browserify-zlib@0.2.0/node_modules/browserify-zlib/lib/index.js");
34702
+ var raw_Buffer = __nested_webpack_require_527823__("../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.js")["Buffer"];
34703
+ const compressTypes = new Set([
34662
34704
  'brotli',
34663
34705
  'gzip'
34664
- ], baseTypes = [
34706
+ ]);
34707
+ const baseTypes = new Set([
34665
34708
  'base64',
34666
34709
  'base18384'
34667
- ];
34710
+ ]);
34668
34711
  function fromUint16Array(array) {
34669
34712
  let result = '';
34670
- for (const element of array)result += String.fromCharCode(element);
34713
+ for (const element of array)result += String.fromCodePoint(element);
34671
34714
  return result;
34672
34715
  }
34673
34716
  function raw_raw(list, config, context, compressType = 'brotli', baseType = 'base18384') {
@@ -34675,23 +34718,29 @@ and limitations under the License.
34675
34718
  list,
34676
34719
  config,
34677
34720
  context
34678
- }, rawText = JSON.stringify(raw1);
34721
+ };
34722
+ const rawText = JSON.stringify(raw1);
34679
34723
  let compress;
34680
34724
  compress = 'brotli' === compressType ? (0, index_min_lib.brotliCompressSync)(rawText) : (0, index_min_lib.gzipSync)(rawText);
34681
34725
  return `;RawCompressType: ${compressType}\n;RawBaseType: ${baseType}\n;Raw: ${'base64' === baseType ? compress.toString('base64') : fromUint16Array((0, lib.encode)(compress))}`;
34682
34726
  }
34683
34727
  function deRaw(ass) {
34684
- const arr = ass.split('\n'), lineCompressType = arr.find((line)=>line.startsWith(';RawCompressType:')), lineBaseType = arr.find((line)=>line.startsWith(';RawBaseType:')), lineRaw = arr.find((line)=>line.startsWith(';Raw:'));
34728
+ const arr = ass.split('\n');
34729
+ const lineCompressType = arr.find((line)=>line.startsWith(';RawCompressType:'));
34730
+ const lineBaseType = arr.find((line)=>line.startsWith(';RawBaseType:'));
34731
+ const lineRaw = arr.find((line)=>line.startsWith(';Raw:'));
34685
34732
  if (!lineCompressType || !lineBaseType || !lineRaw) return;
34686
34733
  {
34687
- let compressType = lineCompressType.replace(';RawCompressType: ', '').trim(), baseType = lineBaseType.replace(';RawBaseType: ', '').trim();
34688
- if (!compressTypes.includes(compressType)) compressType = 'gzip';
34689
- if (!baseTypes.includes(baseType)) baseType = 'base64';
34690
- const text = lineRaw.replace(';Raw: ', '').trim(), buffer = 'base64' === baseType ? raw_Buffer.from(text, 'base64') : raw_Buffer.from((0, lib.decode)(raw_Buffer.from(text, 'utf-8').toString('utf-8')));
34734
+ let compressType = lineCompressType.replace(';RawCompressType: ', '').trim();
34735
+ let baseType = lineBaseType.replace(';RawBaseType: ', '').trim();
34736
+ if (!compressTypes.has(compressType)) compressType = 'gzip';
34737
+ if (!baseTypes.has(baseType)) baseType = 'base64';
34738
+ const text = lineRaw.replace(';Raw: ', '').trim();
34739
+ const buffer = 'base64' === baseType ? raw_Buffer.from(text, 'base64') : raw_Buffer.from((0, lib.decode)(raw_Buffer.from(text, 'utf8').toString('utf8')));
34691
34740
  let decompress;
34692
34741
  decompress = 'brotli' === compressType ? (0, index_min_lib.brotliDecompressSync)(buffer) : (0, index_min_lib.gunzipSync)(buffer);
34693
34742
  try {
34694
- return JSON.parse(decompress.toString('utf-8'));
34743
+ return JSON.parse(decompress.toString('utf8'));
34695
34744
  } catch {
34696
34745
  return;
34697
34746
  }
@@ -34738,20 +34787,22 @@ and limitations under the License.
34738
34787
  ];
34739
34788
  return content.join('\n');
34740
34789
  };
34741
- const ass_create = (list, rawList, config, context = {
34790
+ const default_context = {
34742
34791
  filename: 'unknown',
34743
34792
  title: 'unknown'
34744
- }, rawConfig)=>{
34745
- const Elist = UniPool2DanmakuLists(list), ErawList = UniPool2DanmakuLists(rawList);
34793
+ };
34794
+ const create_ass = (list, rawList, config, context = default_context, rawConfig)=>{
34795
+ const Elist = UniPool2DanmakuLists(list);
34796
+ const ErawList = UniPool2DanmakuLists(rawList);
34746
34797
  const content = [
34747
- ass_info(config, context),
34798
+ info_info(config, context),
34748
34799
  index_min_style(config),
34749
- ass_event(Elist, config)
34800
+ event_event(Elist, config)
34750
34801
  ];
34751
34802
  if (config.includeRaw) content.push(raw_raw(ErawList, config, context, rawConfig?.compressType, rawConfig?.baseType));
34752
34803
  return `${content.join('\n\n')}\n`;
34753
34804
  };
34754
- const ass_gen_config = (overrides = {})=>{
34805
+ const getConfig = (overrides = {})=>{
34755
34806
  const defaults = {
34756
34807
  fontSize: [
34757
34808
  25,
@@ -34787,10 +34838,10 @@ and limitations under the License.
34787
34838
  return config;
34788
34839
  };
34789
34840
  function generateASS(danmaku, options, canvasCtx) {
34790
- const config = ass_gen_config(options.substyle);
34841
+ const config = getConfig(options.substyle);
34791
34842
  const mergedList = danmaku.merge(config.mergeIn);
34792
34843
  const layoutList = layoutDanmaku(mergedList, config, canvasCtx);
34793
- const content = ass_create(layoutList, danmaku, config, {
34844
+ const content = create_ass(layoutList, danmaku, config, {
34794
34845
  filename: options?.filename || 'unknown',
34795
34846
  title: options?.title || 'unknown'
34796
34847
  }, options.raw);
@@ -34798,15 +34849,15 @@ and limitations under the License.
34798
34849
  }
34799
34850
  function parseAssRawField(ass, options) {
34800
34851
  const raw = deRaw(ass);
34801
- if (!raw) return UniPool.create();
34802
- return DanmakuList2UniPool(raw.list, options);
34852
+ if (raw) return DanmakuList2UniPool(raw.list, options);
34853
+ return UniPool.create();
34803
34854
  }
34804
- const src_JSON_0 = json_bigint_default()({
34855
+ const src_JSON_0 = json_bigint({
34805
34856
  useNativeBigInt: true
34806
34857
  });
34807
34858
  const src_DanUniConvertTipTemplate = {
34808
34859
  meassage: 'Converted by DanUni!',
34809
- version: `JS/TS ${package_namespaceObject.u2} (v${package_namespaceObject.i8})`
34860
+ version: `JS/TS ${package_namespaceObject.UU} (v${package_namespaceObject.rE})`
34810
34861
  };
34811
34862
  class src_UniPool {
34812
34863
  constructor(dans, options = {}, info = {
@@ -34835,126 +34886,36 @@ and limitations under the License.
34835
34886
  color: isShared('color') ? this.dans[0].color : void 0
34836
34887
  };
34837
34888
  }
34838
- get stat() {
34839
- const default_stat = {
34840
- SOID: [],
34841
- mode: [
34842
- {
34843
- val: dm_gen_Modes.Normal,
34844
- count: 0
34845
- },
34846
- {
34847
- val: dm_gen_Modes.Bottom,
34848
- count: 0
34849
- },
34850
- {
34851
- val: dm_gen_Modes.Top,
34852
- count: 0
34853
- },
34854
- {
34855
- val: dm_gen_Modes.Reverse,
34856
- count: 0
34857
- },
34858
- {
34859
- val: dm_gen_Modes.Ext,
34860
- count: 0
34861
- }
34862
- ],
34863
- fontsize: [],
34864
- color: [],
34865
- senderID: [],
34866
- content: [],
34867
- weight: [],
34868
- pool: [
34869
- {
34870
- val: dm_gen_Pools.Def,
34871
- count: 0
34872
- },
34873
- {
34874
- val: dm_gen_Pools.Sub,
34875
- count: 0
34876
- },
34877
- {
34878
- val: dm_gen_Pools.Adv,
34879
- count: 0
34880
- },
34881
- {
34882
- val: dm_gen_Pools.Ix,
34883
- count: 0
34884
- }
34885
- ],
34886
- platform: []
34887
- };
34888
- const stat = this.dans.reduce((s, d)=>{
34889
- const SOID = s.SOID.find((i)=>i.val === d.SOID);
34890
- if (SOID) SOID.count++;
34891
- else s.SOID.push({
34892
- val: d.SOID,
34893
- count: 1
34894
- });
34895
- const mode = s.mode.find((i)=>i.val === d.mode);
34896
- if (mode) mode.count++;
34897
- else s.mode.push({
34898
- val: d.mode,
34899
- count: 1
34900
- });
34901
- const fontsize = s.fontsize.find((i)=>i.val === d.fontsize);
34902
- if (fontsize) fontsize.count++;
34903
- else s.fontsize.push({
34904
- val: d.fontsize,
34905
- count: 1
34906
- });
34907
- const color = s.color.find((i)=>i.val === d.color);
34908
- if (color) color.count++;
34909
- else s.color.push({
34910
- val: d.color,
34911
- count: 1
34912
- });
34913
- const senderID = s.senderID.find((i)=>i.val === d.senderID);
34914
- if (senderID) senderID.count++;
34915
- else s.senderID.push({
34916
- val: d.senderID,
34917
- count: 1
34918
- });
34919
- const content = s.content.find((i)=>i.val === d.content);
34920
- if (content) content.count++;
34921
- else s.content.push({
34922
- val: d.content,
34923
- count: 1
34924
- });
34925
- const weight = s.weight.find((i)=>i.val === d.weight);
34926
- if (weight) weight.count++;
34927
- else s.weight.push({
34928
- val: d.weight,
34929
- count: 1
34930
- });
34931
- const pool = s.pool.find((i)=>i.val === d.pool);
34932
- if (pool) pool.count++;
34933
- else s.pool.push({
34934
- val: d.pool,
34935
- count: 1
34936
- });
34937
- const platform = s.platform.find((i)=>i.val === d.platform);
34938
- if (platform) platform.count++;
34939
- else s.platform.push({
34940
- val: d.platform,
34889
+ getShared(key) {
34890
+ const isShared = (key)=>this.dans.every((d)=>d[key]);
34891
+ return isShared(key) ? this.dans[0][key] : void 0;
34892
+ }
34893
+ getStat(key) {
34894
+ const default_stat = [];
34895
+ const stats = this.dans.reduce((stat, dan)=>{
34896
+ const valWithCount = stat.find((i)=>i.val === dan[key]);
34897
+ if (valWithCount) valWithCount.count++;
34898
+ else stat.push({
34899
+ val: dan[key],
34941
34900
  count: 1
34942
34901
  });
34943
- return s;
34902
+ return stat;
34944
34903
  }, default_stat);
34945
- return stat;
34904
+ return stats;
34905
+ }
34906
+ getMost(key) {
34907
+ return this.getStat(key).toSorted((a, b)=>b.count - a.count)[0];
34946
34908
  }
34947
34909
  get most() {
34948
- const s = this.stat;
34949
34910
  return {
34950
- mode: s.mode.sort((a, b)=>b.count - a.count)[0].val,
34951
- fontsize: s.fontsize.sort((a, b)=>b.count - a.count)[0].val,
34952
- color: s.color.sort((a, b)=>b.count - a.count)[0].val,
34953
- senderID: s.senderID.sort((a, b)=>b.count - a.count)[0].val,
34954
- content: s.content.sort((a, b)=>b.count - a.count)[0].val,
34955
- weight: s.weight.sort((a, b)=>b.count - a.count)[0].val,
34956
- pool: s.pool.sort((a, b)=>b.count - a.count)[0].val,
34957
- platform: s.platform.sort((a, b)=>b.count - a.count)[0].val
34911
+ mode: this.getMost('mode').val,
34912
+ fontsize: this.getMost('fontsize').val,
34913
+ color: this.getMost('color').val,
34914
+ senderID: this.getMost('senderID').val,
34915
+ content: this.getMost('content').val,
34916
+ weight: this.getMost('weight').val,
34917
+ pool: this.getMost('pool').val,
34918
+ platform: this.getMost('platform').val
34958
34919
  };
34959
34920
  }
34960
34921
  static create(options) {
@@ -35005,7 +34966,7 @@ and limitations under the License.
35005
34966
  }
35006
34967
  merge(lifetime = 0) {
35007
34968
  if (!this.shared.SOID) {
35008
- console.error("\u672C\u529F\u80FD\u4EC5\u652F\u6301\u540C\u5F39\u5E55\u5E93\u5185\u4F7F\u7528\uFF0C\u53EF\u5148 .split('SOID') \u5728\u5206\u522B\u4F7F\u7528");
34969
+ console.error("本功能仅支持同弹幕库内使用,可先 .split('SOID') 在分别使用");
35009
34970
  return this;
35010
34971
  }
35011
34972
  if (lifetime <= 0) return this;
@@ -35078,7 +35039,8 @@ and limitations under the License.
35078
35039
  'platform',
35079
35040
  'pool'
35080
35041
  ].map((k)=>danmaku[k]).join('|');
35081
- const extra = result[i].extra, mergeData = mergeObj[key];
35042
+ const extra = result[i].extra;
35043
+ const mergeData = mergeObj[key];
35082
35044
  result[i].extraStr = src_JSON_0.stringify({
35083
35045
  ...extra,
35084
35046
  danuni: {
@@ -35107,8 +35069,13 @@ and limitations under the License.
35107
35069
  minify() {
35108
35070
  return this.dans.map((d)=>d.minify());
35109
35071
  }
35110
- static import(file, options) {
35111
- const err = "\u65E0\u6CD5\u8BC6\u522B\u8BE5\u6587\u4EF6\uFF0C\u8BF7\u624B\u52A8\u6307\u5B9A\u683C\u5F0F\uFF01";
35072
+ static import(file, options, mod) {
35073
+ if (!mod) mod = [
35074
+ 'json',
35075
+ 'str',
35076
+ 'bin'
35077
+ ];
35078
+ const err = '无法识别该文件,请手动指定格式!';
35112
35079
  const parseJSON = (json)=>{
35113
35080
  try {
35114
35081
  if (Array.isArray(json) && json.every((d)=>d.SOID)) return {
@@ -35130,63 +35097,68 @@ and limitations under the License.
35130
35097
  } catch {}
35131
35098
  };
35132
35099
  const parseStr = (file)=>{
35133
- try {
35100
+ if (mod.includes('json')) try {
35134
35101
  if (IsJSON_isJSON(file)) {
35135
35102
  const json = src_JSON_0.parse(file);
35136
35103
  return parseJSON(json);
35137
35104
  }
35138
35105
  } catch {}
35139
- try {
35140
- const xmlParser = new XMLParser({
35141
- ignoreAttributes: false
35142
- });
35143
- const xml = xmlParser.parse(file);
35144
- if (xml?.i?.d) return {
35145
- pool: this.fromBiliXML(file, options),
35146
- fmt: 'bili.xml'
35147
- };
35148
- } catch {}
35149
- try {
35150
- return {
35151
- pool: this.fromASS(file, options),
35152
- fmt: 'common.ass'
35153
- };
35154
- } catch {}
35106
+ if (mod.includes('str')) {
35107
+ try {
35108
+ const xmlParser = new XMLParser({
35109
+ ignoreAttributes: false
35110
+ });
35111
+ const xml = xmlParser.parse(file);
35112
+ if (xml?.i?.d) return {
35113
+ pool: this.fromBiliXML(file, options),
35114
+ fmt: 'bili.xml'
35115
+ };
35116
+ } catch {}
35117
+ try {
35118
+ return {
35119
+ pool: this.fromASS(file, options),
35120
+ fmt: 'common.ass'
35121
+ };
35122
+ } catch {}
35123
+ }
35155
35124
  };
35156
35125
  let errmesg;
35157
- if (IsObject_isObject(file)) if (file instanceof ArrayBuffer || file instanceof Uint8Array) {
35158
- try {
35159
- return {
35160
- pool: this.fromPb(file),
35161
- fmt: 'danuni.pb.bin'
35162
- };
35163
- } catch {}
35164
- try {
35165
- return {
35166
- pool: this.fromBiliGrpc(file),
35167
- fmt: 'bili.pb.bin'
35168
- };
35169
- } catch {}
35170
- try {
35171
- return {
35172
- pool: this.fromBiliCommandGrpc(file),
35173
- fmt: 'bili.cmd.pb.bin'
35174
- };
35175
- } catch {}
35176
- try {
35177
- const fileStr = new TextDecoder().decode(file);
35178
- const prStr = parseStr(fileStr);
35179
- if (prStr) return prStr;
35180
- errmesg = `${err}(\u{5B9A}\u{4F4D}: bin->string)`;
35181
- } catch {}
35182
- } else {
35183
- const prJSON = parseJSON(file);
35184
- if (!prJSON) throw new Error(`${err}(\u{5B9A}\u{4F4D}: json)`);
35185
- return prJSON;
35186
- }
35187
- else if (IsString_isString(file)) {
35126
+ if (IsObject_isObject(file)) {
35127
+ if (file instanceof ArrayBuffer || file instanceof Uint8Array) {
35128
+ if (mod.includes('bin')) {
35129
+ try {
35130
+ return {
35131
+ pool: this.fromPb(file),
35132
+ fmt: 'danuni.pb.bin'
35133
+ };
35134
+ } catch {}
35135
+ try {
35136
+ return {
35137
+ pool: this.fromBiliGrpc(file),
35138
+ fmt: 'bili.pb.bin'
35139
+ };
35140
+ } catch {}
35141
+ try {
35142
+ return {
35143
+ pool: this.fromBiliCommandGrpc(file),
35144
+ fmt: 'bili.cmd.pb.bin'
35145
+ };
35146
+ } catch {}
35147
+ }
35148
+ try {
35149
+ const fileStr = new TextDecoder().decode(file);
35150
+ const prStr = parseStr(fileStr);
35151
+ if (prStr) return prStr;
35152
+ errmesg = `${err}(定位: bin->string)`;
35153
+ } catch {}
35154
+ } else if (mod.includes('json')) {
35155
+ const prJSON = parseJSON(file);
35156
+ if (!prJSON) throw new Error(`${err}(定位: json)`);
35157
+ return prJSON;
35158
+ }
35159
+ } else if (IsString_isString(file)) {
35188
35160
  const prStr = parseStr(file);
35189
- if (!prStr) throw new Error(`${err}(\u{5B9A}\u{4F4D}: string)`);
35161
+ if (!prStr) throw new Error(`${err}(定位: string)`);
35190
35162
  return prStr;
35191
35163
  }
35192
35164
  throw new Error(errmesg ?? err);
@@ -35249,9 +35221,14 @@ and limitations under the License.
35249
35221
  static fromBiliXML(xml, options) {
35250
35222
  const parser = new XMLParser({
35251
35223
  ignoreAttributes: false
35252
- }), oriData = parser.parse(xml), dans = oriData.i.d, fromConverted = !!oriData.danuni, cid = BigInt(oriData.i.chatid);
35224
+ });
35225
+ const oriData = parser.parse(xml);
35226
+ const dans = oriData.i.d;
35227
+ const fromConverted = !!oriData.danuni;
35228
+ const cid = BigInt(oriData.i.chatid);
35253
35229
  return new src_UniPool(dans.map((d)=>{
35254
- const p_str = d['@_p'], p_arr = p_str.split(',');
35230
+ const p_str = d['@_p'];
35231
+ const p_arr = p_str.split(',');
35255
35232
  return UniDM.fromBili({
35256
35233
  content: d['#text'],
35257
35234
  progress: Number.parseFloat(p_arr[0]),
@@ -35279,7 +35256,7 @@ and limitations under the License.
35279
35256
  };
35280
35257
  if (options?.avoidSenderIDWithAt) {
35281
35258
  const ok = this.dans.every((d)=>d.senderID.endsWith(`@${platform_PlatformVideoSource.Bilibili}`));
35282
- if (!ok) throw new Error("\u5B58\u5728\u5176\u4ED6\u6765\u6E90\u7684senderID\uFF0C\u8BF7\u5173\u95ED\u8BE5\u529F\u80FD\u518D\u8BD5\uFF01");
35259
+ if (!ok) throw new Error('存在其他来源的senderID,请关闭该功能再试!');
35283
35260
  }
35284
35261
  const builder = new Builder({
35285
35262
  ignoreAttributes: false
@@ -35306,14 +35283,16 @@ and limitations under the License.
35306
35283
  });
35307
35284
  }
35308
35285
  static fromBiliGrpc(bin, options) {
35309
- const data = fromBinary(DmSegMobileReplySchema, new Uint8Array(bin)), json = data.elems;
35286
+ const data = fromBinary(DmSegMobileReplySchema, new Uint8Array(bin));
35287
+ const json = data.elems;
35310
35288
  return new src_UniPool(json.map((d)=>UniDM.fromBili({
35311
35289
  ...d,
35312
35290
  progress: d.progress / 1000
35313
35291
  }, d.oid, options)), options);
35314
35292
  }
35315
35293
  static fromBiliCommandGrpc(bin, options) {
35316
- const data = fromBinary(DmWebViewReplySchema, new Uint8Array(bin)), json = data.commandDms;
35294
+ const data = fromBinary(DmWebViewReplySchema, new Uint8Array(bin));
35295
+ const json = data.commandDms;
35317
35296
  return new src_UniPool(json.map((d)=>UniDM.fromBiliCommand(d, d.oid, options)), options);
35318
35297
  }
35319
35298
  static fromDplayer(json, playerID, domain = 'other', options) {
@@ -35412,18 +35391,20 @@ and limitations under the License.
35412
35391
  static fromASS(ass, options) {
35413
35392
  return parseAssRawField(ass, options);
35414
35393
  }
35415
- toASS(canvasCtx, options = {
35416
- substyle: {}
35417
- }) {
35394
+ toASS(canvasCtx, options) {
35395
+ const defaultOptions = {
35396
+ substyle: {}
35397
+ };
35398
+ const finalOptions = options ?? defaultOptions;
35418
35399
  const fn = this.shared.SOID;
35419
35400
  return generateASS(this, {
35420
35401
  filename: fn,
35421
35402
  title: fn,
35422
- ...options
35403
+ ...finalOptions
35423
35404
  }, canvasCtx);
35424
35405
  }
35425
35406
  }
35426
- var fs_extra_lib = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.0/node_modules/fs-extra/lib/index.js");
35407
+ var fs_extra_lib = __webpack_require__("../../node_modules/.pnpm/fs-extra@11.3.2/node_modules/fs-extra/lib/index.js");
35427
35408
  var lib_default = /*#__PURE__*/ __webpack_require__.n(fs_extra_lib);
35428
35409
  var Module = function(moduleArg = {}) {
35429
35410
  var moduleRtn;
@@ -35694,19 +35675,26 @@ and limitations under the License.
35694
35675
  const dist = ret >>> 19 & 2047;
35695
35676
  const idx_diff = 524287 & ret;
35696
35677
  let reason_str;
35697
- if (0 === reason) {
35698
- S.combined_identical++;
35699
- reason_str = '==';
35700
- } else if (1 === reason) {
35701
- S.combined_edit_distance++;
35702
- reason_str = `\u{2264}${dist}`;
35703
- } else if (3 === reason) {
35704
- S.combined_cosine_distance++;
35705
- reason_str = `${dist}%`;
35706
- } else if (2 === reason) {
35707
- S.combined_pinyin_distance++;
35708
- reason_str = `P\u{2264}${dist}`;
35709
- } else throw new Error(`similarity wasm returned unknown reason: ${ret}`);
35678
+ switch(reason){
35679
+ case 0:
35680
+ S.combined_identical++;
35681
+ reason_str = '==';
35682
+ break;
35683
+ case 1:
35684
+ S.combined_edit_distance++;
35685
+ reason_str = `≤${dist}`;
35686
+ break;
35687
+ case 3:
35688
+ S.combined_cosine_distance++;
35689
+ reason_str = `${dist}%`;
35690
+ break;
35691
+ case 2:
35692
+ S.combined_pinyin_distance++;
35693
+ reason_str = `P≤${dist}`;
35694
+ break;
35695
+ default:
35696
+ throw new Error(`similarity wasm returned unknown reason: ${ret}`);
35697
+ }
35710
35698
  return {
35711
35699
  reason: reason_str,
35712
35700
  idx_diff
@@ -35768,7 +35756,7 @@ and limitations under the License.
35768
35756
  }
35769
35757
  /**
35770
35758
  * @author: xmcp(代码主要逻辑来源)
35771
- * @see: https://github.com/xmcp/pakku.js
35759
+ * @see: https://github.com/xmcp/pakku.js/blob/master/pakkujs/core/combine_worker.ts
35772
35760
  * @license: GPL-3.0
35773
35761
  * 本文件内代码来源见上,经部分修改,并整合config注释
35774
35762
  */ const DEFAULT_CONFIG = {
@@ -35796,51 +35784,51 @@ and limitations under the License.
35796
35784
  PROC_TYPE4: true,
35797
35785
  PROC_POOL1: false
35798
35786
  };
35799
- const ENDING_CHARS = new Set(".\u3002,\uFF0C/?\uFF1F!\uFF01\u2026~\uFF5E@^\u3001+=-_\u2642\u2640 ");
35787
+ const ENDING_CHARS = new Set('.。,,/??!!…~~@^、+=-_♂♀ ');
35800
35788
  const WIDTH_TABLE = new Map(Object.entries({
35801
- "\u3000": ' ',
35802
- "\uFF11": '1',
35803
- "\uFF12": '2',
35804
- "\uFF13": '3',
35805
- "\uFF14": '4',
35806
- "\uFF15": '5',
35807
- "\uFF16": '6',
35808
- "\uFF17": '7',
35809
- "\uFF18": '8',
35810
- "\uFF19": '9',
35811
- "\uFF10": '0',
35812
- '!': "\uFF01",
35813
- "\uFF20": '@',
35814
- "\uFF03": '#',
35815
- "\uFF04": '$',
35816
- "\uFF05": '%',
35817
- "\uFF3E": '^',
35818
- "\uFF06": '&',
35819
- "\uFF0A": '*',
35820
- "\uFF08": '(',
35821
- "\uFF09": ')',
35822
- "\uFF0D": '-',
35823
- "\uFF1D": '=',
35824
- "\uFF3F": '_',
35825
- "\uFF0B": '+',
35826
- "\uFF3B": '[',
35827
- "\uFF3D": ']',
35828
- "\uFF5B": '{',
35829
- "\uFF5D": '}',
35830
- ';': "\uFF1B",
35831
- "\uFF07": "'",
35832
- ':': "\uFF1A",
35833
- "\uFF02": '"',
35834
- ',': "\uFF0C",
35835
- "\uFF0E": '.',
35836
- "\uFF0F": '/',
35837
- "\uFF1C": '<',
35838
- "\uFF1E": '>',
35839
- '?': "\uFF1F",
35840
- "\uFF3C": '\\',
35841
- "\uFF5C": '|',
35842
- "\uFF40": '`',
35843
- "\uFF5E": '~',
35789
+ ' ': ' ',
35790
+ '1': '1',
35791
+ '2': '2',
35792
+ '3': '3',
35793
+ '4': '4',
35794
+ '5': '5',
35795
+ '6': '6',
35796
+ '7': '7',
35797
+ '8': '8',
35798
+ '9': '9',
35799
+ '0': '0',
35800
+ '!': '!',
35801
+ '@': '@',
35802
+ '#': '#',
35803
+ '$': '$',
35804
+ '%': '%',
35805
+ '^': '^',
35806
+ '&': '&',
35807
+ '*': '*',
35808
+ '(': '(',
35809
+ ')': ')',
35810
+ '-': '-',
35811
+ '=': '=',
35812
+ '_': '_',
35813
+ '+': '+',
35814
+ '[': '[',
35815
+ ']': ']',
35816
+ '{': '{',
35817
+ '}': '}',
35818
+ ';': ';',
35819
+ ''': "'",
35820
+ ':': ':',
35821
+ '"': '"',
35822
+ ',': ',',
35823
+ '.': '.',
35824
+ '/': '/',
35825
+ '<': '<',
35826
+ '>': '>',
35827
+ '?': '?',
35828
+ '\': '\\',
35829
+ '|': '|',
35830
+ '`': '`',
35831
+ '~': '~',
35844
35832
  q: 'q',
35845
35833
  w: 'w',
35846
35834
  e: 'e',
@@ -35954,13 +35942,16 @@ and limitations under the License.
35954
35942
  }
35955
35943
  function select_median_length(strs) {
35956
35944
  if (1 === strs.length) return strs[0];
35957
- const sorted = strs.sort((a, b)=>a.length - b.length);
35945
+ const sorted = strs.toSorted((a, b)=>a.length - b.length);
35958
35946
  const mid = Math.floor(sorted.length / 2);
35959
35947
  return sorted[mid];
35960
35948
  }
35961
35949
  async function load_wasm(wasm_mod) {
35962
35950
  await similarity_stub_init(wasm_mod ?? await lib_default().readFile(new URL(__webpack_require__("./src/pakku.js/similarity-gen.wasm"), __webpack_require__.b)));
35963
35951
  }
35952
+ function make_ptr_idx(idx, is_next_chunk) {
35953
+ return is_next_chunk ? -1 - idx : idx;
35954
+ }
35964
35955
  async function pakku_js_merge(chunk, config = DEFAULT_CONFIG) {
35965
35956
  await load_wasm();
35966
35957
  begin_chunk(config);
@@ -35990,7 +35981,7 @@ and limitations under the License.
35990
35981
  function apply_cluster(irs) {
35991
35982
  if (1 === irs.length) ret.clusters.push({
35992
35983
  peers_ptr: irs.map((ir)=>[
35993
- ir.idx,
35984
+ ir.ptr_idx,
35994
35985
  ir.sim_reason
35995
35986
  ]),
35996
35987
  desc: [],
@@ -36000,7 +35991,8 @@ and limitations under the License.
36000
35991
  });
36001
35992
  else {
36002
35993
  const text_cnts = new Map();
36003
- let most_texts = [], most_cnt = 0;
35994
+ let most_texts = [];
35995
+ let most_cnt = 0;
36004
35996
  for (const ir of irs){
36005
35997
  const text = ir.str;
36006
35998
  const cnt = 1 + (text_cnts.get(text) || 0);
@@ -36015,11 +36007,11 @@ and limitations under the License.
36015
36007
  const most_text = select_median_length(most_texts);
36016
36008
  ret.clusters.push({
36017
36009
  peers_ptr: irs.map((ir)=>[
36018
- ir.idx,
36010
+ ir.ptr_idx,
36019
36011
  ir.sim_reason
36020
36012
  ]),
36021
36013
  desc: most_cnt > 1 ? [
36022
- `\u{91C7}\u{7528}\u{4E86}\u{51FA}\u{73B0} ${most_cnt} \u{6B21}\u{7684}\u{6587}\u{672C}`
36014
+ `采用了出现 ${most_cnt} 次的文本`
36023
36015
  ] : [],
36024
36016
  chosen_str: most_text,
36025
36017
  danuni_count: most_cnt,
@@ -36027,26 +36019,26 @@ and limitations under the License.
36027
36019
  });
36028
36020
  }
36029
36021
  }
36030
- function obj_to_ir(objs, s) {
36022
+ function obj_to_ir(objs, s, is_next_chunk) {
36031
36023
  return objs.map((obj, idx)=>{
36032
36024
  if (!config.PROC_POOL1 && 1 === obj.pool) {
36033
36025
  if (s) {
36034
36026
  s.ignored_type++;
36035
- apply_single_cluster(idx, obj, "\u5DF2\u5FFD\u7565\u5B57\u5E55\u5F39\u5E55\uFF0C\u53EF\u4EE5\u5728\u9009\u9879\u4E2D\u4FEE\u6539");
36027
+ apply_single_cluster(idx, obj, '已忽略字幕弹幕,可以在选项中修改');
36036
36028
  }
36037
36029
  return null;
36038
36030
  }
36039
36031
  if (!config.PROC_TYPE7 && 4 === obj.mode) {
36040
36032
  if (s) {
36041
36033
  s.ignored_type++;
36042
- apply_single_cluster(idx, obj, "\u5DF2\u5FFD\u7565\u7279\u6B8A\u5F39\u5E55\uFF0C\u53EF\u4EE5\u5728\u9009\u9879\u4E2D\u4FEE\u6539");
36034
+ apply_single_cluster(idx, obj, '已忽略特殊弹幕,可以在选项中修改');
36043
36035
  }
36044
36036
  return null;
36045
36037
  }
36046
36038
  if (!config.PROC_TYPE4 && 1 === obj.mode) {
36047
36039
  if (s) {
36048
36040
  s.ignored_type++;
36049
- apply_single_cluster(idx, obj, "\u5DF2\u5FFD\u7565\u5E95\u90E8\u5F39\u5E55\uFF0C\u53EF\u4EE5\u5728\u9009\u9879\u4E2D\u4FEE\u6539");
36041
+ apply_single_cluster(idx, obj, '已忽略底部弹幕,可以在选项中修改');
36050
36042
  }
36051
36043
  return null;
36052
36044
  }
@@ -36060,7 +36052,7 @@ and limitations under the License.
36060
36052
  ret.deleted_chunk.push({
36061
36053
  ...obj,
36062
36054
  pakku: {
36063
- deleted_reason: `\u{547D}\u{4E2D}\u{9ED1}\u{540D}\u{5355}\u{FF1A}${matched}`
36055
+ deleted_reason: `命中黑名单:${matched}`
36064
36056
  }
36065
36057
  });
36066
36058
  }
@@ -36070,7 +36062,7 @@ and limitations under the License.
36070
36062
  if (whitelisted(disp_str, config)) {
36071
36063
  if (s) {
36072
36064
  s.ignored_whitelist++;
36073
- apply_single_cluster(idx, obj, "\u547D\u4E2D\u767D\u540D\u5355");
36065
+ apply_single_cluster(idx, obj, '命中白名单');
36074
36066
  }
36075
36067
  return null;
36076
36068
  }
@@ -36079,12 +36071,12 @@ and limitations under the License.
36079
36071
  return {
36080
36072
  obj,
36081
36073
  str: detaolued,
36082
- idx,
36074
+ ptr_idx: make_ptr_idx(idx, is_next_chunk),
36083
36075
  sim_reason: 'ORIG'
36084
36076
  };
36085
36077
  }).filter((obj)=>null !== obj);
36086
36078
  }
36087
- const danmus = obj_to_ir(chunk.objs, ret.stats);
36079
+ const danmus = obj_to_ir(chunk.objs, ret.stats, false);
36088
36080
  const nearby_danmus = new Queue();
36089
36081
  const THRESHOLD_MS = (config?.THRESHOLD ?? DEFAULT_CONFIG.THRESHOLD) * 1000;
36090
36082
  for (const dm of danmus){
@@ -36095,13 +36087,14 @@ and limitations under the License.
36095
36087
  nearby_danmus.pop();
36096
36088
  }
36097
36089
  const sim = detect_similarity(dm.str, dm.obj.mode, nearby_danmus.index_l, ret.stats);
36098
- if (null !== sim) {
36090
+ if (null === sim) nearby_danmus.push([
36091
+ dm
36092
+ ]);
36093
+ else {
36099
36094
  const candidate = nearby_danmus.storage[nearby_danmus.index_r - sim.idx_diff];
36100
36095
  dm.sim_reason = sim.reason;
36101
36096
  candidate.push(dm);
36102
- } else nearby_danmus.push([
36103
- dm
36104
- ]);
36097
+ }
36105
36098
  }
36106
36099
  begin_index_lock();
36107
36100
  for (const candidate of nearby_danmus)apply_cluster(candidate);
@@ -36121,7 +36114,8 @@ and limitations under the License.
36121
36114
  const selected = p.clusters.map((p)=>{
36122
36115
  if (1 === p.danuni_dans.length) return p.danuni_dans[0].danuni_dan;
36123
36116
  {
36124
- const dans = p.danuni_dans, pool = new src_UniPool(dans.map((d)=>d.danuni_dan));
36117
+ const dans = p.danuni_dans;
36118
+ const pool = new src_UniPool(dans.map((d)=>d.danuni_dan));
36125
36119
  function isAllBottomMode(p) {
36126
36120
  return p.dans.every((d)=>d.mode === dm_gen_namespaceObject.Modes.Bottom);
36127
36121
  }