@owocow/saber-ui 0.0.2 → 0.0.4

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.
Files changed (131) hide show
  1. package/README.md +206 -11
  2. package/dist/BadgeStatus.types.d.ts +1 -1
  3. package/dist/BadgeStatus.vue.d.ts +1 -1
  4. package/dist/SaberConfirmModal.vue_vue_type_script_setup_true_lang-Cqp9krYl.js +86 -0
  5. package/dist/SaberConfirmProvider.vue_vue_type_script_setup_true_lang-DUJ6ftNJ.js +30 -0
  6. package/dist/SaberDictCheckbox.vue_vue_type_script_setup_true_lang-DUbzy_C6.js +34 -0
  7. package/dist/SaberDictRadio.vue_vue_type_script_setup_true_lang-DR6-jSID.js +50 -0
  8. package/dist/SaberDictSelect.vue_vue_type_script_setup_true_lang-B8PTKNKX.js +35 -0
  9. package/dist/SaberDistrictSelect.vue_vue_type_script_setup_true_lang-BX8nLC35.js +257 -0
  10. package/dist/SaberInfo.vue_vue_type_script_setup_true_lang-B3W5VsGR.js +58 -0
  11. package/dist/SaberInfoProvider.vue_vue_type_script_setup_true_lang-3rF6bSCn.js +28 -0
  12. package/dist/SaberModal.vue_vue_type_script_setup_true_lang-DJno3jA3.js +71 -0
  13. package/dist/SaberModalWithMobile.vue_vue_type_script_setup_true_lang-aQlToncY.js +87 -0
  14. package/dist/SaberNoData.types.d.ts +11 -0
  15. package/dist/SaberNoData.vue.d.ts +24 -0
  16. package/dist/SaberPopSelect.vue_vue_type_script_setup_true_lang-BcS27NXI.js +125 -0
  17. package/dist/SaberStatus.vue_vue_type_script_setup_true_lang-D9aRVCow.js +38 -0
  18. package/dist/SaberSwitchBar.vue_vue_type_script_setup_true_lang-CDx3Dcas.js +47 -0
  19. package/dist/SaberUploadImage.vue_vue_type_script_setup_true_lang-CAwci2Vr.js +224 -0
  20. package/dist/colors.d.ts +1 -1
  21. package/dist/components/SaberConfirmModal.mjs +4 -0
  22. package/dist/components/SaberConfirmModal.vue.d.ts +28 -0
  23. package/dist/components/SaberConfirmProvider.mjs +4 -0
  24. package/dist/components/SaberConfirmProvider.vue.d.ts +2 -0
  25. package/dist/components/SaberInfo.mjs +4 -0
  26. package/dist/components/SaberInfo.types.d.ts +14 -0
  27. package/dist/components/SaberInfo.vue.d.ts +21 -0
  28. package/dist/components/SaberInfoProvider.mjs +4 -0
  29. package/dist/components/SaberInfoProvider.vue.d.ts +20 -0
  30. package/dist/components/SaberModalWithMobile.mjs +4 -0
  31. package/dist/components/SaberModalWithMobile.vue.d.ts +36 -0
  32. package/dist/components/SaberStatus.mjs +4 -0
  33. package/dist/components/SaberStatus.types.d.ts +1 -0
  34. package/dist/components/SaberStatus.vue.d.ts +8 -0
  35. package/dist/components/SaberSwitchBar.mjs +4 -0
  36. package/dist/components/SaberSwitchBar.types.d.ts +13 -0
  37. package/dist/components/SaberSwitchBar.vue.d.ts +18 -0
  38. package/dist/components/info-context.d.ts +3 -0
  39. package/dist/composables/index.d.ts +12 -0
  40. package/dist/composables/use-address-parse.d.ts +15 -0
  41. package/dist/composables/use-address-parse.mjs +20 -0
  42. package/dist/composables/use-boolean.d.ts +8 -0
  43. package/dist/composables/use-boolean.mjs +20 -0
  44. package/dist/composables/use-confirm.d.ts +34 -0
  45. package/dist/composables/use-confirm.mjs +28 -0
  46. package/dist/composables/use-delay-unmount.d.ts +7 -0
  47. package/dist/composables/use-delay-unmount.mjs +26 -0
  48. package/dist/composables/use-delete.d.ts +13 -0
  49. package/dist/composables/use-delete.mjs +19 -0
  50. package/dist/composables/use-loading.d.ts +6 -0
  51. package/dist/composables/use-loading.mjs +8 -0
  52. package/dist/composables/use-skeleton.d.ts +5 -0
  53. package/dist/composables/use-skeleton.mjs +23 -0
  54. package/dist/composables/use-table.d.ts +57 -0
  55. package/dist/composables/use-table.mjs +87 -0
  56. package/dist/composables.mjs +21 -0
  57. package/dist/district-service-cOu1tbQG.js +147 -0
  58. package/dist/district.d.ts +3 -0
  59. package/dist/district.mjs +8 -0
  60. package/dist/forms/components/SaberFilterBar.vue.d.ts +41 -0
  61. package/dist/forms/components/SaberFormModal.vue.d.ts +31 -0
  62. package/dist/forms/components/SaberModal.vue.d.ts +34 -0
  63. package/dist/forms/components/fields/SaberDictCheckbox.vue.d.ts +24 -0
  64. package/dist/forms/components/fields/SaberDictRadio.vue.d.ts +24 -0
  65. package/dist/forms/components/fields/SaberDictSelect.vue.d.ts +28 -0
  66. package/dist/forms/components/fields/SaberDistrictSelect.vue.d.ts +31 -0
  67. package/dist/forms/components/fields/SaberInput.vue.d.ts +16 -0
  68. package/dist/forms/components/fields/SaberInputNumber.vue.d.ts +11 -0
  69. package/dist/forms/components/fields/SaberPopSelect.vue.d.ts +25 -0
  70. package/dist/forms/components/fields/SaberRadioGroup.vue.d.ts +11 -0
  71. package/dist/forms/components/fields/SaberSelect.vue.d.ts +11 -0
  72. package/dist/forms/components/fields/SaberTextarea.vue.d.ts +11 -0
  73. package/dist/forms/components/fields/SaberUploadImage.vue.d.ts +113 -0
  74. package/dist/forms/dict-checkbox.mjs +4 -0
  75. package/dist/forms/dict-radio.mjs +4 -0
  76. package/dist/forms/dict-select.mjs +4 -0
  77. package/dist/forms/dict-source.d.ts +3 -0
  78. package/dist/forms/district-select.mjs +4 -0
  79. package/dist/forms/district-service.d.ts +46 -0
  80. package/dist/forms/filter-state.d.ts +4 -0
  81. package/dist/forms/index.d.ts +24 -0
  82. package/dist/forms/plugin.d.ts +20 -0
  83. package/dist/forms/pop-select.mjs +4 -0
  84. package/dist/forms/presets/basic.d.ts +5 -0
  85. package/dist/forms/registry.d.ts +15 -0
  86. package/dist/forms/types.d.ts +102 -0
  87. package/dist/forms/upload-image-source.d.ts +3 -0
  88. package/dist/forms/upload-image.mjs +4 -0
  89. package/dist/forms/use-dict-options.d.ts +8 -0
  90. package/dist/forms.mjs +45 -0
  91. package/dist/index-BealGwXp.js +5020 -0
  92. package/dist/index.d.ts +62 -1
  93. package/dist/index.mjs +122 -33
  94. package/dist/info-context-MfOfJNDT.js +4 -0
  95. package/dist/plugin-Dr3z0YFg.js +396 -0
  96. package/dist/types/api.d.ts +30 -0
  97. package/dist/types/auth.d.ts +54 -0
  98. package/dist/types/common.d.ts +14 -0
  99. package/dist/types/index.d.ts +3 -0
  100. package/dist/types/index.mjs +1 -0
  101. package/dist/upload-image-source-On8NHgmx.js +4 -0
  102. package/dist/use-dict-options-DjtbYYIa.js +38 -0
  103. package/dist/utils/addressParse.d.ts +37 -0
  104. package/dist/utils/addressParse.mjs +623 -0
  105. package/dist/utils/crypto.d.ts +11 -0
  106. package/dist/utils/crypto.mjs +36 -0
  107. package/dist/utils/filter.d.ts +20 -0
  108. package/dist/utils/filter.mjs +11 -0
  109. package/dist/utils/format.d.ts +9 -0
  110. package/dist/utils/format.mjs +7 -0
  111. package/dist/utils/http.d.ts +45 -0
  112. package/dist/utils/http.mjs +147 -0
  113. package/dist/utils/index.d.ts +12 -0
  114. package/dist/utils/index.mjs +41 -0
  115. package/dist/utils/klona.d.ts +2 -0
  116. package/dist/utils/klona.mjs +4 -0
  117. package/dist/utils/nanoid.d.ts +2 -0
  118. package/dist/utils/nanoid.mjs +4 -0
  119. package/dist/utils/permission.d.ts +45 -0
  120. package/dist/utils/permission.mjs +38 -0
  121. package/dist/utils/rsa.d.ts +26 -0
  122. package/dist/utils/rsa.mjs +2073 -0
  123. package/dist/utils/storage.d.ts +29 -0
  124. package/dist/utils/storage.mjs +39 -0
  125. package/dist/utils/toast.d.ts +26 -0
  126. package/dist/utils/toast.mjs +17 -0
  127. package/dist/utils/tree.d.ts +20 -0
  128. package/dist/utils/tree.mjs +30 -0
  129. package/package.json +179 -9
  130. package/dist/index.cjs +0 -1
  131. package/dist/vite.cjs +0 -1
@@ -0,0 +1,5020 @@
1
+ var rx = typeof globalThis < "u" ? globalThis : typeof window < "u" ? window : typeof global < "u" ? global : typeof self < "u" ? self : {};
2
+ function dr(S) {
3
+ return S && S.__esModule && Object.prototype.hasOwnProperty.call(S, "default") ? S.default : S;
4
+ }
5
+ function Br(S) {
6
+ if (Object.prototype.hasOwnProperty.call(S, "__esModule")) return S;
7
+ var P = S.default;
8
+ if (typeof P == "function") {
9
+ var B = function a() {
10
+ return this instanceof a ? Reflect.construct(P, arguments, this.constructor) : P.apply(this, arguments);
11
+ };
12
+ B.prototype = P.prototype;
13
+ } else B = {};
14
+ return Object.defineProperty(B, "__esModule", { value: !0 }), Object.keys(S).forEach(function(a) {
15
+ var D = Object.getOwnPropertyDescriptor(S, a);
16
+ Object.defineProperty(B, a, D.get ? D : {
17
+ enumerable: !0,
18
+ get: function() {
19
+ return S[a];
20
+ }
21
+ });
22
+ }), B;
23
+ }
24
+ var l0 = { exports: {} };
25
+ function hr(S) {
26
+ throw new Error('Could not dynamically require "' + S + '". Please configure the dynamicRequireTargets or/and ignoreDynamicRequires option of @rollup/plugin-commonjs appropriately for this require call to work.');
27
+ }
28
+ var C0 = { exports: {} };
29
+ const lr = {}, Cr = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
30
+ __proto__: null,
31
+ default: lr
32
+ }, Symbol.toStringTag, { value: "Module" })), Er = /* @__PURE__ */ Br(Cr);
33
+ var Ar = C0.exports, lx;
34
+ function L() {
35
+ return lx || (lx = 1, (function(S, P) {
36
+ (function(B, a) {
37
+ S.exports = a();
38
+ })(Ar, function() {
39
+ var B = B || (function(a, D) {
40
+ var F;
41
+ if (typeof window < "u" && window.crypto && (F = window.crypto), typeof self < "u" && self.crypto && (F = self.crypto), typeof globalThis < "u" && globalThis.crypto && (F = globalThis.crypto), !F && typeof window < "u" && window.msCrypto && (F = window.msCrypto), !F && typeof rx < "u" && rx.crypto && (F = rx.crypto), !F && typeof hr == "function")
42
+ try {
43
+ F = Er;
44
+ } catch {
45
+ }
46
+ var w = function() {
47
+ if (F) {
48
+ if (typeof F.getRandomValues == "function")
49
+ try {
50
+ return F.getRandomValues(new Uint32Array(1))[0];
51
+ } catch {
52
+ }
53
+ if (typeof F.randomBytes == "function")
54
+ try {
55
+ return F.randomBytes(4).readInt32LE();
56
+ } catch {
57
+ }
58
+ }
59
+ throw new Error("Native crypto module could not be used to get secure random number.");
60
+ }, u = Object.create || /* @__PURE__ */ (function() {
61
+ function t() {
62
+ }
63
+ return function(n) {
64
+ var i;
65
+ return t.prototype = n, i = new t(), t.prototype = null, i;
66
+ };
67
+ })(), h = {}, x = h.lib = {}, e = x.Base = /* @__PURE__ */ (function() {
68
+ return {
69
+ /**
70
+ * Creates a new object that inherits from this object.
71
+ *
72
+ * @param {Object} overrides Properties to copy into the new object.
73
+ *
74
+ * @return {Object} The new object.
75
+ *
76
+ * @static
77
+ *
78
+ * @example
79
+ *
80
+ * var MyType = CryptoJS.lib.Base.extend({
81
+ * field: 'value',
82
+ *
83
+ * method: function () {
84
+ * }
85
+ * });
86
+ */
87
+ extend: function(t) {
88
+ var n = u(this);
89
+ return t && n.mixIn(t), (!n.hasOwnProperty("init") || this.init === n.init) && (n.init = function() {
90
+ n.$super.init.apply(this, arguments);
91
+ }), n.init.prototype = n, n.$super = this, n;
92
+ },
93
+ /**
94
+ * Extends this object and runs the init method.
95
+ * Arguments to create() will be passed to init().
96
+ *
97
+ * @return {Object} The new object.
98
+ *
99
+ * @static
100
+ *
101
+ * @example
102
+ *
103
+ * var instance = MyType.create();
104
+ */
105
+ create: function() {
106
+ var t = this.extend();
107
+ return t.init.apply(t, arguments), t;
108
+ },
109
+ /**
110
+ * Initializes a newly created object.
111
+ * Override this method to add some logic when your objects are created.
112
+ *
113
+ * @example
114
+ *
115
+ * var MyType = CryptoJS.lib.Base.extend({
116
+ * init: function () {
117
+ * // ...
118
+ * }
119
+ * });
120
+ */
121
+ init: function() {
122
+ },
123
+ /**
124
+ * Copies properties into this object.
125
+ *
126
+ * @param {Object} properties The properties to mix in.
127
+ *
128
+ * @example
129
+ *
130
+ * MyType.mixIn({
131
+ * field: 'value'
132
+ * });
133
+ */
134
+ mixIn: function(t) {
135
+ for (var n in t)
136
+ t.hasOwnProperty(n) && (this[n] = t[n]);
137
+ t.hasOwnProperty("toString") && (this.toString = t.toString);
138
+ },
139
+ /**
140
+ * Creates a copy of this object.
141
+ *
142
+ * @return {Object} The clone.
143
+ *
144
+ * @example
145
+ *
146
+ * var clone = instance.clone();
147
+ */
148
+ clone: function() {
149
+ return this.init.prototype.extend(this);
150
+ }
151
+ };
152
+ })(), d = x.WordArray = e.extend({
153
+ /**
154
+ * Initializes a newly created word array.
155
+ *
156
+ * @param {Array} words (Optional) An array of 32-bit words.
157
+ * @param {number} sigBytes (Optional) The number of significant bytes in the words.
158
+ *
159
+ * @example
160
+ *
161
+ * var wordArray = CryptoJS.lib.WordArray.create();
162
+ * var wordArray = CryptoJS.lib.WordArray.create([0x00010203, 0x04050607]);
163
+ * var wordArray = CryptoJS.lib.WordArray.create([0x00010203, 0x04050607], 6);
164
+ */
165
+ init: function(t, n) {
166
+ t = this.words = t || [], n != D ? this.sigBytes = n : this.sigBytes = t.length * 4;
167
+ },
168
+ /**
169
+ * Converts this word array to a string.
170
+ *
171
+ * @param {Encoder} encoder (Optional) The encoding strategy to use. Default: CryptoJS.enc.Hex
172
+ *
173
+ * @return {string} The stringified word array.
174
+ *
175
+ * @example
176
+ *
177
+ * var string = wordArray + '';
178
+ * var string = wordArray.toString();
179
+ * var string = wordArray.toString(CryptoJS.enc.Utf8);
180
+ */
181
+ toString: function(t) {
182
+ return (t || s).stringify(this);
183
+ },
184
+ /**
185
+ * Concatenates a word array to this word array.
186
+ *
187
+ * @param {WordArray} wordArray The word array to append.
188
+ *
189
+ * @return {WordArray} This word array.
190
+ *
191
+ * @example
192
+ *
193
+ * wordArray1.concat(wordArray2);
194
+ */
195
+ concat: function(t) {
196
+ var n = this.words, i = t.words, E = this.sigBytes, C = t.sigBytes;
197
+ if (this.clamp(), E % 4)
198
+ for (var A = 0; A < C; A++) {
199
+ var _ = i[A >>> 2] >>> 24 - A % 4 * 8 & 255;
200
+ n[E + A >>> 2] |= _ << 24 - (E + A) % 4 * 8;
201
+ }
202
+ else
203
+ for (var R = 0; R < C; R += 4)
204
+ n[E + R >>> 2] = i[R >>> 2];
205
+ return this.sigBytes += C, this;
206
+ },
207
+ /**
208
+ * Removes insignificant bits.
209
+ *
210
+ * @example
211
+ *
212
+ * wordArray.clamp();
213
+ */
214
+ clamp: function() {
215
+ var t = this.words, n = this.sigBytes;
216
+ t[n >>> 2] &= 4294967295 << 32 - n % 4 * 8, t.length = a.ceil(n / 4);
217
+ },
218
+ /**
219
+ * Creates a copy of this word array.
220
+ *
221
+ * @return {WordArray} The clone.
222
+ *
223
+ * @example
224
+ *
225
+ * var clone = wordArray.clone();
226
+ */
227
+ clone: function() {
228
+ var t = e.clone.call(this);
229
+ return t.words = this.words.slice(0), t;
230
+ },
231
+ /**
232
+ * Creates a word array filled with random bytes.
233
+ *
234
+ * @param {number} nBytes The number of random bytes to generate.
235
+ *
236
+ * @return {WordArray} The random word array.
237
+ *
238
+ * @static
239
+ *
240
+ * @example
241
+ *
242
+ * var wordArray = CryptoJS.lib.WordArray.random(16);
243
+ */
244
+ random: function(t) {
245
+ for (var n = [], i = 0; i < t; i += 4)
246
+ n.push(w());
247
+ return new d.init(n, t);
248
+ }
249
+ }), r = h.enc = {}, s = r.Hex = {
250
+ /**
251
+ * Converts a word array to a hex string.
252
+ *
253
+ * @param {WordArray} wordArray The word array.
254
+ *
255
+ * @return {string} The hex string.
256
+ *
257
+ * @static
258
+ *
259
+ * @example
260
+ *
261
+ * var hexString = CryptoJS.enc.Hex.stringify(wordArray);
262
+ */
263
+ stringify: function(t) {
264
+ for (var n = t.words, i = t.sigBytes, E = [], C = 0; C < i; C++) {
265
+ var A = n[C >>> 2] >>> 24 - C % 4 * 8 & 255;
266
+ E.push((A >>> 4).toString(16)), E.push((A & 15).toString(16));
267
+ }
268
+ return E.join("");
269
+ },
270
+ /**
271
+ * Converts a hex string to a word array.
272
+ *
273
+ * @param {string} hexStr The hex string.
274
+ *
275
+ * @return {WordArray} The word array.
276
+ *
277
+ * @static
278
+ *
279
+ * @example
280
+ *
281
+ * var wordArray = CryptoJS.enc.Hex.parse(hexString);
282
+ */
283
+ parse: function(t) {
284
+ for (var n = t.length, i = [], E = 0; E < n; E += 2)
285
+ i[E >>> 3] |= parseInt(t.substr(E, 2), 16) << 24 - E % 8 * 4;
286
+ return new d.init(i, n / 2);
287
+ }
288
+ }, o = r.Latin1 = {
289
+ /**
290
+ * Converts a word array to a Latin1 string.
291
+ *
292
+ * @param {WordArray} wordArray The word array.
293
+ *
294
+ * @return {string} The Latin1 string.
295
+ *
296
+ * @static
297
+ *
298
+ * @example
299
+ *
300
+ * var latin1String = CryptoJS.enc.Latin1.stringify(wordArray);
301
+ */
302
+ stringify: function(t) {
303
+ for (var n = t.words, i = t.sigBytes, E = [], C = 0; C < i; C++) {
304
+ var A = n[C >>> 2] >>> 24 - C % 4 * 8 & 255;
305
+ E.push(String.fromCharCode(A));
306
+ }
307
+ return E.join("");
308
+ },
309
+ /**
310
+ * Converts a Latin1 string to a word array.
311
+ *
312
+ * @param {string} latin1Str The Latin1 string.
313
+ *
314
+ * @return {WordArray} The word array.
315
+ *
316
+ * @static
317
+ *
318
+ * @example
319
+ *
320
+ * var wordArray = CryptoJS.enc.Latin1.parse(latin1String);
321
+ */
322
+ parse: function(t) {
323
+ for (var n = t.length, i = [], E = 0; E < n; E++)
324
+ i[E >>> 2] |= (t.charCodeAt(E) & 255) << 24 - E % 4 * 8;
325
+ return new d.init(i, n);
326
+ }
327
+ }, c = r.Utf8 = {
328
+ /**
329
+ * Converts a word array to a UTF-8 string.
330
+ *
331
+ * @param {WordArray} wordArray The word array.
332
+ *
333
+ * @return {string} The UTF-8 string.
334
+ *
335
+ * @static
336
+ *
337
+ * @example
338
+ *
339
+ * var utf8String = CryptoJS.enc.Utf8.stringify(wordArray);
340
+ */
341
+ stringify: function(t) {
342
+ try {
343
+ return decodeURIComponent(escape(o.stringify(t)));
344
+ } catch {
345
+ throw new Error("Malformed UTF-8 data");
346
+ }
347
+ },
348
+ /**
349
+ * Converts a UTF-8 string to a word array.
350
+ *
351
+ * @param {string} utf8Str The UTF-8 string.
352
+ *
353
+ * @return {WordArray} The word array.
354
+ *
355
+ * @static
356
+ *
357
+ * @example
358
+ *
359
+ * var wordArray = CryptoJS.enc.Utf8.parse(utf8String);
360
+ */
361
+ parse: function(t) {
362
+ return o.parse(unescape(encodeURIComponent(t)));
363
+ }
364
+ }, f = x.BufferedBlockAlgorithm = e.extend({
365
+ /**
366
+ * Resets this block algorithm's data buffer to its initial state.
367
+ *
368
+ * @example
369
+ *
370
+ * bufferedBlockAlgorithm.reset();
371
+ */
372
+ reset: function() {
373
+ this._data = new d.init(), this._nDataBytes = 0;
374
+ },
375
+ /**
376
+ * Adds new data to this block algorithm's buffer.
377
+ *
378
+ * @param {WordArray|string} data The data to append. Strings are converted to a WordArray using UTF-8.
379
+ *
380
+ * @example
381
+ *
382
+ * bufferedBlockAlgorithm._append('data');
383
+ * bufferedBlockAlgorithm._append(wordArray);
384
+ */
385
+ _append: function(t) {
386
+ typeof t == "string" && (t = c.parse(t)), this._data.concat(t), this._nDataBytes += t.sigBytes;
387
+ },
388
+ /**
389
+ * Processes available data blocks.
390
+ *
391
+ * This method invokes _doProcessBlock(offset), which must be implemented by a concrete subtype.
392
+ *
393
+ * @param {boolean} doFlush Whether all blocks and partial blocks should be processed.
394
+ *
395
+ * @return {WordArray} The processed data.
396
+ *
397
+ * @example
398
+ *
399
+ * var processedData = bufferedBlockAlgorithm._process();
400
+ * var processedData = bufferedBlockAlgorithm._process(!!'flush');
401
+ */
402
+ _process: function(t) {
403
+ var n, i = this._data, E = i.words, C = i.sigBytes, A = this.blockSize, _ = A * 4, R = C / _;
404
+ t ? R = a.ceil(R) : R = a.max((R | 0) - this._minBufferSize, 0);
405
+ var v = R * A, p = a.min(v * 4, C);
406
+ if (v) {
407
+ for (var y = 0; y < v; y += A)
408
+ this._doProcessBlock(E, y);
409
+ n = E.splice(0, v), i.sigBytes -= p;
410
+ }
411
+ return new d.init(n, p);
412
+ },
413
+ /**
414
+ * Creates a copy of this object.
415
+ *
416
+ * @return {Object} The clone.
417
+ *
418
+ * @example
419
+ *
420
+ * var clone = bufferedBlockAlgorithm.clone();
421
+ */
422
+ clone: function() {
423
+ var t = e.clone.call(this);
424
+ return t._data = this._data.clone(), t;
425
+ },
426
+ _minBufferSize: 0
427
+ });
428
+ x.Hasher = f.extend({
429
+ /**
430
+ * Configuration options.
431
+ */
432
+ cfg: e.extend(),
433
+ /**
434
+ * Initializes a newly created hasher.
435
+ *
436
+ * @param {Object} cfg (Optional) The configuration options to use for this hash computation.
437
+ *
438
+ * @example
439
+ *
440
+ * var hasher = CryptoJS.algo.SHA256.create();
441
+ */
442
+ init: function(t) {
443
+ this.cfg = this.cfg.extend(t), this.reset();
444
+ },
445
+ /**
446
+ * Resets this hasher to its initial state.
447
+ *
448
+ * @example
449
+ *
450
+ * hasher.reset();
451
+ */
452
+ reset: function() {
453
+ f.reset.call(this), this._doReset();
454
+ },
455
+ /**
456
+ * Updates this hasher with a message.
457
+ *
458
+ * @param {WordArray|string} messageUpdate The message to append.
459
+ *
460
+ * @return {Hasher} This hasher.
461
+ *
462
+ * @example
463
+ *
464
+ * hasher.update('message');
465
+ * hasher.update(wordArray);
466
+ */
467
+ update: function(t) {
468
+ return this._append(t), this._process(), this;
469
+ },
470
+ /**
471
+ * Finalizes the hash computation.
472
+ * Note that the finalize operation is effectively a destructive, read-once operation.
473
+ *
474
+ * @param {WordArray|string} messageUpdate (Optional) A final message update.
475
+ *
476
+ * @return {WordArray} The hash.
477
+ *
478
+ * @example
479
+ *
480
+ * var hash = hasher.finalize();
481
+ * var hash = hasher.finalize('message');
482
+ * var hash = hasher.finalize(wordArray);
483
+ */
484
+ finalize: function(t) {
485
+ t && this._append(t);
486
+ var n = this._doFinalize();
487
+ return n;
488
+ },
489
+ blockSize: 16,
490
+ /**
491
+ * Creates a shortcut function to a hasher's object interface.
492
+ *
493
+ * @param {Hasher} hasher The hasher to create a helper for.
494
+ *
495
+ * @return {Function} The shortcut function.
496
+ *
497
+ * @static
498
+ *
499
+ * @example
500
+ *
501
+ * var SHA256 = CryptoJS.lib.Hasher._createHelper(CryptoJS.algo.SHA256);
502
+ */
503
+ _createHelper: function(t) {
504
+ return function(n, i) {
505
+ return new t.init(i).finalize(n);
506
+ };
507
+ },
508
+ /**
509
+ * Creates a shortcut function to the HMAC's object interface.
510
+ *
511
+ * @param {Hasher} hasher The hasher to use in this HMAC helper.
512
+ *
513
+ * @return {Function} The shortcut function.
514
+ *
515
+ * @static
516
+ *
517
+ * @example
518
+ *
519
+ * var HmacSHA256 = CryptoJS.lib.Hasher._createHmacHelper(CryptoJS.algo.SHA256);
520
+ */
521
+ _createHmacHelper: function(t) {
522
+ return function(n, i) {
523
+ return new l.HMAC.init(t, i).finalize(n);
524
+ };
525
+ }
526
+ });
527
+ var l = h.algo = {};
528
+ return h;
529
+ })(Math);
530
+ return B;
531
+ });
532
+ })(C0)), C0.exports;
533
+ }
534
+ var E0 = { exports: {} }, pr = E0.exports, Cx;
535
+ function V0() {
536
+ return Cx || (Cx = 1, (function(S, P) {
537
+ (function(B, a) {
538
+ S.exports = a(L());
539
+ })(pr, function(B) {
540
+ return (function(a) {
541
+ var D = B, F = D.lib, w = F.Base, u = F.WordArray, h = D.x64 = {};
542
+ h.Word = w.extend({
543
+ /**
544
+ * Initializes a newly created 64-bit word.
545
+ *
546
+ * @param {number} high The high 32 bits.
547
+ * @param {number} low The low 32 bits.
548
+ *
549
+ * @example
550
+ *
551
+ * var x64Word = CryptoJS.x64.Word.create(0x00010203, 0x04050607);
552
+ */
553
+ init: function(x, e) {
554
+ this.high = x, this.low = e;
555
+ }
556
+ /**
557
+ * Bitwise NOTs this word.
558
+ *
559
+ * @return {X64Word} A new x64-Word object after negating.
560
+ *
561
+ * @example
562
+ *
563
+ * var negated = x64Word.not();
564
+ */
565
+ // not: function () {
566
+ // var high = ~this.high;
567
+ // var low = ~this.low;
568
+ // return X64Word.create(high, low);
569
+ // },
570
+ /**
571
+ * Bitwise ANDs this word with the passed word.
572
+ *
573
+ * @param {X64Word} word The x64-Word to AND with this word.
574
+ *
575
+ * @return {X64Word} A new x64-Word object after ANDing.
576
+ *
577
+ * @example
578
+ *
579
+ * var anded = x64Word.and(anotherX64Word);
580
+ */
581
+ // and: function (word) {
582
+ // var high = this.high & word.high;
583
+ // var low = this.low & word.low;
584
+ // return X64Word.create(high, low);
585
+ // },
586
+ /**
587
+ * Bitwise ORs this word with the passed word.
588
+ *
589
+ * @param {X64Word} word The x64-Word to OR with this word.
590
+ *
591
+ * @return {X64Word} A new x64-Word object after ORing.
592
+ *
593
+ * @example
594
+ *
595
+ * var ored = x64Word.or(anotherX64Word);
596
+ */
597
+ // or: function (word) {
598
+ // var high = this.high | word.high;
599
+ // var low = this.low | word.low;
600
+ // return X64Word.create(high, low);
601
+ // },
602
+ /**
603
+ * Bitwise XORs this word with the passed word.
604
+ *
605
+ * @param {X64Word} word The x64-Word to XOR with this word.
606
+ *
607
+ * @return {X64Word} A new x64-Word object after XORing.
608
+ *
609
+ * @example
610
+ *
611
+ * var xored = x64Word.xor(anotherX64Word);
612
+ */
613
+ // xor: function (word) {
614
+ // var high = this.high ^ word.high;
615
+ // var low = this.low ^ word.low;
616
+ // return X64Word.create(high, low);
617
+ // },
618
+ /**
619
+ * Shifts this word n bits to the left.
620
+ *
621
+ * @param {number} n The number of bits to shift.
622
+ *
623
+ * @return {X64Word} A new x64-Word object after shifting.
624
+ *
625
+ * @example
626
+ *
627
+ * var shifted = x64Word.shiftL(25);
628
+ */
629
+ // shiftL: function (n) {
630
+ // if (n < 32) {
631
+ // var high = (this.high << n) | (this.low >>> (32 - n));
632
+ // var low = this.low << n;
633
+ // } else {
634
+ // var high = this.low << (n - 32);
635
+ // var low = 0;
636
+ // }
637
+ // return X64Word.create(high, low);
638
+ // },
639
+ /**
640
+ * Shifts this word n bits to the right.
641
+ *
642
+ * @param {number} n The number of bits to shift.
643
+ *
644
+ * @return {X64Word} A new x64-Word object after shifting.
645
+ *
646
+ * @example
647
+ *
648
+ * var shifted = x64Word.shiftR(7);
649
+ */
650
+ // shiftR: function (n) {
651
+ // if (n < 32) {
652
+ // var low = (this.low >>> n) | (this.high << (32 - n));
653
+ // var high = this.high >>> n;
654
+ // } else {
655
+ // var low = this.high >>> (n - 32);
656
+ // var high = 0;
657
+ // }
658
+ // return X64Word.create(high, low);
659
+ // },
660
+ /**
661
+ * Rotates this word n bits to the left.
662
+ *
663
+ * @param {number} n The number of bits to rotate.
664
+ *
665
+ * @return {X64Word} A new x64-Word object after rotating.
666
+ *
667
+ * @example
668
+ *
669
+ * var rotated = x64Word.rotL(25);
670
+ */
671
+ // rotL: function (n) {
672
+ // return this.shiftL(n).or(this.shiftR(64 - n));
673
+ // },
674
+ /**
675
+ * Rotates this word n bits to the right.
676
+ *
677
+ * @param {number} n The number of bits to rotate.
678
+ *
679
+ * @return {X64Word} A new x64-Word object after rotating.
680
+ *
681
+ * @example
682
+ *
683
+ * var rotated = x64Word.rotR(7);
684
+ */
685
+ // rotR: function (n) {
686
+ // return this.shiftR(n).or(this.shiftL(64 - n));
687
+ // },
688
+ /**
689
+ * Adds this word with the passed word.
690
+ *
691
+ * @param {X64Word} word The x64-Word to add with this word.
692
+ *
693
+ * @return {X64Word} A new x64-Word object after adding.
694
+ *
695
+ * @example
696
+ *
697
+ * var added = x64Word.add(anotherX64Word);
698
+ */
699
+ // add: function (word) {
700
+ // var low = (this.low + word.low) | 0;
701
+ // var carry = (low >>> 0) < (this.low >>> 0) ? 1 : 0;
702
+ // var high = (this.high + word.high + carry) | 0;
703
+ // return X64Word.create(high, low);
704
+ // }
705
+ }), h.WordArray = w.extend({
706
+ /**
707
+ * Initializes a newly created word array.
708
+ *
709
+ * @param {Array} words (Optional) An array of CryptoJS.x64.Word objects.
710
+ * @param {number} sigBytes (Optional) The number of significant bytes in the words.
711
+ *
712
+ * @example
713
+ *
714
+ * var wordArray = CryptoJS.x64.WordArray.create();
715
+ *
716
+ * var wordArray = CryptoJS.x64.WordArray.create([
717
+ * CryptoJS.x64.Word.create(0x00010203, 0x04050607),
718
+ * CryptoJS.x64.Word.create(0x18191a1b, 0x1c1d1e1f)
719
+ * ]);
720
+ *
721
+ * var wordArray = CryptoJS.x64.WordArray.create([
722
+ * CryptoJS.x64.Word.create(0x00010203, 0x04050607),
723
+ * CryptoJS.x64.Word.create(0x18191a1b, 0x1c1d1e1f)
724
+ * ], 10);
725
+ */
726
+ init: function(x, e) {
727
+ x = this.words = x || [], e != a ? this.sigBytes = e : this.sigBytes = x.length * 8;
728
+ },
729
+ /**
730
+ * Converts this 64-bit word array to a 32-bit word array.
731
+ *
732
+ * @return {CryptoJS.lib.WordArray} This word array's data as a 32-bit word array.
733
+ *
734
+ * @example
735
+ *
736
+ * var x32WordArray = x64WordArray.toX32();
737
+ */
738
+ toX32: function() {
739
+ for (var x = this.words, e = x.length, d = [], r = 0; r < e; r++) {
740
+ var s = x[r];
741
+ d.push(s.high), d.push(s.low);
742
+ }
743
+ return u.create(d, this.sigBytes);
744
+ },
745
+ /**
746
+ * Creates a copy of this word array.
747
+ *
748
+ * @return {X64WordArray} The clone.
749
+ *
750
+ * @example
751
+ *
752
+ * var clone = x64WordArray.clone();
753
+ */
754
+ clone: function() {
755
+ for (var x = w.clone.call(this), e = x.words = this.words.slice(0), d = e.length, r = 0; r < d; r++)
756
+ e[r] = e[r].clone();
757
+ return x;
758
+ }
759
+ });
760
+ })(), B;
761
+ });
762
+ })(E0)), E0.exports;
763
+ }
764
+ var A0 = { exports: {} }, Fr = A0.exports, Ex;
765
+ function Dr() {
766
+ return Ex || (Ex = 1, (function(S, P) {
767
+ (function(B, a) {
768
+ S.exports = a(L());
769
+ })(Fr, function(B) {
770
+ return (function() {
771
+ if (typeof ArrayBuffer == "function") {
772
+ var a = B, D = a.lib, F = D.WordArray, w = F.init, u = F.init = function(h) {
773
+ if (h instanceof ArrayBuffer && (h = new Uint8Array(h)), (h instanceof Int8Array || typeof Uint8ClampedArray < "u" && h instanceof Uint8ClampedArray || h instanceof Int16Array || h instanceof Uint16Array || h instanceof Int32Array || h instanceof Uint32Array || h instanceof Float32Array || h instanceof Float64Array) && (h = new Uint8Array(h.buffer, h.byteOffset, h.byteLength)), h instanceof Uint8Array) {
774
+ for (var x = h.byteLength, e = [], d = 0; d < x; d++)
775
+ e[d >>> 2] |= h[d] << 24 - d % 4 * 8;
776
+ w.call(this, e, x);
777
+ } else
778
+ w.apply(this, arguments);
779
+ };
780
+ u.prototype = F;
781
+ }
782
+ })(), B.lib.WordArray;
783
+ });
784
+ })(A0)), A0.exports;
785
+ }
786
+ var p0 = { exports: {} }, _r = p0.exports, Ax;
787
+ function br() {
788
+ return Ax || (Ax = 1, (function(S, P) {
789
+ (function(B, a) {
790
+ S.exports = a(L());
791
+ })(_r, function(B) {
792
+ return (function() {
793
+ var a = B, D = a.lib, F = D.WordArray, w = a.enc;
794
+ w.Utf16 = w.Utf16BE = {
795
+ /**
796
+ * Converts a word array to a UTF-16 BE string.
797
+ *
798
+ * @param {WordArray} wordArray The word array.
799
+ *
800
+ * @return {string} The UTF-16 BE string.
801
+ *
802
+ * @static
803
+ *
804
+ * @example
805
+ *
806
+ * var utf16String = CryptoJS.enc.Utf16.stringify(wordArray);
807
+ */
808
+ stringify: function(h) {
809
+ for (var x = h.words, e = h.sigBytes, d = [], r = 0; r < e; r += 2) {
810
+ var s = x[r >>> 2] >>> 16 - r % 4 * 8 & 65535;
811
+ d.push(String.fromCharCode(s));
812
+ }
813
+ return d.join("");
814
+ },
815
+ /**
816
+ * Converts a UTF-16 BE string to a word array.
817
+ *
818
+ * @param {string} utf16Str The UTF-16 BE string.
819
+ *
820
+ * @return {WordArray} The word array.
821
+ *
822
+ * @static
823
+ *
824
+ * @example
825
+ *
826
+ * var wordArray = CryptoJS.enc.Utf16.parse(utf16String);
827
+ */
828
+ parse: function(h) {
829
+ for (var x = h.length, e = [], d = 0; d < x; d++)
830
+ e[d >>> 1] |= h.charCodeAt(d) << 16 - d % 2 * 16;
831
+ return F.create(e, x * 2);
832
+ }
833
+ }, w.Utf16LE = {
834
+ /**
835
+ * Converts a word array to a UTF-16 LE string.
836
+ *
837
+ * @param {WordArray} wordArray The word array.
838
+ *
839
+ * @return {string} The UTF-16 LE string.
840
+ *
841
+ * @static
842
+ *
843
+ * @example
844
+ *
845
+ * var utf16Str = CryptoJS.enc.Utf16LE.stringify(wordArray);
846
+ */
847
+ stringify: function(h) {
848
+ for (var x = h.words, e = h.sigBytes, d = [], r = 0; r < e; r += 2) {
849
+ var s = u(x[r >>> 2] >>> 16 - r % 4 * 8 & 65535);
850
+ d.push(String.fromCharCode(s));
851
+ }
852
+ return d.join("");
853
+ },
854
+ /**
855
+ * Converts a UTF-16 LE string to a word array.
856
+ *
857
+ * @param {string} utf16Str The UTF-16 LE string.
858
+ *
859
+ * @return {WordArray} The word array.
860
+ *
861
+ * @static
862
+ *
863
+ * @example
864
+ *
865
+ * var wordArray = CryptoJS.enc.Utf16LE.parse(utf16Str);
866
+ */
867
+ parse: function(h) {
868
+ for (var x = h.length, e = [], d = 0; d < x; d++)
869
+ e[d >>> 1] |= u(h.charCodeAt(d) << 16 - d % 2 * 16);
870
+ return F.create(e, x * 2);
871
+ }
872
+ };
873
+ function u(h) {
874
+ return h << 8 & 4278255360 | h >>> 8 & 16711935;
875
+ }
876
+ })(), B.enc.Utf16;
877
+ });
878
+ })(p0)), p0.exports;
879
+ }
880
+ var F0 = { exports: {} }, yr = F0.exports, px;
881
+ function r0() {
882
+ return px || (px = 1, (function(S, P) {
883
+ (function(B, a) {
884
+ S.exports = a(L());
885
+ })(yr, function(B) {
886
+ return (function() {
887
+ var a = B, D = a.lib, F = D.WordArray, w = a.enc;
888
+ w.Base64 = {
889
+ /**
890
+ * Converts a word array to a Base64 string.
891
+ *
892
+ * @param {WordArray} wordArray The word array.
893
+ *
894
+ * @return {string} The Base64 string.
895
+ *
896
+ * @static
897
+ *
898
+ * @example
899
+ *
900
+ * var base64String = CryptoJS.enc.Base64.stringify(wordArray);
901
+ */
902
+ stringify: function(h) {
903
+ var x = h.words, e = h.sigBytes, d = this._map;
904
+ h.clamp();
905
+ for (var r = [], s = 0; s < e; s += 3)
906
+ for (var o = x[s >>> 2] >>> 24 - s % 4 * 8 & 255, c = x[s + 1 >>> 2] >>> 24 - (s + 1) % 4 * 8 & 255, f = x[s + 2 >>> 2] >>> 24 - (s + 2) % 4 * 8 & 255, l = o << 16 | c << 8 | f, t = 0; t < 4 && s + t * 0.75 < e; t++)
907
+ r.push(d.charAt(l >>> 6 * (3 - t) & 63));
908
+ var n = d.charAt(64);
909
+ if (n)
910
+ for (; r.length % 4; )
911
+ r.push(n);
912
+ return r.join("");
913
+ },
914
+ /**
915
+ * Converts a Base64 string to a word array.
916
+ *
917
+ * @param {string} base64Str The Base64 string.
918
+ *
919
+ * @return {WordArray} The word array.
920
+ *
921
+ * @static
922
+ *
923
+ * @example
924
+ *
925
+ * var wordArray = CryptoJS.enc.Base64.parse(base64String);
926
+ */
927
+ parse: function(h) {
928
+ var x = h.length, e = this._map, d = this._reverseMap;
929
+ if (!d) {
930
+ d = this._reverseMap = [];
931
+ for (var r = 0; r < e.length; r++)
932
+ d[e.charCodeAt(r)] = r;
933
+ }
934
+ var s = e.charAt(64);
935
+ if (s) {
936
+ var o = h.indexOf(s);
937
+ o !== -1 && (x = o);
938
+ }
939
+ return u(h, x, d);
940
+ },
941
+ _map: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="
942
+ };
943
+ function u(h, x, e) {
944
+ for (var d = [], r = 0, s = 0; s < x; s++)
945
+ if (s % 4) {
946
+ var o = e[h.charCodeAt(s - 1)] << s % 4 * 2, c = e[h.charCodeAt(s)] >>> 6 - s % 4 * 2, f = o | c;
947
+ d[r >>> 2] |= f << 24 - r % 4 * 8, r++;
948
+ }
949
+ return F.create(d, r);
950
+ }
951
+ })(), B.enc.Base64;
952
+ });
953
+ })(F0)), F0.exports;
954
+ }
955
+ var D0 = { exports: {} }, gr = D0.exports, Fx;
956
+ function kr() {
957
+ return Fx || (Fx = 1, (function(S, P) {
958
+ (function(B, a) {
959
+ S.exports = a(L());
960
+ })(gr, function(B) {
961
+ return (function() {
962
+ var a = B, D = a.lib, F = D.WordArray, w = a.enc;
963
+ w.Base64url = {
964
+ /**
965
+ * Converts a word array to a Base64url string.
966
+ *
967
+ * @param {WordArray} wordArray The word array.
968
+ *
969
+ * @param {boolean} urlSafe Whether to use url safe
970
+ *
971
+ * @return {string} The Base64url string.
972
+ *
973
+ * @static
974
+ *
975
+ * @example
976
+ *
977
+ * var base64String = CryptoJS.enc.Base64url.stringify(wordArray);
978
+ */
979
+ stringify: function(h, x) {
980
+ x === void 0 && (x = !0);
981
+ var e = h.words, d = h.sigBytes, r = x ? this._safe_map : this._map;
982
+ h.clamp();
983
+ for (var s = [], o = 0; o < d; o += 3)
984
+ for (var c = e[o >>> 2] >>> 24 - o % 4 * 8 & 255, f = e[o + 1 >>> 2] >>> 24 - (o + 1) % 4 * 8 & 255, l = e[o + 2 >>> 2] >>> 24 - (o + 2) % 4 * 8 & 255, t = c << 16 | f << 8 | l, n = 0; n < 4 && o + n * 0.75 < d; n++)
985
+ s.push(r.charAt(t >>> 6 * (3 - n) & 63));
986
+ var i = r.charAt(64);
987
+ if (i)
988
+ for (; s.length % 4; )
989
+ s.push(i);
990
+ return s.join("");
991
+ },
992
+ /**
993
+ * Converts a Base64url string to a word array.
994
+ *
995
+ * @param {string} base64Str The Base64url string.
996
+ *
997
+ * @param {boolean} urlSafe Whether to use url safe
998
+ *
999
+ * @return {WordArray} The word array.
1000
+ *
1001
+ * @static
1002
+ *
1003
+ * @example
1004
+ *
1005
+ * var wordArray = CryptoJS.enc.Base64url.parse(base64String);
1006
+ */
1007
+ parse: function(h, x) {
1008
+ x === void 0 && (x = !0);
1009
+ var e = h.length, d = x ? this._safe_map : this._map, r = this._reverseMap;
1010
+ if (!r) {
1011
+ r = this._reverseMap = [];
1012
+ for (var s = 0; s < d.length; s++)
1013
+ r[d.charCodeAt(s)] = s;
1014
+ }
1015
+ var o = d.charAt(64);
1016
+ if (o) {
1017
+ var c = h.indexOf(o);
1018
+ c !== -1 && (e = c);
1019
+ }
1020
+ return u(h, e, r);
1021
+ },
1022
+ _map: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",
1023
+ _safe_map: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"
1024
+ };
1025
+ function u(h, x, e) {
1026
+ for (var d = [], r = 0, s = 0; s < x; s++)
1027
+ if (s % 4) {
1028
+ var o = e[h.charCodeAt(s - 1)] << s % 4 * 2, c = e[h.charCodeAt(s)] >>> 6 - s % 4 * 2, f = o | c;
1029
+ d[r >>> 2] |= f << 24 - r % 4 * 8, r++;
1030
+ }
1031
+ return F.create(d, r);
1032
+ }
1033
+ })(), B.enc.Base64url;
1034
+ });
1035
+ })(D0)), D0.exports;
1036
+ }
1037
+ var _0 = { exports: {} }, wr = _0.exports, Dx;
1038
+ function e0() {
1039
+ return Dx || (Dx = 1, (function(S, P) {
1040
+ (function(B, a) {
1041
+ S.exports = a(L());
1042
+ })(wr, function(B) {
1043
+ return (function(a) {
1044
+ var D = B, F = D.lib, w = F.WordArray, u = F.Hasher, h = D.algo, x = [];
1045
+ (function() {
1046
+ for (var c = 0; c < 64; c++)
1047
+ x[c] = a.abs(a.sin(c + 1)) * 4294967296 | 0;
1048
+ })();
1049
+ var e = h.MD5 = u.extend({
1050
+ _doReset: function() {
1051
+ this._hash = new w.init([
1052
+ 1732584193,
1053
+ 4023233417,
1054
+ 2562383102,
1055
+ 271733878
1056
+ ]);
1057
+ },
1058
+ _doProcessBlock: function(c, f) {
1059
+ for (var l = 0; l < 16; l++) {
1060
+ var t = f + l, n = c[t];
1061
+ c[t] = (n << 8 | n >>> 24) & 16711935 | (n << 24 | n >>> 8) & 4278255360;
1062
+ }
1063
+ var i = this._hash.words, E = c[f + 0], C = c[f + 1], A = c[f + 2], _ = c[f + 3], R = c[f + 4], v = c[f + 5], p = c[f + 6], y = c[f + 7], g = c[f + 8], z = c[f + 9], q = c[f + 10], W = c[f + 11], X = c[f + 12], O = c[f + 13], I = c[f + 14], T = c[f + 15], b = i[0], H = i[1], m = i[2], k = i[3];
1064
+ b = d(b, H, m, k, E, 7, x[0]), k = d(k, b, H, m, C, 12, x[1]), m = d(m, k, b, H, A, 17, x[2]), H = d(H, m, k, b, _, 22, x[3]), b = d(b, H, m, k, R, 7, x[4]), k = d(k, b, H, m, v, 12, x[5]), m = d(m, k, b, H, p, 17, x[6]), H = d(H, m, k, b, y, 22, x[7]), b = d(b, H, m, k, g, 7, x[8]), k = d(k, b, H, m, z, 12, x[9]), m = d(m, k, b, H, q, 17, x[10]), H = d(H, m, k, b, W, 22, x[11]), b = d(b, H, m, k, X, 7, x[12]), k = d(k, b, H, m, O, 12, x[13]), m = d(m, k, b, H, I, 17, x[14]), H = d(H, m, k, b, T, 22, x[15]), b = r(b, H, m, k, C, 5, x[16]), k = r(k, b, H, m, p, 9, x[17]), m = r(m, k, b, H, W, 14, x[18]), H = r(H, m, k, b, E, 20, x[19]), b = r(b, H, m, k, v, 5, x[20]), k = r(k, b, H, m, q, 9, x[21]), m = r(m, k, b, H, T, 14, x[22]), H = r(H, m, k, b, R, 20, x[23]), b = r(b, H, m, k, z, 5, x[24]), k = r(k, b, H, m, I, 9, x[25]), m = r(m, k, b, H, _, 14, x[26]), H = r(H, m, k, b, g, 20, x[27]), b = r(b, H, m, k, O, 5, x[28]), k = r(k, b, H, m, A, 9, x[29]), m = r(m, k, b, H, y, 14, x[30]), H = r(H, m, k, b, X, 20, x[31]), b = s(b, H, m, k, v, 4, x[32]), k = s(k, b, H, m, g, 11, x[33]), m = s(m, k, b, H, W, 16, x[34]), H = s(H, m, k, b, I, 23, x[35]), b = s(b, H, m, k, C, 4, x[36]), k = s(k, b, H, m, R, 11, x[37]), m = s(m, k, b, H, y, 16, x[38]), H = s(H, m, k, b, q, 23, x[39]), b = s(b, H, m, k, O, 4, x[40]), k = s(k, b, H, m, E, 11, x[41]), m = s(m, k, b, H, _, 16, x[42]), H = s(H, m, k, b, p, 23, x[43]), b = s(b, H, m, k, z, 4, x[44]), k = s(k, b, H, m, X, 11, x[45]), m = s(m, k, b, H, T, 16, x[46]), H = s(H, m, k, b, A, 23, x[47]), b = o(b, H, m, k, E, 6, x[48]), k = o(k, b, H, m, y, 10, x[49]), m = o(m, k, b, H, I, 15, x[50]), H = o(H, m, k, b, v, 21, x[51]), b = o(b, H, m, k, X, 6, x[52]), k = o(k, b, H, m, _, 10, x[53]), m = o(m, k, b, H, q, 15, x[54]), H = o(H, m, k, b, C, 21, x[55]), b = o(b, H, m, k, g, 6, x[56]), k = o(k, b, H, m, T, 10, x[57]), m = o(m, k, b, H, p, 15, x[58]), H = o(H, m, k, b, O, 21, x[59]), b = o(b, H, m, k, R, 6, x[60]), k = o(k, b, H, m, W, 10, x[61]), m = o(m, k, b, H, A, 15, x[62]), H = o(H, m, k, b, z, 21, x[63]), i[0] = i[0] + b | 0, i[1] = i[1] + H | 0, i[2] = i[2] + m | 0, i[3] = i[3] + k | 0;
1065
+ },
1066
+ _doFinalize: function() {
1067
+ var c = this._data, f = c.words, l = this._nDataBytes * 8, t = c.sigBytes * 8;
1068
+ f[t >>> 5] |= 128 << 24 - t % 32;
1069
+ var n = a.floor(l / 4294967296), i = l;
1070
+ f[(t + 64 >>> 9 << 4) + 15] = (n << 8 | n >>> 24) & 16711935 | (n << 24 | n >>> 8) & 4278255360, f[(t + 64 >>> 9 << 4) + 14] = (i << 8 | i >>> 24) & 16711935 | (i << 24 | i >>> 8) & 4278255360, c.sigBytes = (f.length + 1) * 4, this._process();
1071
+ for (var E = this._hash, C = E.words, A = 0; A < 4; A++) {
1072
+ var _ = C[A];
1073
+ C[A] = (_ << 8 | _ >>> 24) & 16711935 | (_ << 24 | _ >>> 8) & 4278255360;
1074
+ }
1075
+ return E;
1076
+ },
1077
+ clone: function() {
1078
+ var c = u.clone.call(this);
1079
+ return c._hash = this._hash.clone(), c;
1080
+ }
1081
+ });
1082
+ function d(c, f, l, t, n, i, E) {
1083
+ var C = c + (f & l | ~f & t) + n + E;
1084
+ return (C << i | C >>> 32 - i) + f;
1085
+ }
1086
+ function r(c, f, l, t, n, i, E) {
1087
+ var C = c + (f & t | l & ~t) + n + E;
1088
+ return (C << i | C >>> 32 - i) + f;
1089
+ }
1090
+ function s(c, f, l, t, n, i, E) {
1091
+ var C = c + (f ^ l ^ t) + n + E;
1092
+ return (C << i | C >>> 32 - i) + f;
1093
+ }
1094
+ function o(c, f, l, t, n, i, E) {
1095
+ var C = c + (l ^ (f | ~t)) + n + E;
1096
+ return (C << i | C >>> 32 - i) + f;
1097
+ }
1098
+ D.MD5 = u._createHelper(e), D.HmacMD5 = u._createHmacHelper(e);
1099
+ })(Math), B.MD5;
1100
+ });
1101
+ })(_0)), _0.exports;
1102
+ }
1103
+ var b0 = { exports: {} }, Hr = b0.exports, _x;
1104
+ function Vx() {
1105
+ return _x || (_x = 1, (function(S, P) {
1106
+ (function(B, a) {
1107
+ S.exports = a(L());
1108
+ })(Hr, function(B) {
1109
+ return (function() {
1110
+ var a = B, D = a.lib, F = D.WordArray, w = D.Hasher, u = a.algo, h = [], x = u.SHA1 = w.extend({
1111
+ _doReset: function() {
1112
+ this._hash = new F.init([
1113
+ 1732584193,
1114
+ 4023233417,
1115
+ 2562383102,
1116
+ 271733878,
1117
+ 3285377520
1118
+ ]);
1119
+ },
1120
+ _doProcessBlock: function(e, d) {
1121
+ for (var r = this._hash.words, s = r[0], o = r[1], c = r[2], f = r[3], l = r[4], t = 0; t < 80; t++) {
1122
+ if (t < 16)
1123
+ h[t] = e[d + t] | 0;
1124
+ else {
1125
+ var n = h[t - 3] ^ h[t - 8] ^ h[t - 14] ^ h[t - 16];
1126
+ h[t] = n << 1 | n >>> 31;
1127
+ }
1128
+ var i = (s << 5 | s >>> 27) + l + h[t];
1129
+ t < 20 ? i += (o & c | ~o & f) + 1518500249 : t < 40 ? i += (o ^ c ^ f) + 1859775393 : t < 60 ? i += (o & c | o & f | c & f) - 1894007588 : i += (o ^ c ^ f) - 899497514, l = f, f = c, c = o << 30 | o >>> 2, o = s, s = i;
1130
+ }
1131
+ r[0] = r[0] + s | 0, r[1] = r[1] + o | 0, r[2] = r[2] + c | 0, r[3] = r[3] + f | 0, r[4] = r[4] + l | 0;
1132
+ },
1133
+ _doFinalize: function() {
1134
+ var e = this._data, d = e.words, r = this._nDataBytes * 8, s = e.sigBytes * 8;
1135
+ return d[s >>> 5] |= 128 << 24 - s % 32, d[(s + 64 >>> 9 << 4) + 14] = Math.floor(r / 4294967296), d[(s + 64 >>> 9 << 4) + 15] = r, e.sigBytes = d.length * 4, this._process(), this._hash;
1136
+ },
1137
+ clone: function() {
1138
+ var e = w.clone.call(this);
1139
+ return e._hash = this._hash.clone(), e;
1140
+ }
1141
+ });
1142
+ a.SHA1 = w._createHelper(x), a.HmacSHA1 = w._createHmacHelper(x);
1143
+ })(), B.SHA1;
1144
+ });
1145
+ })(b0)), b0.exports;
1146
+ }
1147
+ var y0 = { exports: {} }, mr = y0.exports, bx;
1148
+ function ex() {
1149
+ return bx || (bx = 1, (function(S, P) {
1150
+ (function(B, a) {
1151
+ S.exports = a(L());
1152
+ })(mr, function(B) {
1153
+ return (function(a) {
1154
+ var D = B, F = D.lib, w = F.WordArray, u = F.Hasher, h = D.algo, x = [], e = [];
1155
+ (function() {
1156
+ function s(l) {
1157
+ for (var t = a.sqrt(l), n = 2; n <= t; n++)
1158
+ if (!(l % n))
1159
+ return !1;
1160
+ return !0;
1161
+ }
1162
+ function o(l) {
1163
+ return (l - (l | 0)) * 4294967296 | 0;
1164
+ }
1165
+ for (var c = 2, f = 0; f < 64; )
1166
+ s(c) && (f < 8 && (x[f] = o(a.pow(c, 1 / 2))), e[f] = o(a.pow(c, 1 / 3)), f++), c++;
1167
+ })();
1168
+ var d = [], r = h.SHA256 = u.extend({
1169
+ _doReset: function() {
1170
+ this._hash = new w.init(x.slice(0));
1171
+ },
1172
+ _doProcessBlock: function(s, o) {
1173
+ for (var c = this._hash.words, f = c[0], l = c[1], t = c[2], n = c[3], i = c[4], E = c[5], C = c[6], A = c[7], _ = 0; _ < 64; _++) {
1174
+ if (_ < 16)
1175
+ d[_] = s[o + _] | 0;
1176
+ else {
1177
+ var R = d[_ - 15], v = (R << 25 | R >>> 7) ^ (R << 14 | R >>> 18) ^ R >>> 3, p = d[_ - 2], y = (p << 15 | p >>> 17) ^ (p << 13 | p >>> 19) ^ p >>> 10;
1178
+ d[_] = v + d[_ - 7] + y + d[_ - 16];
1179
+ }
1180
+ var g = i & E ^ ~i & C, z = f & l ^ f & t ^ l & t, q = (f << 30 | f >>> 2) ^ (f << 19 | f >>> 13) ^ (f << 10 | f >>> 22), W = (i << 26 | i >>> 6) ^ (i << 21 | i >>> 11) ^ (i << 7 | i >>> 25), X = A + W + g + e[_] + d[_], O = q + z;
1181
+ A = C, C = E, E = i, i = n + X | 0, n = t, t = l, l = f, f = X + O | 0;
1182
+ }
1183
+ c[0] = c[0] + f | 0, c[1] = c[1] + l | 0, c[2] = c[2] + t | 0, c[3] = c[3] + n | 0, c[4] = c[4] + i | 0, c[5] = c[5] + E | 0, c[6] = c[6] + C | 0, c[7] = c[7] + A | 0;
1184
+ },
1185
+ _doFinalize: function() {
1186
+ var s = this._data, o = s.words, c = this._nDataBytes * 8, f = s.sigBytes * 8;
1187
+ return o[f >>> 5] |= 128 << 24 - f % 32, o[(f + 64 >>> 9 << 4) + 14] = a.floor(c / 4294967296), o[(f + 64 >>> 9 << 4) + 15] = c, s.sigBytes = o.length * 4, this._process(), this._hash;
1188
+ },
1189
+ clone: function() {
1190
+ var s = u.clone.call(this);
1191
+ return s._hash = this._hash.clone(), s;
1192
+ }
1193
+ });
1194
+ D.SHA256 = u._createHelper(r), D.HmacSHA256 = u._createHmacHelper(r);
1195
+ })(Math), B.SHA256;
1196
+ });
1197
+ })(y0)), y0.exports;
1198
+ }
1199
+ var g0 = { exports: {} }, Sr = g0.exports, yx;
1200
+ function Rr() {
1201
+ return yx || (yx = 1, (function(S, P) {
1202
+ (function(B, a, D) {
1203
+ S.exports = a(L(), ex());
1204
+ })(Sr, function(B) {
1205
+ return (function() {
1206
+ var a = B, D = a.lib, F = D.WordArray, w = a.algo, u = w.SHA256, h = w.SHA224 = u.extend({
1207
+ _doReset: function() {
1208
+ this._hash = new F.init([
1209
+ 3238371032,
1210
+ 914150663,
1211
+ 812702999,
1212
+ 4144912697,
1213
+ 4290775857,
1214
+ 1750603025,
1215
+ 1694076839,
1216
+ 3204075428
1217
+ ]);
1218
+ },
1219
+ _doFinalize: function() {
1220
+ var x = u._doFinalize.call(this);
1221
+ return x.sigBytes -= 4, x;
1222
+ }
1223
+ });
1224
+ a.SHA224 = u._createHelper(h), a.HmacSHA224 = u._createHmacHelper(h);
1225
+ })(), B.SHA224;
1226
+ });
1227
+ })(g0)), g0.exports;
1228
+ }
1229
+ var k0 = { exports: {} }, zr = k0.exports, gx;
1230
+ function Jx() {
1231
+ return gx || (gx = 1, (function(S, P) {
1232
+ (function(B, a, D) {
1233
+ S.exports = a(L(), V0());
1234
+ })(zr, function(B) {
1235
+ return (function() {
1236
+ var a = B, D = a.lib, F = D.Hasher, w = a.x64, u = w.Word, h = w.WordArray, x = a.algo;
1237
+ function e() {
1238
+ return u.create.apply(u, arguments);
1239
+ }
1240
+ var d = [
1241
+ e(1116352408, 3609767458),
1242
+ e(1899447441, 602891725),
1243
+ e(3049323471, 3964484399),
1244
+ e(3921009573, 2173295548),
1245
+ e(961987163, 4081628472),
1246
+ e(1508970993, 3053834265),
1247
+ e(2453635748, 2937671579),
1248
+ e(2870763221, 3664609560),
1249
+ e(3624381080, 2734883394),
1250
+ e(310598401, 1164996542),
1251
+ e(607225278, 1323610764),
1252
+ e(1426881987, 3590304994),
1253
+ e(1925078388, 4068182383),
1254
+ e(2162078206, 991336113),
1255
+ e(2614888103, 633803317),
1256
+ e(3248222580, 3479774868),
1257
+ e(3835390401, 2666613458),
1258
+ e(4022224774, 944711139),
1259
+ e(264347078, 2341262773),
1260
+ e(604807628, 2007800933),
1261
+ e(770255983, 1495990901),
1262
+ e(1249150122, 1856431235),
1263
+ e(1555081692, 3175218132),
1264
+ e(1996064986, 2198950837),
1265
+ e(2554220882, 3999719339),
1266
+ e(2821834349, 766784016),
1267
+ e(2952996808, 2566594879),
1268
+ e(3210313671, 3203337956),
1269
+ e(3336571891, 1034457026),
1270
+ e(3584528711, 2466948901),
1271
+ e(113926993, 3758326383),
1272
+ e(338241895, 168717936),
1273
+ e(666307205, 1188179964),
1274
+ e(773529912, 1546045734),
1275
+ e(1294757372, 1522805485),
1276
+ e(1396182291, 2643833823),
1277
+ e(1695183700, 2343527390),
1278
+ e(1986661051, 1014477480),
1279
+ e(2177026350, 1206759142),
1280
+ e(2456956037, 344077627),
1281
+ e(2730485921, 1290863460),
1282
+ e(2820302411, 3158454273),
1283
+ e(3259730800, 3505952657),
1284
+ e(3345764771, 106217008),
1285
+ e(3516065817, 3606008344),
1286
+ e(3600352804, 1432725776),
1287
+ e(4094571909, 1467031594),
1288
+ e(275423344, 851169720),
1289
+ e(430227734, 3100823752),
1290
+ e(506948616, 1363258195),
1291
+ e(659060556, 3750685593),
1292
+ e(883997877, 3785050280),
1293
+ e(958139571, 3318307427),
1294
+ e(1322822218, 3812723403),
1295
+ e(1537002063, 2003034995),
1296
+ e(1747873779, 3602036899),
1297
+ e(1955562222, 1575990012),
1298
+ e(2024104815, 1125592928),
1299
+ e(2227730452, 2716904306),
1300
+ e(2361852424, 442776044),
1301
+ e(2428436474, 593698344),
1302
+ e(2756734187, 3733110249),
1303
+ e(3204031479, 2999351573),
1304
+ e(3329325298, 3815920427),
1305
+ e(3391569614, 3928383900),
1306
+ e(3515267271, 566280711),
1307
+ e(3940187606, 3454069534),
1308
+ e(4118630271, 4000239992),
1309
+ e(116418474, 1914138554),
1310
+ e(174292421, 2731055270),
1311
+ e(289380356, 3203993006),
1312
+ e(460393269, 320620315),
1313
+ e(685471733, 587496836),
1314
+ e(852142971, 1086792851),
1315
+ e(1017036298, 365543100),
1316
+ e(1126000580, 2618297676),
1317
+ e(1288033470, 3409855158),
1318
+ e(1501505948, 4234509866),
1319
+ e(1607167915, 987167468),
1320
+ e(1816402316, 1246189591)
1321
+ ], r = [];
1322
+ (function() {
1323
+ for (var o = 0; o < 80; o++)
1324
+ r[o] = e();
1325
+ })();
1326
+ var s = x.SHA512 = F.extend({
1327
+ _doReset: function() {
1328
+ this._hash = new h.init([
1329
+ new u.init(1779033703, 4089235720),
1330
+ new u.init(3144134277, 2227873595),
1331
+ new u.init(1013904242, 4271175723),
1332
+ new u.init(2773480762, 1595750129),
1333
+ new u.init(1359893119, 2917565137),
1334
+ new u.init(2600822924, 725511199),
1335
+ new u.init(528734635, 4215389547),
1336
+ new u.init(1541459225, 327033209)
1337
+ ]);
1338
+ },
1339
+ _doProcessBlock: function(o, c) {
1340
+ for (var f = this._hash.words, l = f[0], t = f[1], n = f[2], i = f[3], E = f[4], C = f[5], A = f[6], _ = f[7], R = l.high, v = l.low, p = t.high, y = t.low, g = n.high, z = n.low, q = i.high, W = i.low, X = E.high, O = E.low, I = C.high, T = C.low, b = A.high, H = A.low, m = _.high, k = _.low, K = R, N = v, G = p, $ = y, o0 = g, t0 = z, J0 = q, i0 = W, Y = X, Z = O, d0 = I, f0 = T, B0 = b, s0 = H, xx = m, c0 = k, M = 0; M < 80; M++) {
1341
+ var Q, V, h0 = r[M];
1342
+ if (M < 16)
1343
+ V = h0.high = o[c + M * 2] | 0, Q = h0.low = o[c + M * 2 + 1] | 0;
1344
+ else {
1345
+ var ax = r[M - 15], a0 = ax.high, v0 = ax.low, xr = (a0 >>> 1 | v0 << 31) ^ (a0 >>> 8 | v0 << 24) ^ a0 >>> 7, nx = (v0 >>> 1 | a0 << 31) ^ (v0 >>> 8 | a0 << 24) ^ (v0 >>> 7 | a0 << 25), ox = r[M - 2], n0 = ox.high, u0 = ox.low, rr = (n0 >>> 19 | u0 << 13) ^ (n0 << 3 | u0 >>> 29) ^ n0 >>> 6, ix = (u0 >>> 19 | n0 << 13) ^ (u0 << 3 | n0 >>> 29) ^ (u0 >>> 6 | n0 << 26), fx = r[M - 7], er = fx.high, tr = fx.low, sx = r[M - 16], ar = sx.high, cx = sx.low;
1346
+ Q = nx + tr, V = xr + er + (Q >>> 0 < nx >>> 0 ? 1 : 0), Q = Q + ix, V = V + rr + (Q >>> 0 < ix >>> 0 ? 1 : 0), Q = Q + cx, V = V + ar + (Q >>> 0 < cx >>> 0 ? 1 : 0), h0.high = V, h0.low = Q;
1347
+ }
1348
+ var nr = Y & d0 ^ ~Y & B0, vx = Z & f0 ^ ~Z & s0, or = K & G ^ K & o0 ^ G & o0, ir = N & $ ^ N & t0 ^ $ & t0, fr = (K >>> 28 | N << 4) ^ (K << 30 | N >>> 2) ^ (K << 25 | N >>> 7), ux = (N >>> 28 | K << 4) ^ (N << 30 | K >>> 2) ^ (N << 25 | K >>> 7), sr = (Y >>> 14 | Z << 18) ^ (Y >>> 18 | Z << 14) ^ (Y << 23 | Z >>> 9), cr = (Z >>> 14 | Y << 18) ^ (Z >>> 18 | Y << 14) ^ (Z << 23 | Y >>> 9), dx = d[M], vr = dx.high, Bx = dx.low, j = c0 + cr, J = xx + sr + (j >>> 0 < c0 >>> 0 ? 1 : 0), j = j + vx, J = J + nr + (j >>> 0 < vx >>> 0 ? 1 : 0), j = j + Bx, J = J + vr + (j >>> 0 < Bx >>> 0 ? 1 : 0), j = j + Q, J = J + V + (j >>> 0 < Q >>> 0 ? 1 : 0), hx = ux + ir, ur = fr + or + (hx >>> 0 < ux >>> 0 ? 1 : 0);
1349
+ xx = B0, c0 = s0, B0 = d0, s0 = f0, d0 = Y, f0 = Z, Z = i0 + j | 0, Y = J0 + J + (Z >>> 0 < i0 >>> 0 ? 1 : 0) | 0, J0 = o0, i0 = t0, o0 = G, t0 = $, G = K, $ = N, N = j + hx | 0, K = J + ur + (N >>> 0 < j >>> 0 ? 1 : 0) | 0;
1350
+ }
1351
+ v = l.low = v + N, l.high = R + K + (v >>> 0 < N >>> 0 ? 1 : 0), y = t.low = y + $, t.high = p + G + (y >>> 0 < $ >>> 0 ? 1 : 0), z = n.low = z + t0, n.high = g + o0 + (z >>> 0 < t0 >>> 0 ? 1 : 0), W = i.low = W + i0, i.high = q + J0 + (W >>> 0 < i0 >>> 0 ? 1 : 0), O = E.low = O + Z, E.high = X + Y + (O >>> 0 < Z >>> 0 ? 1 : 0), T = C.low = T + f0, C.high = I + d0 + (T >>> 0 < f0 >>> 0 ? 1 : 0), H = A.low = H + s0, A.high = b + B0 + (H >>> 0 < s0 >>> 0 ? 1 : 0), k = _.low = k + c0, _.high = m + xx + (k >>> 0 < c0 >>> 0 ? 1 : 0);
1352
+ },
1353
+ _doFinalize: function() {
1354
+ var o = this._data, c = o.words, f = this._nDataBytes * 8, l = o.sigBytes * 8;
1355
+ c[l >>> 5] |= 128 << 24 - l % 32, c[(l + 128 >>> 10 << 5) + 30] = Math.floor(f / 4294967296), c[(l + 128 >>> 10 << 5) + 31] = f, o.sigBytes = c.length * 4, this._process();
1356
+ var t = this._hash.toX32();
1357
+ return t;
1358
+ },
1359
+ clone: function() {
1360
+ var o = F.clone.call(this);
1361
+ return o._hash = this._hash.clone(), o;
1362
+ },
1363
+ blockSize: 1024 / 32
1364
+ });
1365
+ a.SHA512 = F._createHelper(s), a.HmacSHA512 = F._createHmacHelper(s);
1366
+ })(), B.SHA512;
1367
+ });
1368
+ })(k0)), k0.exports;
1369
+ }
1370
+ var w0 = { exports: {} }, qr = w0.exports, kx;
1371
+ function Pr() {
1372
+ return kx || (kx = 1, (function(S, P) {
1373
+ (function(B, a, D) {
1374
+ S.exports = a(L(), V0(), Jx());
1375
+ })(qr, function(B) {
1376
+ return (function() {
1377
+ var a = B, D = a.x64, F = D.Word, w = D.WordArray, u = a.algo, h = u.SHA512, x = u.SHA384 = h.extend({
1378
+ _doReset: function() {
1379
+ this._hash = new w.init([
1380
+ new F.init(3418070365, 3238371032),
1381
+ new F.init(1654270250, 914150663),
1382
+ new F.init(2438529370, 812702999),
1383
+ new F.init(355462360, 4144912697),
1384
+ new F.init(1731405415, 4290775857),
1385
+ new F.init(2394180231, 1750603025),
1386
+ new F.init(3675008525, 1694076839),
1387
+ new F.init(1203062813, 3204075428)
1388
+ ]);
1389
+ },
1390
+ _doFinalize: function() {
1391
+ var e = h._doFinalize.call(this);
1392
+ return e.sigBytes -= 16, e;
1393
+ }
1394
+ });
1395
+ a.SHA384 = h._createHelper(x), a.HmacSHA384 = h._createHmacHelper(x);
1396
+ })(), B.SHA384;
1397
+ });
1398
+ })(w0)), w0.exports;
1399
+ }
1400
+ var H0 = { exports: {} }, Wr = H0.exports, wx;
1401
+ function $r() {
1402
+ return wx || (wx = 1, (function(S, P) {
1403
+ (function(B, a, D) {
1404
+ S.exports = a(L(), V0());
1405
+ })(Wr, function(B) {
1406
+ return (function(a) {
1407
+ var D = B, F = D.lib, w = F.WordArray, u = F.Hasher, h = D.x64, x = h.Word, e = D.algo, d = [], r = [], s = [];
1408
+ (function() {
1409
+ for (var f = 1, l = 0, t = 0; t < 24; t++) {
1410
+ d[f + 5 * l] = (t + 1) * (t + 2) / 2 % 64;
1411
+ var n = l % 5, i = (2 * f + 3 * l) % 5;
1412
+ f = n, l = i;
1413
+ }
1414
+ for (var f = 0; f < 5; f++)
1415
+ for (var l = 0; l < 5; l++)
1416
+ r[f + 5 * l] = l + (2 * f + 3 * l) % 5 * 5;
1417
+ for (var E = 1, C = 0; C < 24; C++) {
1418
+ for (var A = 0, _ = 0, R = 0; R < 7; R++) {
1419
+ if (E & 1) {
1420
+ var v = (1 << R) - 1;
1421
+ v < 32 ? _ ^= 1 << v : A ^= 1 << v - 32;
1422
+ }
1423
+ E & 128 ? E = E << 1 ^ 113 : E <<= 1;
1424
+ }
1425
+ s[C] = x.create(A, _);
1426
+ }
1427
+ })();
1428
+ var o = [];
1429
+ (function() {
1430
+ for (var f = 0; f < 25; f++)
1431
+ o[f] = x.create();
1432
+ })();
1433
+ var c = e.SHA3 = u.extend({
1434
+ /**
1435
+ * Configuration options.
1436
+ *
1437
+ * @property {number} outputLength
1438
+ * The desired number of bits in the output hash.
1439
+ * Only values permitted are: 224, 256, 384, 512.
1440
+ * Default: 512
1441
+ */
1442
+ cfg: u.cfg.extend({
1443
+ outputLength: 512
1444
+ }),
1445
+ _doReset: function() {
1446
+ for (var f = this._state = [], l = 0; l < 25; l++)
1447
+ f[l] = new x.init();
1448
+ this.blockSize = (1600 - 2 * this.cfg.outputLength) / 32;
1449
+ },
1450
+ _doProcessBlock: function(f, l) {
1451
+ for (var t = this._state, n = this.blockSize / 2, i = 0; i < n; i++) {
1452
+ var E = f[l + 2 * i], C = f[l + 2 * i + 1];
1453
+ E = (E << 8 | E >>> 24) & 16711935 | (E << 24 | E >>> 8) & 4278255360, C = (C << 8 | C >>> 24) & 16711935 | (C << 24 | C >>> 8) & 4278255360;
1454
+ var A = t[i];
1455
+ A.high ^= C, A.low ^= E;
1456
+ }
1457
+ for (var _ = 0; _ < 24; _++) {
1458
+ for (var R = 0; R < 5; R++) {
1459
+ for (var v = 0, p = 0, y = 0; y < 5; y++) {
1460
+ var A = t[R + 5 * y];
1461
+ v ^= A.high, p ^= A.low;
1462
+ }
1463
+ var g = o[R];
1464
+ g.high = v, g.low = p;
1465
+ }
1466
+ for (var R = 0; R < 5; R++)
1467
+ for (var z = o[(R + 4) % 5], q = o[(R + 1) % 5], W = q.high, X = q.low, v = z.high ^ (W << 1 | X >>> 31), p = z.low ^ (X << 1 | W >>> 31), y = 0; y < 5; y++) {
1468
+ var A = t[R + 5 * y];
1469
+ A.high ^= v, A.low ^= p;
1470
+ }
1471
+ for (var O = 1; O < 25; O++) {
1472
+ var v, p, A = t[O], I = A.high, T = A.low, b = d[O];
1473
+ b < 32 ? (v = I << b | T >>> 32 - b, p = T << b | I >>> 32 - b) : (v = T << b - 32 | I >>> 64 - b, p = I << b - 32 | T >>> 64 - b);
1474
+ var H = o[r[O]];
1475
+ H.high = v, H.low = p;
1476
+ }
1477
+ var m = o[0], k = t[0];
1478
+ m.high = k.high, m.low = k.low;
1479
+ for (var R = 0; R < 5; R++)
1480
+ for (var y = 0; y < 5; y++) {
1481
+ var O = R + 5 * y, A = t[O], K = o[O], N = o[(R + 1) % 5 + 5 * y], G = o[(R + 2) % 5 + 5 * y];
1482
+ A.high = K.high ^ ~N.high & G.high, A.low = K.low ^ ~N.low & G.low;
1483
+ }
1484
+ var A = t[0], $ = s[_];
1485
+ A.high ^= $.high, A.low ^= $.low;
1486
+ }
1487
+ },
1488
+ _doFinalize: function() {
1489
+ var f = this._data, l = f.words;
1490
+ this._nDataBytes * 8;
1491
+ var t = f.sigBytes * 8, n = this.blockSize * 32;
1492
+ l[t >>> 5] |= 1 << 24 - t % 32, l[(a.ceil((t + 1) / n) * n >>> 5) - 1] |= 128, f.sigBytes = l.length * 4, this._process();
1493
+ for (var i = this._state, E = this.cfg.outputLength / 8, C = E / 8, A = [], _ = 0; _ < C; _++) {
1494
+ var R = i[_], v = R.high, p = R.low;
1495
+ v = (v << 8 | v >>> 24) & 16711935 | (v << 24 | v >>> 8) & 4278255360, p = (p << 8 | p >>> 24) & 16711935 | (p << 24 | p >>> 8) & 4278255360, A.push(p), A.push(v);
1496
+ }
1497
+ return new w.init(A, E);
1498
+ },
1499
+ clone: function() {
1500
+ for (var f = u.clone.call(this), l = f._state = this._state.slice(0), t = 0; t < 25; t++)
1501
+ l[t] = l[t].clone();
1502
+ return f;
1503
+ }
1504
+ });
1505
+ D.SHA3 = u._createHelper(c), D.HmacSHA3 = u._createHmacHelper(c);
1506
+ })(Math), B.SHA3;
1507
+ });
1508
+ })(H0)), H0.exports;
1509
+ }
1510
+ var m0 = { exports: {} }, Lr = m0.exports, Hx;
1511
+ function Or() {
1512
+ return Hx || (Hx = 1, (function(S, P) {
1513
+ (function(B, a) {
1514
+ S.exports = a(L());
1515
+ })(Lr, function(B) {
1516
+ /** @preserve
1517
+ (c) 2012 by Cédric Mesnil. All rights reserved.
1518
+
1519
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1520
+
1521
+ - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
1522
+ - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
1523
+
1524
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1525
+ */
1526
+ return (function(a) {
1527
+ var D = B, F = D.lib, w = F.WordArray, u = F.Hasher, h = D.algo, x = w.create([
1528
+ 0,
1529
+ 1,
1530
+ 2,
1531
+ 3,
1532
+ 4,
1533
+ 5,
1534
+ 6,
1535
+ 7,
1536
+ 8,
1537
+ 9,
1538
+ 10,
1539
+ 11,
1540
+ 12,
1541
+ 13,
1542
+ 14,
1543
+ 15,
1544
+ 7,
1545
+ 4,
1546
+ 13,
1547
+ 1,
1548
+ 10,
1549
+ 6,
1550
+ 15,
1551
+ 3,
1552
+ 12,
1553
+ 0,
1554
+ 9,
1555
+ 5,
1556
+ 2,
1557
+ 14,
1558
+ 11,
1559
+ 8,
1560
+ 3,
1561
+ 10,
1562
+ 14,
1563
+ 4,
1564
+ 9,
1565
+ 15,
1566
+ 8,
1567
+ 1,
1568
+ 2,
1569
+ 7,
1570
+ 0,
1571
+ 6,
1572
+ 13,
1573
+ 11,
1574
+ 5,
1575
+ 12,
1576
+ 1,
1577
+ 9,
1578
+ 11,
1579
+ 10,
1580
+ 0,
1581
+ 8,
1582
+ 12,
1583
+ 4,
1584
+ 13,
1585
+ 3,
1586
+ 7,
1587
+ 15,
1588
+ 14,
1589
+ 5,
1590
+ 6,
1591
+ 2,
1592
+ 4,
1593
+ 0,
1594
+ 5,
1595
+ 9,
1596
+ 7,
1597
+ 12,
1598
+ 2,
1599
+ 10,
1600
+ 14,
1601
+ 1,
1602
+ 3,
1603
+ 8,
1604
+ 11,
1605
+ 6,
1606
+ 15,
1607
+ 13
1608
+ ]), e = w.create([
1609
+ 5,
1610
+ 14,
1611
+ 7,
1612
+ 0,
1613
+ 9,
1614
+ 2,
1615
+ 11,
1616
+ 4,
1617
+ 13,
1618
+ 6,
1619
+ 15,
1620
+ 8,
1621
+ 1,
1622
+ 10,
1623
+ 3,
1624
+ 12,
1625
+ 6,
1626
+ 11,
1627
+ 3,
1628
+ 7,
1629
+ 0,
1630
+ 13,
1631
+ 5,
1632
+ 10,
1633
+ 14,
1634
+ 15,
1635
+ 8,
1636
+ 12,
1637
+ 4,
1638
+ 9,
1639
+ 1,
1640
+ 2,
1641
+ 15,
1642
+ 5,
1643
+ 1,
1644
+ 3,
1645
+ 7,
1646
+ 14,
1647
+ 6,
1648
+ 9,
1649
+ 11,
1650
+ 8,
1651
+ 12,
1652
+ 2,
1653
+ 10,
1654
+ 0,
1655
+ 4,
1656
+ 13,
1657
+ 8,
1658
+ 6,
1659
+ 4,
1660
+ 1,
1661
+ 3,
1662
+ 11,
1663
+ 15,
1664
+ 0,
1665
+ 5,
1666
+ 12,
1667
+ 2,
1668
+ 13,
1669
+ 9,
1670
+ 7,
1671
+ 10,
1672
+ 14,
1673
+ 12,
1674
+ 15,
1675
+ 10,
1676
+ 4,
1677
+ 1,
1678
+ 5,
1679
+ 8,
1680
+ 7,
1681
+ 6,
1682
+ 2,
1683
+ 13,
1684
+ 14,
1685
+ 0,
1686
+ 3,
1687
+ 9,
1688
+ 11
1689
+ ]), d = w.create([
1690
+ 11,
1691
+ 14,
1692
+ 15,
1693
+ 12,
1694
+ 5,
1695
+ 8,
1696
+ 7,
1697
+ 9,
1698
+ 11,
1699
+ 13,
1700
+ 14,
1701
+ 15,
1702
+ 6,
1703
+ 7,
1704
+ 9,
1705
+ 8,
1706
+ 7,
1707
+ 6,
1708
+ 8,
1709
+ 13,
1710
+ 11,
1711
+ 9,
1712
+ 7,
1713
+ 15,
1714
+ 7,
1715
+ 12,
1716
+ 15,
1717
+ 9,
1718
+ 11,
1719
+ 7,
1720
+ 13,
1721
+ 12,
1722
+ 11,
1723
+ 13,
1724
+ 6,
1725
+ 7,
1726
+ 14,
1727
+ 9,
1728
+ 13,
1729
+ 15,
1730
+ 14,
1731
+ 8,
1732
+ 13,
1733
+ 6,
1734
+ 5,
1735
+ 12,
1736
+ 7,
1737
+ 5,
1738
+ 11,
1739
+ 12,
1740
+ 14,
1741
+ 15,
1742
+ 14,
1743
+ 15,
1744
+ 9,
1745
+ 8,
1746
+ 9,
1747
+ 14,
1748
+ 5,
1749
+ 6,
1750
+ 8,
1751
+ 6,
1752
+ 5,
1753
+ 12,
1754
+ 9,
1755
+ 15,
1756
+ 5,
1757
+ 11,
1758
+ 6,
1759
+ 8,
1760
+ 13,
1761
+ 12,
1762
+ 5,
1763
+ 12,
1764
+ 13,
1765
+ 14,
1766
+ 11,
1767
+ 8,
1768
+ 5,
1769
+ 6
1770
+ ]), r = w.create([
1771
+ 8,
1772
+ 9,
1773
+ 9,
1774
+ 11,
1775
+ 13,
1776
+ 15,
1777
+ 15,
1778
+ 5,
1779
+ 7,
1780
+ 7,
1781
+ 8,
1782
+ 11,
1783
+ 14,
1784
+ 14,
1785
+ 12,
1786
+ 6,
1787
+ 9,
1788
+ 13,
1789
+ 15,
1790
+ 7,
1791
+ 12,
1792
+ 8,
1793
+ 9,
1794
+ 11,
1795
+ 7,
1796
+ 7,
1797
+ 12,
1798
+ 7,
1799
+ 6,
1800
+ 15,
1801
+ 13,
1802
+ 11,
1803
+ 9,
1804
+ 7,
1805
+ 15,
1806
+ 11,
1807
+ 8,
1808
+ 6,
1809
+ 6,
1810
+ 14,
1811
+ 12,
1812
+ 13,
1813
+ 5,
1814
+ 14,
1815
+ 13,
1816
+ 13,
1817
+ 7,
1818
+ 5,
1819
+ 15,
1820
+ 5,
1821
+ 8,
1822
+ 11,
1823
+ 14,
1824
+ 14,
1825
+ 6,
1826
+ 14,
1827
+ 6,
1828
+ 9,
1829
+ 12,
1830
+ 9,
1831
+ 12,
1832
+ 5,
1833
+ 15,
1834
+ 8,
1835
+ 8,
1836
+ 5,
1837
+ 12,
1838
+ 9,
1839
+ 12,
1840
+ 5,
1841
+ 14,
1842
+ 6,
1843
+ 8,
1844
+ 13,
1845
+ 6,
1846
+ 5,
1847
+ 15,
1848
+ 13,
1849
+ 11,
1850
+ 11
1851
+ ]), s = w.create([0, 1518500249, 1859775393, 2400959708, 2840853838]), o = w.create([1352829926, 1548603684, 1836072691, 2053994217, 0]), c = h.RIPEMD160 = u.extend({
1852
+ _doReset: function() {
1853
+ this._hash = w.create([1732584193, 4023233417, 2562383102, 271733878, 3285377520]);
1854
+ },
1855
+ _doProcessBlock: function(C, A) {
1856
+ for (var _ = 0; _ < 16; _++) {
1857
+ var R = A + _, v = C[R];
1858
+ C[R] = (v << 8 | v >>> 24) & 16711935 | (v << 24 | v >>> 8) & 4278255360;
1859
+ }
1860
+ var p = this._hash.words, y = s.words, g = o.words, z = x.words, q = e.words, W = d.words, X = r.words, O, I, T, b, H, m, k, K, N, G;
1861
+ m = O = p[0], k = I = p[1], K = T = p[2], N = b = p[3], G = H = p[4];
1862
+ for (var $, _ = 0; _ < 80; _ += 1)
1863
+ $ = O + C[A + z[_]] | 0, _ < 16 ? $ += f(I, T, b) + y[0] : _ < 32 ? $ += l(I, T, b) + y[1] : _ < 48 ? $ += t(I, T, b) + y[2] : _ < 64 ? $ += n(I, T, b) + y[3] : $ += i(I, T, b) + y[4], $ = $ | 0, $ = E($, W[_]), $ = $ + H | 0, O = H, H = b, b = E(T, 10), T = I, I = $, $ = m + C[A + q[_]] | 0, _ < 16 ? $ += i(k, K, N) + g[0] : _ < 32 ? $ += n(k, K, N) + g[1] : _ < 48 ? $ += t(k, K, N) + g[2] : _ < 64 ? $ += l(k, K, N) + g[3] : $ += f(k, K, N) + g[4], $ = $ | 0, $ = E($, X[_]), $ = $ + G | 0, m = G, G = N, N = E(K, 10), K = k, k = $;
1864
+ $ = p[1] + T + N | 0, p[1] = p[2] + b + G | 0, p[2] = p[3] + H + m | 0, p[3] = p[4] + O + k | 0, p[4] = p[0] + I + K | 0, p[0] = $;
1865
+ },
1866
+ _doFinalize: function() {
1867
+ var C = this._data, A = C.words, _ = this._nDataBytes * 8, R = C.sigBytes * 8;
1868
+ A[R >>> 5] |= 128 << 24 - R % 32, A[(R + 64 >>> 9 << 4) + 14] = (_ << 8 | _ >>> 24) & 16711935 | (_ << 24 | _ >>> 8) & 4278255360, C.sigBytes = (A.length + 1) * 4, this._process();
1869
+ for (var v = this._hash, p = v.words, y = 0; y < 5; y++) {
1870
+ var g = p[y];
1871
+ p[y] = (g << 8 | g >>> 24) & 16711935 | (g << 24 | g >>> 8) & 4278255360;
1872
+ }
1873
+ return v;
1874
+ },
1875
+ clone: function() {
1876
+ var C = u.clone.call(this);
1877
+ return C._hash = this._hash.clone(), C;
1878
+ }
1879
+ });
1880
+ function f(C, A, _) {
1881
+ return C ^ A ^ _;
1882
+ }
1883
+ function l(C, A, _) {
1884
+ return C & A | ~C & _;
1885
+ }
1886
+ function t(C, A, _) {
1887
+ return (C | ~A) ^ _;
1888
+ }
1889
+ function n(C, A, _) {
1890
+ return C & _ | A & ~_;
1891
+ }
1892
+ function i(C, A, _) {
1893
+ return C ^ (A | ~_);
1894
+ }
1895
+ function E(C, A) {
1896
+ return C << A | C >>> 32 - A;
1897
+ }
1898
+ D.RIPEMD160 = u._createHelper(c), D.HmacRIPEMD160 = u._createHmacHelper(c);
1899
+ })(), B.RIPEMD160;
1900
+ });
1901
+ })(m0)), m0.exports;
1902
+ }
1903
+ var S0 = { exports: {} }, Tr = S0.exports, mx;
1904
+ function tx() {
1905
+ return mx || (mx = 1, (function(S, P) {
1906
+ (function(B, a) {
1907
+ S.exports = a(L());
1908
+ })(Tr, function(B) {
1909
+ (function() {
1910
+ var a = B, D = a.lib, F = D.Base, w = a.enc, u = w.Utf8, h = a.algo;
1911
+ h.HMAC = F.extend({
1912
+ /**
1913
+ * Initializes a newly created HMAC.
1914
+ *
1915
+ * @param {Hasher} hasher The hash algorithm to use.
1916
+ * @param {WordArray|string} key The secret key.
1917
+ *
1918
+ * @example
1919
+ *
1920
+ * var hmacHasher = CryptoJS.algo.HMAC.create(CryptoJS.algo.SHA256, key);
1921
+ */
1922
+ init: function(x, e) {
1923
+ x = this._hasher = new x.init(), typeof e == "string" && (e = u.parse(e));
1924
+ var d = x.blockSize, r = d * 4;
1925
+ e.sigBytes > r && (e = x.finalize(e)), e.clamp();
1926
+ for (var s = this._oKey = e.clone(), o = this._iKey = e.clone(), c = s.words, f = o.words, l = 0; l < d; l++)
1927
+ c[l] ^= 1549556828, f[l] ^= 909522486;
1928
+ s.sigBytes = o.sigBytes = r, this.reset();
1929
+ },
1930
+ /**
1931
+ * Resets this HMAC to its initial state.
1932
+ *
1933
+ * @example
1934
+ *
1935
+ * hmacHasher.reset();
1936
+ */
1937
+ reset: function() {
1938
+ var x = this._hasher;
1939
+ x.reset(), x.update(this._iKey);
1940
+ },
1941
+ /**
1942
+ * Updates this HMAC with a message.
1943
+ *
1944
+ * @param {WordArray|string} messageUpdate The message to append.
1945
+ *
1946
+ * @return {HMAC} This HMAC instance.
1947
+ *
1948
+ * @example
1949
+ *
1950
+ * hmacHasher.update('message');
1951
+ * hmacHasher.update(wordArray);
1952
+ */
1953
+ update: function(x) {
1954
+ return this._hasher.update(x), this;
1955
+ },
1956
+ /**
1957
+ * Finalizes the HMAC computation.
1958
+ * Note that the finalize operation is effectively a destructive, read-once operation.
1959
+ *
1960
+ * @param {WordArray|string} messageUpdate (Optional) A final message update.
1961
+ *
1962
+ * @return {WordArray} The HMAC.
1963
+ *
1964
+ * @example
1965
+ *
1966
+ * var hmac = hmacHasher.finalize();
1967
+ * var hmac = hmacHasher.finalize('message');
1968
+ * var hmac = hmacHasher.finalize(wordArray);
1969
+ */
1970
+ finalize: function(x) {
1971
+ var e = this._hasher, d = e.finalize(x);
1972
+ e.reset();
1973
+ var r = e.finalize(this._oKey.clone().concat(d));
1974
+ return r;
1975
+ }
1976
+ });
1977
+ })();
1978
+ });
1979
+ })(S0)), S0.exports;
1980
+ }
1981
+ var R0 = { exports: {} }, Ir = R0.exports, Sx;
1982
+ function Nr() {
1983
+ return Sx || (Sx = 1, (function(S, P) {
1984
+ (function(B, a, D) {
1985
+ S.exports = a(L(), ex(), tx());
1986
+ })(Ir, function(B) {
1987
+ return (function() {
1988
+ var a = B, D = a.lib, F = D.Base, w = D.WordArray, u = a.algo, h = u.SHA256, x = u.HMAC, e = u.PBKDF2 = F.extend({
1989
+ /**
1990
+ * Configuration options.
1991
+ *
1992
+ * @property {number} keySize The key size in words to generate. Default: 4 (128 bits)
1993
+ * @property {Hasher} hasher The hasher to use. Default: SHA256
1994
+ * @property {number} iterations The number of iterations to perform. Default: 250000
1995
+ */
1996
+ cfg: F.extend({
1997
+ keySize: 128 / 32,
1998
+ hasher: h,
1999
+ iterations: 25e4
2000
+ }),
2001
+ /**
2002
+ * Initializes a newly created key derivation function.
2003
+ *
2004
+ * @param {Object} cfg (Optional) The configuration options to use for the derivation.
2005
+ *
2006
+ * @example
2007
+ *
2008
+ * var kdf = CryptoJS.algo.PBKDF2.create();
2009
+ * var kdf = CryptoJS.algo.PBKDF2.create({ keySize: 8 });
2010
+ * var kdf = CryptoJS.algo.PBKDF2.create({ keySize: 8, iterations: 1000 });
2011
+ */
2012
+ init: function(d) {
2013
+ this.cfg = this.cfg.extend(d);
2014
+ },
2015
+ /**
2016
+ * Computes the Password-Based Key Derivation Function 2.
2017
+ *
2018
+ * @param {WordArray|string} password The password.
2019
+ * @param {WordArray|string} salt A salt.
2020
+ *
2021
+ * @return {WordArray} The derived key.
2022
+ *
2023
+ * @example
2024
+ *
2025
+ * var key = kdf.compute(password, salt);
2026
+ */
2027
+ compute: function(d, r) {
2028
+ for (var s = this.cfg, o = x.create(s.hasher, d), c = w.create(), f = w.create([1]), l = c.words, t = f.words, n = s.keySize, i = s.iterations; l.length < n; ) {
2029
+ var E = o.update(r).finalize(f);
2030
+ o.reset();
2031
+ for (var C = E.words, A = C.length, _ = E, R = 1; R < i; R++) {
2032
+ _ = o.finalize(_), o.reset();
2033
+ for (var v = _.words, p = 0; p < A; p++)
2034
+ C[p] ^= v[p];
2035
+ }
2036
+ c.concat(E), t[0]++;
2037
+ }
2038
+ return c.sigBytes = n * 4, c;
2039
+ }
2040
+ });
2041
+ a.PBKDF2 = function(d, r, s) {
2042
+ return e.create(s).compute(d, r);
2043
+ };
2044
+ })(), B.PBKDF2;
2045
+ });
2046
+ })(R0)), R0.exports;
2047
+ }
2048
+ var z0 = { exports: {} }, Xr = z0.exports, Rx;
2049
+ function x0() {
2050
+ return Rx || (Rx = 1, (function(S, P) {
2051
+ (function(B, a, D) {
2052
+ S.exports = a(L(), Vx(), tx());
2053
+ })(Xr, function(B) {
2054
+ return (function() {
2055
+ var a = B, D = a.lib, F = D.Base, w = D.WordArray, u = a.algo, h = u.MD5, x = u.EvpKDF = F.extend({
2056
+ /**
2057
+ * Configuration options.
2058
+ *
2059
+ * @property {number} keySize The key size in words to generate. Default: 4 (128 bits)
2060
+ * @property {Hasher} hasher The hash algorithm to use. Default: MD5
2061
+ * @property {number} iterations The number of iterations to perform. Default: 1
2062
+ */
2063
+ cfg: F.extend({
2064
+ keySize: 128 / 32,
2065
+ hasher: h,
2066
+ iterations: 1
2067
+ }),
2068
+ /**
2069
+ * Initializes a newly created key derivation function.
2070
+ *
2071
+ * @param {Object} cfg (Optional) The configuration options to use for the derivation.
2072
+ *
2073
+ * @example
2074
+ *
2075
+ * var kdf = CryptoJS.algo.EvpKDF.create();
2076
+ * var kdf = CryptoJS.algo.EvpKDF.create({ keySize: 8 });
2077
+ * var kdf = CryptoJS.algo.EvpKDF.create({ keySize: 8, iterations: 1000 });
2078
+ */
2079
+ init: function(e) {
2080
+ this.cfg = this.cfg.extend(e);
2081
+ },
2082
+ /**
2083
+ * Derives a key from a password.
2084
+ *
2085
+ * @param {WordArray|string} password The password.
2086
+ * @param {WordArray|string} salt A salt.
2087
+ *
2088
+ * @return {WordArray} The derived key.
2089
+ *
2090
+ * @example
2091
+ *
2092
+ * var key = kdf.compute(password, salt);
2093
+ */
2094
+ compute: function(e, d) {
2095
+ for (var r, s = this.cfg, o = s.hasher.create(), c = w.create(), f = c.words, l = s.keySize, t = s.iterations; f.length < l; ) {
2096
+ r && o.update(r), r = o.update(e).finalize(d), o.reset();
2097
+ for (var n = 1; n < t; n++)
2098
+ r = o.finalize(r), o.reset();
2099
+ c.concat(r);
2100
+ }
2101
+ return c.sigBytes = l * 4, c;
2102
+ }
2103
+ });
2104
+ a.EvpKDF = function(e, d, r) {
2105
+ return x.create(r).compute(e, d);
2106
+ };
2107
+ })(), B.EvpKDF;
2108
+ });
2109
+ })(z0)), z0.exports;
2110
+ }
2111
+ var q0 = { exports: {} }, Kr = q0.exports, zx;
2112
+ function U() {
2113
+ return zx || (zx = 1, (function(S, P) {
2114
+ (function(B, a, D) {
2115
+ S.exports = a(L(), x0());
2116
+ })(Kr, function(B) {
2117
+ B.lib.Cipher || (function(a) {
2118
+ var D = B, F = D.lib, w = F.Base, u = F.WordArray, h = F.BufferedBlockAlgorithm, x = D.enc;
2119
+ x.Utf8;
2120
+ var e = x.Base64, d = D.algo, r = d.EvpKDF, s = F.Cipher = h.extend({
2121
+ /**
2122
+ * Configuration options.
2123
+ *
2124
+ * @property {WordArray} iv The IV to use for this operation.
2125
+ */
2126
+ cfg: w.extend(),
2127
+ /**
2128
+ * Creates this cipher in encryption mode.
2129
+ *
2130
+ * @param {WordArray} key The key.
2131
+ * @param {Object} cfg (Optional) The configuration options to use for this operation.
2132
+ *
2133
+ * @return {Cipher} A cipher instance.
2134
+ *
2135
+ * @static
2136
+ *
2137
+ * @example
2138
+ *
2139
+ * var cipher = CryptoJS.algo.AES.createEncryptor(keyWordArray, { iv: ivWordArray });
2140
+ */
2141
+ createEncryptor: function(v, p) {
2142
+ return this.create(this._ENC_XFORM_MODE, v, p);
2143
+ },
2144
+ /**
2145
+ * Creates this cipher in decryption mode.
2146
+ *
2147
+ * @param {WordArray} key The key.
2148
+ * @param {Object} cfg (Optional) The configuration options to use for this operation.
2149
+ *
2150
+ * @return {Cipher} A cipher instance.
2151
+ *
2152
+ * @static
2153
+ *
2154
+ * @example
2155
+ *
2156
+ * var cipher = CryptoJS.algo.AES.createDecryptor(keyWordArray, { iv: ivWordArray });
2157
+ */
2158
+ createDecryptor: function(v, p) {
2159
+ return this.create(this._DEC_XFORM_MODE, v, p);
2160
+ },
2161
+ /**
2162
+ * Initializes a newly created cipher.
2163
+ *
2164
+ * @param {number} xformMode Either the encryption or decryption transormation mode constant.
2165
+ * @param {WordArray} key The key.
2166
+ * @param {Object} cfg (Optional) The configuration options to use for this operation.
2167
+ *
2168
+ * @example
2169
+ *
2170
+ * var cipher = CryptoJS.algo.AES.create(CryptoJS.algo.AES._ENC_XFORM_MODE, keyWordArray, { iv: ivWordArray });
2171
+ */
2172
+ init: function(v, p, y) {
2173
+ this.cfg = this.cfg.extend(y), this._xformMode = v, this._key = p, this.reset();
2174
+ },
2175
+ /**
2176
+ * Resets this cipher to its initial state.
2177
+ *
2178
+ * @example
2179
+ *
2180
+ * cipher.reset();
2181
+ */
2182
+ reset: function() {
2183
+ h.reset.call(this), this._doReset();
2184
+ },
2185
+ /**
2186
+ * Adds data to be encrypted or decrypted.
2187
+ *
2188
+ * @param {WordArray|string} dataUpdate The data to encrypt or decrypt.
2189
+ *
2190
+ * @return {WordArray} The data after processing.
2191
+ *
2192
+ * @example
2193
+ *
2194
+ * var encrypted = cipher.process('data');
2195
+ * var encrypted = cipher.process(wordArray);
2196
+ */
2197
+ process: function(v) {
2198
+ return this._append(v), this._process();
2199
+ },
2200
+ /**
2201
+ * Finalizes the encryption or decryption process.
2202
+ * Note that the finalize operation is effectively a destructive, read-once operation.
2203
+ *
2204
+ * @param {WordArray|string} dataUpdate The final data to encrypt or decrypt.
2205
+ *
2206
+ * @return {WordArray} The data after final processing.
2207
+ *
2208
+ * @example
2209
+ *
2210
+ * var encrypted = cipher.finalize();
2211
+ * var encrypted = cipher.finalize('data');
2212
+ * var encrypted = cipher.finalize(wordArray);
2213
+ */
2214
+ finalize: function(v) {
2215
+ v && this._append(v);
2216
+ var p = this._doFinalize();
2217
+ return p;
2218
+ },
2219
+ keySize: 128 / 32,
2220
+ ivSize: 128 / 32,
2221
+ _ENC_XFORM_MODE: 1,
2222
+ _DEC_XFORM_MODE: 2,
2223
+ /**
2224
+ * Creates shortcut functions to a cipher's object interface.
2225
+ *
2226
+ * @param {Cipher} cipher The cipher to create a helper for.
2227
+ *
2228
+ * @return {Object} An object with encrypt and decrypt shortcut functions.
2229
+ *
2230
+ * @static
2231
+ *
2232
+ * @example
2233
+ *
2234
+ * var AES = CryptoJS.lib.Cipher._createHelper(CryptoJS.algo.AES);
2235
+ */
2236
+ _createHelper: /* @__PURE__ */ (function() {
2237
+ function v(p) {
2238
+ return typeof p == "string" ? R : C;
2239
+ }
2240
+ return function(p) {
2241
+ return {
2242
+ encrypt: function(y, g, z) {
2243
+ return v(g).encrypt(p, y, g, z);
2244
+ },
2245
+ decrypt: function(y, g, z) {
2246
+ return v(g).decrypt(p, y, g, z);
2247
+ }
2248
+ };
2249
+ };
2250
+ })()
2251
+ });
2252
+ F.StreamCipher = s.extend({
2253
+ _doFinalize: function() {
2254
+ var v = this._process(!0);
2255
+ return v;
2256
+ },
2257
+ blockSize: 1
2258
+ });
2259
+ var o = D.mode = {}, c = F.BlockCipherMode = w.extend({
2260
+ /**
2261
+ * Creates this mode for encryption.
2262
+ *
2263
+ * @param {Cipher} cipher A block cipher instance.
2264
+ * @param {Array} iv The IV words.
2265
+ *
2266
+ * @static
2267
+ *
2268
+ * @example
2269
+ *
2270
+ * var mode = CryptoJS.mode.CBC.createEncryptor(cipher, iv.words);
2271
+ */
2272
+ createEncryptor: function(v, p) {
2273
+ return this.Encryptor.create(v, p);
2274
+ },
2275
+ /**
2276
+ * Creates this mode for decryption.
2277
+ *
2278
+ * @param {Cipher} cipher A block cipher instance.
2279
+ * @param {Array} iv The IV words.
2280
+ *
2281
+ * @static
2282
+ *
2283
+ * @example
2284
+ *
2285
+ * var mode = CryptoJS.mode.CBC.createDecryptor(cipher, iv.words);
2286
+ */
2287
+ createDecryptor: function(v, p) {
2288
+ return this.Decryptor.create(v, p);
2289
+ },
2290
+ /**
2291
+ * Initializes a newly created mode.
2292
+ *
2293
+ * @param {Cipher} cipher A block cipher instance.
2294
+ * @param {Array} iv The IV words.
2295
+ *
2296
+ * @example
2297
+ *
2298
+ * var mode = CryptoJS.mode.CBC.Encryptor.create(cipher, iv.words);
2299
+ */
2300
+ init: function(v, p) {
2301
+ this._cipher = v, this._iv = p;
2302
+ }
2303
+ }), f = o.CBC = (function() {
2304
+ var v = c.extend();
2305
+ v.Encryptor = v.extend({
2306
+ /**
2307
+ * Processes the data block at offset.
2308
+ *
2309
+ * @param {Array} words The data words to operate on.
2310
+ * @param {number} offset The offset where the block starts.
2311
+ *
2312
+ * @example
2313
+ *
2314
+ * mode.processBlock(data.words, offset);
2315
+ */
2316
+ processBlock: function(y, g) {
2317
+ var z = this._cipher, q = z.blockSize;
2318
+ p.call(this, y, g, q), z.encryptBlock(y, g), this._prevBlock = y.slice(g, g + q);
2319
+ }
2320
+ }), v.Decryptor = v.extend({
2321
+ /**
2322
+ * Processes the data block at offset.
2323
+ *
2324
+ * @param {Array} words The data words to operate on.
2325
+ * @param {number} offset The offset where the block starts.
2326
+ *
2327
+ * @example
2328
+ *
2329
+ * mode.processBlock(data.words, offset);
2330
+ */
2331
+ processBlock: function(y, g) {
2332
+ var z = this._cipher, q = z.blockSize, W = y.slice(g, g + q);
2333
+ z.decryptBlock(y, g), p.call(this, y, g, q), this._prevBlock = W;
2334
+ }
2335
+ });
2336
+ function p(y, g, z) {
2337
+ var q, W = this._iv;
2338
+ W ? (q = W, this._iv = a) : q = this._prevBlock;
2339
+ for (var X = 0; X < z; X++)
2340
+ y[g + X] ^= q[X];
2341
+ }
2342
+ return v;
2343
+ })(), l = D.pad = {}, t = l.Pkcs7 = {
2344
+ /**
2345
+ * Pads data using the algorithm defined in PKCS #5/7.
2346
+ *
2347
+ * @param {WordArray} data The data to pad.
2348
+ * @param {number} blockSize The multiple that the data should be padded to.
2349
+ *
2350
+ * @static
2351
+ *
2352
+ * @example
2353
+ *
2354
+ * CryptoJS.pad.Pkcs7.pad(wordArray, 4);
2355
+ */
2356
+ pad: function(v, p) {
2357
+ for (var y = p * 4, g = y - v.sigBytes % y, z = g << 24 | g << 16 | g << 8 | g, q = [], W = 0; W < g; W += 4)
2358
+ q.push(z);
2359
+ var X = u.create(q, g);
2360
+ v.concat(X);
2361
+ },
2362
+ /**
2363
+ * Unpads data that had been padded using the algorithm defined in PKCS #5/7.
2364
+ *
2365
+ * @param {WordArray} data The data to unpad.
2366
+ *
2367
+ * @static
2368
+ *
2369
+ * @example
2370
+ *
2371
+ * CryptoJS.pad.Pkcs7.unpad(wordArray);
2372
+ */
2373
+ unpad: function(v) {
2374
+ var p = v.words[v.sigBytes - 1 >>> 2] & 255;
2375
+ v.sigBytes -= p;
2376
+ }
2377
+ };
2378
+ F.BlockCipher = s.extend({
2379
+ /**
2380
+ * Configuration options.
2381
+ *
2382
+ * @property {Mode} mode The block mode to use. Default: CBC
2383
+ * @property {Padding} padding The padding strategy to use. Default: Pkcs7
2384
+ */
2385
+ cfg: s.cfg.extend({
2386
+ mode: f,
2387
+ padding: t
2388
+ }),
2389
+ reset: function() {
2390
+ var v;
2391
+ s.reset.call(this);
2392
+ var p = this.cfg, y = p.iv, g = p.mode;
2393
+ this._xformMode == this._ENC_XFORM_MODE ? v = g.createEncryptor : (v = g.createDecryptor, this._minBufferSize = 1), this._mode && this._mode.__creator == v ? this._mode.init(this, y && y.words) : (this._mode = v.call(g, this, y && y.words), this._mode.__creator = v);
2394
+ },
2395
+ _doProcessBlock: function(v, p) {
2396
+ this._mode.processBlock(v, p);
2397
+ },
2398
+ _doFinalize: function() {
2399
+ var v, p = this.cfg.padding;
2400
+ return this._xformMode == this._ENC_XFORM_MODE ? (p.pad(this._data, this.blockSize), v = this._process(!0)) : (v = this._process(!0), p.unpad(v)), v;
2401
+ },
2402
+ blockSize: 128 / 32
2403
+ });
2404
+ var n = F.CipherParams = w.extend({
2405
+ /**
2406
+ * Initializes a newly created cipher params object.
2407
+ *
2408
+ * @param {Object} cipherParams An object with any of the possible cipher parameters.
2409
+ *
2410
+ * @example
2411
+ *
2412
+ * var cipherParams = CryptoJS.lib.CipherParams.create({
2413
+ * ciphertext: ciphertextWordArray,
2414
+ * key: keyWordArray,
2415
+ * iv: ivWordArray,
2416
+ * salt: saltWordArray,
2417
+ * algorithm: CryptoJS.algo.AES,
2418
+ * mode: CryptoJS.mode.CBC,
2419
+ * padding: CryptoJS.pad.PKCS7,
2420
+ * blockSize: 4,
2421
+ * formatter: CryptoJS.format.OpenSSL
2422
+ * });
2423
+ */
2424
+ init: function(v) {
2425
+ this.mixIn(v);
2426
+ },
2427
+ /**
2428
+ * Converts this cipher params object to a string.
2429
+ *
2430
+ * @param {Format} formatter (Optional) The formatting strategy to use.
2431
+ *
2432
+ * @return {string} The stringified cipher params.
2433
+ *
2434
+ * @throws Error If neither the formatter nor the default formatter is set.
2435
+ *
2436
+ * @example
2437
+ *
2438
+ * var string = cipherParams + '';
2439
+ * var string = cipherParams.toString();
2440
+ * var string = cipherParams.toString(CryptoJS.format.OpenSSL);
2441
+ */
2442
+ toString: function(v) {
2443
+ return (v || this.formatter).stringify(this);
2444
+ }
2445
+ }), i = D.format = {}, E = i.OpenSSL = {
2446
+ /**
2447
+ * Converts a cipher params object to an OpenSSL-compatible string.
2448
+ *
2449
+ * @param {CipherParams} cipherParams The cipher params object.
2450
+ *
2451
+ * @return {string} The OpenSSL-compatible string.
2452
+ *
2453
+ * @static
2454
+ *
2455
+ * @example
2456
+ *
2457
+ * var openSSLString = CryptoJS.format.OpenSSL.stringify(cipherParams);
2458
+ */
2459
+ stringify: function(v) {
2460
+ var p, y = v.ciphertext, g = v.salt;
2461
+ return g ? p = u.create([1398893684, 1701076831]).concat(g).concat(y) : p = y, p.toString(e);
2462
+ },
2463
+ /**
2464
+ * Converts an OpenSSL-compatible string to a cipher params object.
2465
+ *
2466
+ * @param {string} openSSLStr The OpenSSL-compatible string.
2467
+ *
2468
+ * @return {CipherParams} The cipher params object.
2469
+ *
2470
+ * @static
2471
+ *
2472
+ * @example
2473
+ *
2474
+ * var cipherParams = CryptoJS.format.OpenSSL.parse(openSSLString);
2475
+ */
2476
+ parse: function(v) {
2477
+ var p, y = e.parse(v), g = y.words;
2478
+ return g[0] == 1398893684 && g[1] == 1701076831 && (p = u.create(g.slice(2, 4)), g.splice(0, 4), y.sigBytes -= 16), n.create({ ciphertext: y, salt: p });
2479
+ }
2480
+ }, C = F.SerializableCipher = w.extend({
2481
+ /**
2482
+ * Configuration options.
2483
+ *
2484
+ * @property {Formatter} format The formatting strategy to convert cipher param objects to and from a string. Default: OpenSSL
2485
+ */
2486
+ cfg: w.extend({
2487
+ format: E
2488
+ }),
2489
+ /**
2490
+ * Encrypts a message.
2491
+ *
2492
+ * @param {Cipher} cipher The cipher algorithm to use.
2493
+ * @param {WordArray|string} message The message to encrypt.
2494
+ * @param {WordArray} key The key.
2495
+ * @param {Object} cfg (Optional) The configuration options to use for this operation.
2496
+ *
2497
+ * @return {CipherParams} A cipher params object.
2498
+ *
2499
+ * @static
2500
+ *
2501
+ * @example
2502
+ *
2503
+ * var ciphertextParams = CryptoJS.lib.SerializableCipher.encrypt(CryptoJS.algo.AES, message, key);
2504
+ * var ciphertextParams = CryptoJS.lib.SerializableCipher.encrypt(CryptoJS.algo.AES, message, key, { iv: iv });
2505
+ * var ciphertextParams = CryptoJS.lib.SerializableCipher.encrypt(CryptoJS.algo.AES, message, key, { iv: iv, format: CryptoJS.format.OpenSSL });
2506
+ */
2507
+ encrypt: function(v, p, y, g) {
2508
+ g = this.cfg.extend(g);
2509
+ var z = v.createEncryptor(y, g), q = z.finalize(p), W = z.cfg;
2510
+ return n.create({
2511
+ ciphertext: q,
2512
+ key: y,
2513
+ iv: W.iv,
2514
+ algorithm: v,
2515
+ mode: W.mode,
2516
+ padding: W.padding,
2517
+ blockSize: v.blockSize,
2518
+ formatter: g.format
2519
+ });
2520
+ },
2521
+ /**
2522
+ * Decrypts serialized ciphertext.
2523
+ *
2524
+ * @param {Cipher} cipher The cipher algorithm to use.
2525
+ * @param {CipherParams|string} ciphertext The ciphertext to decrypt.
2526
+ * @param {WordArray} key The key.
2527
+ * @param {Object} cfg (Optional) The configuration options to use for this operation.
2528
+ *
2529
+ * @return {WordArray} The plaintext.
2530
+ *
2531
+ * @static
2532
+ *
2533
+ * @example
2534
+ *
2535
+ * var plaintext = CryptoJS.lib.SerializableCipher.decrypt(CryptoJS.algo.AES, formattedCiphertext, key, { iv: iv, format: CryptoJS.format.OpenSSL });
2536
+ * var plaintext = CryptoJS.lib.SerializableCipher.decrypt(CryptoJS.algo.AES, ciphertextParams, key, { iv: iv, format: CryptoJS.format.OpenSSL });
2537
+ */
2538
+ decrypt: function(v, p, y, g) {
2539
+ g = this.cfg.extend(g), p = this._parse(p, g.format);
2540
+ var z = v.createDecryptor(y, g).finalize(p.ciphertext);
2541
+ return z;
2542
+ },
2543
+ /**
2544
+ * Converts serialized ciphertext to CipherParams,
2545
+ * else assumed CipherParams already and returns ciphertext unchanged.
2546
+ *
2547
+ * @param {CipherParams|string} ciphertext The ciphertext.
2548
+ * @param {Formatter} format The formatting strategy to use to parse serialized ciphertext.
2549
+ *
2550
+ * @return {CipherParams} The unserialized ciphertext.
2551
+ *
2552
+ * @static
2553
+ *
2554
+ * @example
2555
+ *
2556
+ * var ciphertextParams = CryptoJS.lib.SerializableCipher._parse(ciphertextStringOrParams, format);
2557
+ */
2558
+ _parse: function(v, p) {
2559
+ return typeof v == "string" ? p.parse(v, this) : v;
2560
+ }
2561
+ }), A = D.kdf = {}, _ = A.OpenSSL = {
2562
+ /**
2563
+ * Derives a key and IV from a password.
2564
+ *
2565
+ * @param {string} password The password to derive from.
2566
+ * @param {number} keySize The size in words of the key to generate.
2567
+ * @param {number} ivSize The size in words of the IV to generate.
2568
+ * @param {WordArray|string} salt (Optional) A 64-bit salt to use. If omitted, a salt will be generated randomly.
2569
+ *
2570
+ * @return {CipherParams} A cipher params object with the key, IV, and salt.
2571
+ *
2572
+ * @static
2573
+ *
2574
+ * @example
2575
+ *
2576
+ * var derivedParams = CryptoJS.kdf.OpenSSL.execute('Password', 256/32, 128/32);
2577
+ * var derivedParams = CryptoJS.kdf.OpenSSL.execute('Password', 256/32, 128/32, 'saltsalt');
2578
+ */
2579
+ execute: function(v, p, y, g, z) {
2580
+ if (g || (g = u.random(64 / 8)), z)
2581
+ var q = r.create({ keySize: p + y, hasher: z }).compute(v, g);
2582
+ else
2583
+ var q = r.create({ keySize: p + y }).compute(v, g);
2584
+ var W = u.create(q.words.slice(p), y * 4);
2585
+ return q.sigBytes = p * 4, n.create({ key: q, iv: W, salt: g });
2586
+ }
2587
+ }, R = F.PasswordBasedCipher = C.extend({
2588
+ /**
2589
+ * Configuration options.
2590
+ *
2591
+ * @property {KDF} kdf The key derivation function to use to generate a key and IV from a password. Default: OpenSSL
2592
+ */
2593
+ cfg: C.cfg.extend({
2594
+ kdf: _
2595
+ }),
2596
+ /**
2597
+ * Encrypts a message using a password.
2598
+ *
2599
+ * @param {Cipher} cipher The cipher algorithm to use.
2600
+ * @param {WordArray|string} message The message to encrypt.
2601
+ * @param {string} password The password.
2602
+ * @param {Object} cfg (Optional) The configuration options to use for this operation.
2603
+ *
2604
+ * @return {CipherParams} A cipher params object.
2605
+ *
2606
+ * @static
2607
+ *
2608
+ * @example
2609
+ *
2610
+ * var ciphertextParams = CryptoJS.lib.PasswordBasedCipher.encrypt(CryptoJS.algo.AES, message, 'password');
2611
+ * var ciphertextParams = CryptoJS.lib.PasswordBasedCipher.encrypt(CryptoJS.algo.AES, message, 'password', { format: CryptoJS.format.OpenSSL });
2612
+ */
2613
+ encrypt: function(v, p, y, g) {
2614
+ g = this.cfg.extend(g);
2615
+ var z = g.kdf.execute(y, v.keySize, v.ivSize, g.salt, g.hasher);
2616
+ g.iv = z.iv;
2617
+ var q = C.encrypt.call(this, v, p, z.key, g);
2618
+ return q.mixIn(z), q;
2619
+ },
2620
+ /**
2621
+ * Decrypts serialized ciphertext using a password.
2622
+ *
2623
+ * @param {Cipher} cipher The cipher algorithm to use.
2624
+ * @param {CipherParams|string} ciphertext The ciphertext to decrypt.
2625
+ * @param {string} password The password.
2626
+ * @param {Object} cfg (Optional) The configuration options to use for this operation.
2627
+ *
2628
+ * @return {WordArray} The plaintext.
2629
+ *
2630
+ * @static
2631
+ *
2632
+ * @example
2633
+ *
2634
+ * var plaintext = CryptoJS.lib.PasswordBasedCipher.decrypt(CryptoJS.algo.AES, formattedCiphertext, 'password', { format: CryptoJS.format.OpenSSL });
2635
+ * var plaintext = CryptoJS.lib.PasswordBasedCipher.decrypt(CryptoJS.algo.AES, ciphertextParams, 'password', { format: CryptoJS.format.OpenSSL });
2636
+ */
2637
+ decrypt: function(v, p, y, g) {
2638
+ g = this.cfg.extend(g), p = this._parse(p, g.format);
2639
+ var z = g.kdf.execute(y, v.keySize, v.ivSize, p.salt, g.hasher);
2640
+ g.iv = z.iv;
2641
+ var q = C.decrypt.call(this, v, p, z.key, g);
2642
+ return q;
2643
+ }
2644
+ });
2645
+ })();
2646
+ });
2647
+ })(q0)), q0.exports;
2648
+ }
2649
+ var P0 = { exports: {} }, Ur = P0.exports, qx;
2650
+ function Gr() {
2651
+ return qx || (qx = 1, (function(S, P) {
2652
+ (function(B, a, D) {
2653
+ S.exports = a(L(), U());
2654
+ })(Ur, function(B) {
2655
+ return B.mode.CFB = (function() {
2656
+ var a = B.lib.BlockCipherMode.extend();
2657
+ a.Encryptor = a.extend({
2658
+ processBlock: function(F, w) {
2659
+ var u = this._cipher, h = u.blockSize;
2660
+ D.call(this, F, w, h, u), this._prevBlock = F.slice(w, w + h);
2661
+ }
2662
+ }), a.Decryptor = a.extend({
2663
+ processBlock: function(F, w) {
2664
+ var u = this._cipher, h = u.blockSize, x = F.slice(w, w + h);
2665
+ D.call(this, F, w, h, u), this._prevBlock = x;
2666
+ }
2667
+ });
2668
+ function D(F, w, u, h) {
2669
+ var x, e = this._iv;
2670
+ e ? (x = e.slice(0), this._iv = void 0) : x = this._prevBlock, h.encryptBlock(x, 0);
2671
+ for (var d = 0; d < u; d++)
2672
+ F[w + d] ^= x[d];
2673
+ }
2674
+ return a;
2675
+ })(), B.mode.CFB;
2676
+ });
2677
+ })(P0)), P0.exports;
2678
+ }
2679
+ var W0 = { exports: {} }, Zr = W0.exports, Px;
2680
+ function jr() {
2681
+ return Px || (Px = 1, (function(S, P) {
2682
+ (function(B, a, D) {
2683
+ S.exports = a(L(), U());
2684
+ })(Zr, function(B) {
2685
+ return B.mode.CTR = (function() {
2686
+ var a = B.lib.BlockCipherMode.extend(), D = a.Encryptor = a.extend({
2687
+ processBlock: function(F, w) {
2688
+ var u = this._cipher, h = u.blockSize, x = this._iv, e = this._counter;
2689
+ x && (e = this._counter = x.slice(0), this._iv = void 0);
2690
+ var d = e.slice(0);
2691
+ u.encryptBlock(d, 0), e[h - 1] = e[h - 1] + 1 | 0;
2692
+ for (var r = 0; r < h; r++)
2693
+ F[w + r] ^= d[r];
2694
+ }
2695
+ });
2696
+ return a.Decryptor = D, a;
2697
+ })(), B.mode.CTR;
2698
+ });
2699
+ })(W0)), W0.exports;
2700
+ }
2701
+ var $0 = { exports: {} }, Qr = $0.exports, Wx;
2702
+ function Yr() {
2703
+ return Wx || (Wx = 1, (function(S, P) {
2704
+ (function(B, a, D) {
2705
+ S.exports = a(L(), U());
2706
+ })(Qr, function(B) {
2707
+ /** @preserve
2708
+ * Counter block mode compatible with Dr Brian Gladman fileenc.c
2709
+ * derived from CryptoJS.mode.CTR
2710
+ * Jan Hruby jhruby.web@gmail.com
2711
+ */
2712
+ return B.mode.CTRGladman = (function() {
2713
+ var a = B.lib.BlockCipherMode.extend();
2714
+ function D(u) {
2715
+ if ((u >> 24 & 255) === 255) {
2716
+ var h = u >> 16 & 255, x = u >> 8 & 255, e = u & 255;
2717
+ h === 255 ? (h = 0, x === 255 ? (x = 0, e === 255 ? e = 0 : ++e) : ++x) : ++h, u = 0, u += h << 16, u += x << 8, u += e;
2718
+ } else
2719
+ u += 1 << 24;
2720
+ return u;
2721
+ }
2722
+ function F(u) {
2723
+ return (u[0] = D(u[0])) === 0 && (u[1] = D(u[1])), u;
2724
+ }
2725
+ var w = a.Encryptor = a.extend({
2726
+ processBlock: function(u, h) {
2727
+ var x = this._cipher, e = x.blockSize, d = this._iv, r = this._counter;
2728
+ d && (r = this._counter = d.slice(0), this._iv = void 0), F(r);
2729
+ var s = r.slice(0);
2730
+ x.encryptBlock(s, 0);
2731
+ for (var o = 0; o < e; o++)
2732
+ u[h + o] ^= s[o];
2733
+ }
2734
+ });
2735
+ return a.Decryptor = w, a;
2736
+ })(), B.mode.CTRGladman;
2737
+ });
2738
+ })($0)), $0.exports;
2739
+ }
2740
+ var L0 = { exports: {} }, Mr = L0.exports, $x;
2741
+ function Vr() {
2742
+ return $x || ($x = 1, (function(S, P) {
2743
+ (function(B, a, D) {
2744
+ S.exports = a(L(), U());
2745
+ })(Mr, function(B) {
2746
+ return B.mode.OFB = (function() {
2747
+ var a = B.lib.BlockCipherMode.extend(), D = a.Encryptor = a.extend({
2748
+ processBlock: function(F, w) {
2749
+ var u = this._cipher, h = u.blockSize, x = this._iv, e = this._keystream;
2750
+ x && (e = this._keystream = x.slice(0), this._iv = void 0), u.encryptBlock(e, 0);
2751
+ for (var d = 0; d < h; d++)
2752
+ F[w + d] ^= e[d];
2753
+ }
2754
+ });
2755
+ return a.Decryptor = D, a;
2756
+ })(), B.mode.OFB;
2757
+ });
2758
+ })(L0)), L0.exports;
2759
+ }
2760
+ var O0 = { exports: {} }, Jr = O0.exports, Lx;
2761
+ function xe() {
2762
+ return Lx || (Lx = 1, (function(S, P) {
2763
+ (function(B, a, D) {
2764
+ S.exports = a(L(), U());
2765
+ })(Jr, function(B) {
2766
+ return B.mode.ECB = (function() {
2767
+ var a = B.lib.BlockCipherMode.extend();
2768
+ return a.Encryptor = a.extend({
2769
+ processBlock: function(D, F) {
2770
+ this._cipher.encryptBlock(D, F);
2771
+ }
2772
+ }), a.Decryptor = a.extend({
2773
+ processBlock: function(D, F) {
2774
+ this._cipher.decryptBlock(D, F);
2775
+ }
2776
+ }), a;
2777
+ })(), B.mode.ECB;
2778
+ });
2779
+ })(O0)), O0.exports;
2780
+ }
2781
+ var T0 = { exports: {} }, re = T0.exports, Ox;
2782
+ function ee() {
2783
+ return Ox || (Ox = 1, (function(S, P) {
2784
+ (function(B, a, D) {
2785
+ S.exports = a(L(), U());
2786
+ })(re, function(B) {
2787
+ return B.pad.AnsiX923 = {
2788
+ pad: function(a, D) {
2789
+ var F = a.sigBytes, w = D * 4, u = w - F % w, h = F + u - 1;
2790
+ a.clamp(), a.words[h >>> 2] |= u << 24 - h % 4 * 8, a.sigBytes += u;
2791
+ },
2792
+ unpad: function(a) {
2793
+ var D = a.words[a.sigBytes - 1 >>> 2] & 255;
2794
+ a.sigBytes -= D;
2795
+ }
2796
+ }, B.pad.Ansix923;
2797
+ });
2798
+ })(T0)), T0.exports;
2799
+ }
2800
+ var I0 = { exports: {} }, te = I0.exports, Tx;
2801
+ function ae() {
2802
+ return Tx || (Tx = 1, (function(S, P) {
2803
+ (function(B, a, D) {
2804
+ S.exports = a(L(), U());
2805
+ })(te, function(B) {
2806
+ return B.pad.Iso10126 = {
2807
+ pad: function(a, D) {
2808
+ var F = D * 4, w = F - a.sigBytes % F;
2809
+ a.concat(B.lib.WordArray.random(w - 1)).concat(B.lib.WordArray.create([w << 24], 1));
2810
+ },
2811
+ unpad: function(a) {
2812
+ var D = a.words[a.sigBytes - 1 >>> 2] & 255;
2813
+ a.sigBytes -= D;
2814
+ }
2815
+ }, B.pad.Iso10126;
2816
+ });
2817
+ })(I0)), I0.exports;
2818
+ }
2819
+ var N0 = { exports: {} }, ne = N0.exports, Ix;
2820
+ function oe() {
2821
+ return Ix || (Ix = 1, (function(S, P) {
2822
+ (function(B, a, D) {
2823
+ S.exports = a(L(), U());
2824
+ })(ne, function(B) {
2825
+ return B.pad.Iso97971 = {
2826
+ pad: function(a, D) {
2827
+ a.concat(B.lib.WordArray.create([2147483648], 1)), B.pad.ZeroPadding.pad(a, D);
2828
+ },
2829
+ unpad: function(a) {
2830
+ B.pad.ZeroPadding.unpad(a), a.sigBytes--;
2831
+ }
2832
+ }, B.pad.Iso97971;
2833
+ });
2834
+ })(N0)), N0.exports;
2835
+ }
2836
+ var X0 = { exports: {} }, ie = X0.exports, Nx;
2837
+ function fe() {
2838
+ return Nx || (Nx = 1, (function(S, P) {
2839
+ (function(B, a, D) {
2840
+ S.exports = a(L(), U());
2841
+ })(ie, function(B) {
2842
+ return B.pad.ZeroPadding = {
2843
+ pad: function(a, D) {
2844
+ var F = D * 4;
2845
+ a.clamp(), a.sigBytes += F - (a.sigBytes % F || F);
2846
+ },
2847
+ unpad: function(a) {
2848
+ for (var D = a.words, F = a.sigBytes - 1, F = a.sigBytes - 1; F >= 0; F--)
2849
+ if (D[F >>> 2] >>> 24 - F % 4 * 8 & 255) {
2850
+ a.sigBytes = F + 1;
2851
+ break;
2852
+ }
2853
+ }
2854
+ }, B.pad.ZeroPadding;
2855
+ });
2856
+ })(X0)), X0.exports;
2857
+ }
2858
+ var K0 = { exports: {} }, se = K0.exports, Xx;
2859
+ function ce() {
2860
+ return Xx || (Xx = 1, (function(S, P) {
2861
+ (function(B, a, D) {
2862
+ S.exports = a(L(), U());
2863
+ })(se, function(B) {
2864
+ return B.pad.NoPadding = {
2865
+ pad: function() {
2866
+ },
2867
+ unpad: function() {
2868
+ }
2869
+ }, B.pad.NoPadding;
2870
+ });
2871
+ })(K0)), K0.exports;
2872
+ }
2873
+ var U0 = { exports: {} }, ve = U0.exports, Kx;
2874
+ function ue() {
2875
+ return Kx || (Kx = 1, (function(S, P) {
2876
+ (function(B, a, D) {
2877
+ S.exports = a(L(), U());
2878
+ })(ve, function(B) {
2879
+ return (function(a) {
2880
+ var D = B, F = D.lib, w = F.CipherParams, u = D.enc, h = u.Hex, x = D.format;
2881
+ x.Hex = {
2882
+ /**
2883
+ * Converts the ciphertext of a cipher params object to a hexadecimally encoded string.
2884
+ *
2885
+ * @param {CipherParams} cipherParams The cipher params object.
2886
+ *
2887
+ * @return {string} The hexadecimally encoded string.
2888
+ *
2889
+ * @static
2890
+ *
2891
+ * @example
2892
+ *
2893
+ * var hexString = CryptoJS.format.Hex.stringify(cipherParams);
2894
+ */
2895
+ stringify: function(e) {
2896
+ return e.ciphertext.toString(h);
2897
+ },
2898
+ /**
2899
+ * Converts a hexadecimally encoded ciphertext string to a cipher params object.
2900
+ *
2901
+ * @param {string} input The hexadecimally encoded string.
2902
+ *
2903
+ * @return {CipherParams} The cipher params object.
2904
+ *
2905
+ * @static
2906
+ *
2907
+ * @example
2908
+ *
2909
+ * var cipherParams = CryptoJS.format.Hex.parse(hexString);
2910
+ */
2911
+ parse: function(e) {
2912
+ var d = h.parse(e);
2913
+ return w.create({ ciphertext: d });
2914
+ }
2915
+ };
2916
+ })(), B.format.Hex;
2917
+ });
2918
+ })(U0)), U0.exports;
2919
+ }
2920
+ var G0 = { exports: {} }, de = G0.exports, Ux;
2921
+ function Be() {
2922
+ return Ux || (Ux = 1, (function(S, P) {
2923
+ (function(B, a, D) {
2924
+ S.exports = a(L(), r0(), e0(), x0(), U());
2925
+ })(de, function(B) {
2926
+ return (function() {
2927
+ var a = B, D = a.lib, F = D.BlockCipher, w = a.algo, u = [], h = [], x = [], e = [], d = [], r = [], s = [], o = [], c = [], f = [];
2928
+ (function() {
2929
+ for (var n = [], i = 0; i < 256; i++)
2930
+ i < 128 ? n[i] = i << 1 : n[i] = i << 1 ^ 283;
2931
+ for (var E = 0, C = 0, i = 0; i < 256; i++) {
2932
+ var A = C ^ C << 1 ^ C << 2 ^ C << 3 ^ C << 4;
2933
+ A = A >>> 8 ^ A & 255 ^ 99, u[E] = A, h[A] = E;
2934
+ var _ = n[E], R = n[_], v = n[R], p = n[A] * 257 ^ A * 16843008;
2935
+ x[E] = p << 24 | p >>> 8, e[E] = p << 16 | p >>> 16, d[E] = p << 8 | p >>> 24, r[E] = p;
2936
+ var p = v * 16843009 ^ R * 65537 ^ _ * 257 ^ E * 16843008;
2937
+ s[A] = p << 24 | p >>> 8, o[A] = p << 16 | p >>> 16, c[A] = p << 8 | p >>> 24, f[A] = p, E ? (E = _ ^ n[n[n[v ^ _]]], C ^= n[n[C]]) : E = C = 1;
2938
+ }
2939
+ })();
2940
+ var l = [0, 1, 2, 4, 8, 16, 32, 64, 128, 27, 54], t = w.AES = F.extend({
2941
+ _doReset: function() {
2942
+ var n;
2943
+ if (!(this._nRounds && this._keyPriorReset === this._key)) {
2944
+ for (var i = this._keyPriorReset = this._key, E = i.words, C = i.sigBytes / 4, A = this._nRounds = C + 6, _ = (A + 1) * 4, R = this._keySchedule = [], v = 0; v < _; v++)
2945
+ v < C ? R[v] = E[v] : (n = R[v - 1], v % C ? C > 6 && v % C == 4 && (n = u[n >>> 24] << 24 | u[n >>> 16 & 255] << 16 | u[n >>> 8 & 255] << 8 | u[n & 255]) : (n = n << 8 | n >>> 24, n = u[n >>> 24] << 24 | u[n >>> 16 & 255] << 16 | u[n >>> 8 & 255] << 8 | u[n & 255], n ^= l[v / C | 0] << 24), R[v] = R[v - C] ^ n);
2946
+ for (var p = this._invKeySchedule = [], y = 0; y < _; y++) {
2947
+ var v = _ - y;
2948
+ if (y % 4)
2949
+ var n = R[v];
2950
+ else
2951
+ var n = R[v - 4];
2952
+ y < 4 || v <= 4 ? p[y] = n : p[y] = s[u[n >>> 24]] ^ o[u[n >>> 16 & 255]] ^ c[u[n >>> 8 & 255]] ^ f[u[n & 255]];
2953
+ }
2954
+ }
2955
+ },
2956
+ encryptBlock: function(n, i) {
2957
+ this._doCryptBlock(n, i, this._keySchedule, x, e, d, r, u);
2958
+ },
2959
+ decryptBlock: function(n, i) {
2960
+ var E = n[i + 1];
2961
+ n[i + 1] = n[i + 3], n[i + 3] = E, this._doCryptBlock(n, i, this._invKeySchedule, s, o, c, f, h);
2962
+ var E = n[i + 1];
2963
+ n[i + 1] = n[i + 3], n[i + 3] = E;
2964
+ },
2965
+ _doCryptBlock: function(n, i, E, C, A, _, R, v) {
2966
+ for (var p = this._nRounds, y = n[i] ^ E[0], g = n[i + 1] ^ E[1], z = n[i + 2] ^ E[2], q = n[i + 3] ^ E[3], W = 4, X = 1; X < p; X++) {
2967
+ var O = C[y >>> 24] ^ A[g >>> 16 & 255] ^ _[z >>> 8 & 255] ^ R[q & 255] ^ E[W++], I = C[g >>> 24] ^ A[z >>> 16 & 255] ^ _[q >>> 8 & 255] ^ R[y & 255] ^ E[W++], T = C[z >>> 24] ^ A[q >>> 16 & 255] ^ _[y >>> 8 & 255] ^ R[g & 255] ^ E[W++], b = C[q >>> 24] ^ A[y >>> 16 & 255] ^ _[g >>> 8 & 255] ^ R[z & 255] ^ E[W++];
2968
+ y = O, g = I, z = T, q = b;
2969
+ }
2970
+ var O = (v[y >>> 24] << 24 | v[g >>> 16 & 255] << 16 | v[z >>> 8 & 255] << 8 | v[q & 255]) ^ E[W++], I = (v[g >>> 24] << 24 | v[z >>> 16 & 255] << 16 | v[q >>> 8 & 255] << 8 | v[y & 255]) ^ E[W++], T = (v[z >>> 24] << 24 | v[q >>> 16 & 255] << 16 | v[y >>> 8 & 255] << 8 | v[g & 255]) ^ E[W++], b = (v[q >>> 24] << 24 | v[y >>> 16 & 255] << 16 | v[g >>> 8 & 255] << 8 | v[z & 255]) ^ E[W++];
2971
+ n[i] = O, n[i + 1] = I, n[i + 2] = T, n[i + 3] = b;
2972
+ },
2973
+ keySize: 256 / 32
2974
+ });
2975
+ a.AES = F._createHelper(t);
2976
+ })(), B.AES;
2977
+ });
2978
+ })(G0)), G0.exports;
2979
+ }
2980
+ var Z0 = { exports: {} }, he = Z0.exports, Gx;
2981
+ function le() {
2982
+ return Gx || (Gx = 1, (function(S, P) {
2983
+ (function(B, a, D) {
2984
+ S.exports = a(L(), r0(), e0(), x0(), U());
2985
+ })(he, function(B) {
2986
+ return (function() {
2987
+ var a = B, D = a.lib, F = D.WordArray, w = D.BlockCipher, u = a.algo, h = [
2988
+ 57,
2989
+ 49,
2990
+ 41,
2991
+ 33,
2992
+ 25,
2993
+ 17,
2994
+ 9,
2995
+ 1,
2996
+ 58,
2997
+ 50,
2998
+ 42,
2999
+ 34,
3000
+ 26,
3001
+ 18,
3002
+ 10,
3003
+ 2,
3004
+ 59,
3005
+ 51,
3006
+ 43,
3007
+ 35,
3008
+ 27,
3009
+ 19,
3010
+ 11,
3011
+ 3,
3012
+ 60,
3013
+ 52,
3014
+ 44,
3015
+ 36,
3016
+ 63,
3017
+ 55,
3018
+ 47,
3019
+ 39,
3020
+ 31,
3021
+ 23,
3022
+ 15,
3023
+ 7,
3024
+ 62,
3025
+ 54,
3026
+ 46,
3027
+ 38,
3028
+ 30,
3029
+ 22,
3030
+ 14,
3031
+ 6,
3032
+ 61,
3033
+ 53,
3034
+ 45,
3035
+ 37,
3036
+ 29,
3037
+ 21,
3038
+ 13,
3039
+ 5,
3040
+ 28,
3041
+ 20,
3042
+ 12,
3043
+ 4
3044
+ ], x = [
3045
+ 14,
3046
+ 17,
3047
+ 11,
3048
+ 24,
3049
+ 1,
3050
+ 5,
3051
+ 3,
3052
+ 28,
3053
+ 15,
3054
+ 6,
3055
+ 21,
3056
+ 10,
3057
+ 23,
3058
+ 19,
3059
+ 12,
3060
+ 4,
3061
+ 26,
3062
+ 8,
3063
+ 16,
3064
+ 7,
3065
+ 27,
3066
+ 20,
3067
+ 13,
3068
+ 2,
3069
+ 41,
3070
+ 52,
3071
+ 31,
3072
+ 37,
3073
+ 47,
3074
+ 55,
3075
+ 30,
3076
+ 40,
3077
+ 51,
3078
+ 45,
3079
+ 33,
3080
+ 48,
3081
+ 44,
3082
+ 49,
3083
+ 39,
3084
+ 56,
3085
+ 34,
3086
+ 53,
3087
+ 46,
3088
+ 42,
3089
+ 50,
3090
+ 36,
3091
+ 29,
3092
+ 32
3093
+ ], e = [1, 2, 4, 6, 8, 10, 12, 14, 15, 17, 19, 21, 23, 25, 27, 28], d = [
3094
+ {
3095
+ 0: 8421888,
3096
+ 268435456: 32768,
3097
+ 536870912: 8421378,
3098
+ 805306368: 2,
3099
+ 1073741824: 512,
3100
+ 1342177280: 8421890,
3101
+ 1610612736: 8389122,
3102
+ 1879048192: 8388608,
3103
+ 2147483648: 514,
3104
+ 2415919104: 8389120,
3105
+ 2684354560: 33280,
3106
+ 2952790016: 8421376,
3107
+ 3221225472: 32770,
3108
+ 3489660928: 8388610,
3109
+ 3758096384: 0,
3110
+ 4026531840: 33282,
3111
+ 134217728: 0,
3112
+ 402653184: 8421890,
3113
+ 671088640: 33282,
3114
+ 939524096: 32768,
3115
+ 1207959552: 8421888,
3116
+ 1476395008: 512,
3117
+ 1744830464: 8421378,
3118
+ 2013265920: 2,
3119
+ 2281701376: 8389120,
3120
+ 2550136832: 33280,
3121
+ 2818572288: 8421376,
3122
+ 3087007744: 8389122,
3123
+ 3355443200: 8388610,
3124
+ 3623878656: 32770,
3125
+ 3892314112: 514,
3126
+ 4160749568: 8388608,
3127
+ 1: 32768,
3128
+ 268435457: 2,
3129
+ 536870913: 8421888,
3130
+ 805306369: 8388608,
3131
+ 1073741825: 8421378,
3132
+ 1342177281: 33280,
3133
+ 1610612737: 512,
3134
+ 1879048193: 8389122,
3135
+ 2147483649: 8421890,
3136
+ 2415919105: 8421376,
3137
+ 2684354561: 8388610,
3138
+ 2952790017: 33282,
3139
+ 3221225473: 514,
3140
+ 3489660929: 8389120,
3141
+ 3758096385: 32770,
3142
+ 4026531841: 0,
3143
+ 134217729: 8421890,
3144
+ 402653185: 8421376,
3145
+ 671088641: 8388608,
3146
+ 939524097: 512,
3147
+ 1207959553: 32768,
3148
+ 1476395009: 8388610,
3149
+ 1744830465: 2,
3150
+ 2013265921: 33282,
3151
+ 2281701377: 32770,
3152
+ 2550136833: 8389122,
3153
+ 2818572289: 514,
3154
+ 3087007745: 8421888,
3155
+ 3355443201: 8389120,
3156
+ 3623878657: 0,
3157
+ 3892314113: 33280,
3158
+ 4160749569: 8421378
3159
+ },
3160
+ {
3161
+ 0: 1074282512,
3162
+ 16777216: 16384,
3163
+ 33554432: 524288,
3164
+ 50331648: 1074266128,
3165
+ 67108864: 1073741840,
3166
+ 83886080: 1074282496,
3167
+ 100663296: 1073758208,
3168
+ 117440512: 16,
3169
+ 134217728: 540672,
3170
+ 150994944: 1073758224,
3171
+ 167772160: 1073741824,
3172
+ 184549376: 540688,
3173
+ 201326592: 524304,
3174
+ 218103808: 0,
3175
+ 234881024: 16400,
3176
+ 251658240: 1074266112,
3177
+ 8388608: 1073758208,
3178
+ 25165824: 540688,
3179
+ 41943040: 16,
3180
+ 58720256: 1073758224,
3181
+ 75497472: 1074282512,
3182
+ 92274688: 1073741824,
3183
+ 109051904: 524288,
3184
+ 125829120: 1074266128,
3185
+ 142606336: 524304,
3186
+ 159383552: 0,
3187
+ 176160768: 16384,
3188
+ 192937984: 1074266112,
3189
+ 209715200: 1073741840,
3190
+ 226492416: 540672,
3191
+ 243269632: 1074282496,
3192
+ 260046848: 16400,
3193
+ 268435456: 0,
3194
+ 285212672: 1074266128,
3195
+ 301989888: 1073758224,
3196
+ 318767104: 1074282496,
3197
+ 335544320: 1074266112,
3198
+ 352321536: 16,
3199
+ 369098752: 540688,
3200
+ 385875968: 16384,
3201
+ 402653184: 16400,
3202
+ 419430400: 524288,
3203
+ 436207616: 524304,
3204
+ 452984832: 1073741840,
3205
+ 469762048: 540672,
3206
+ 486539264: 1073758208,
3207
+ 503316480: 1073741824,
3208
+ 520093696: 1074282512,
3209
+ 276824064: 540688,
3210
+ 293601280: 524288,
3211
+ 310378496: 1074266112,
3212
+ 327155712: 16384,
3213
+ 343932928: 1073758208,
3214
+ 360710144: 1074282512,
3215
+ 377487360: 16,
3216
+ 394264576: 1073741824,
3217
+ 411041792: 1074282496,
3218
+ 427819008: 1073741840,
3219
+ 444596224: 1073758224,
3220
+ 461373440: 524304,
3221
+ 478150656: 0,
3222
+ 494927872: 16400,
3223
+ 511705088: 1074266128,
3224
+ 528482304: 540672
3225
+ },
3226
+ {
3227
+ 0: 260,
3228
+ 1048576: 0,
3229
+ 2097152: 67109120,
3230
+ 3145728: 65796,
3231
+ 4194304: 65540,
3232
+ 5242880: 67108868,
3233
+ 6291456: 67174660,
3234
+ 7340032: 67174400,
3235
+ 8388608: 67108864,
3236
+ 9437184: 67174656,
3237
+ 10485760: 65792,
3238
+ 11534336: 67174404,
3239
+ 12582912: 67109124,
3240
+ 13631488: 65536,
3241
+ 14680064: 4,
3242
+ 15728640: 256,
3243
+ 524288: 67174656,
3244
+ 1572864: 67174404,
3245
+ 2621440: 0,
3246
+ 3670016: 67109120,
3247
+ 4718592: 67108868,
3248
+ 5767168: 65536,
3249
+ 6815744: 65540,
3250
+ 7864320: 260,
3251
+ 8912896: 4,
3252
+ 9961472: 256,
3253
+ 11010048: 67174400,
3254
+ 12058624: 65796,
3255
+ 13107200: 65792,
3256
+ 14155776: 67109124,
3257
+ 15204352: 67174660,
3258
+ 16252928: 67108864,
3259
+ 16777216: 67174656,
3260
+ 17825792: 65540,
3261
+ 18874368: 65536,
3262
+ 19922944: 67109120,
3263
+ 20971520: 256,
3264
+ 22020096: 67174660,
3265
+ 23068672: 67108868,
3266
+ 24117248: 0,
3267
+ 25165824: 67109124,
3268
+ 26214400: 67108864,
3269
+ 27262976: 4,
3270
+ 28311552: 65792,
3271
+ 29360128: 67174400,
3272
+ 30408704: 260,
3273
+ 31457280: 65796,
3274
+ 32505856: 67174404,
3275
+ 17301504: 67108864,
3276
+ 18350080: 260,
3277
+ 19398656: 67174656,
3278
+ 20447232: 0,
3279
+ 21495808: 65540,
3280
+ 22544384: 67109120,
3281
+ 23592960: 256,
3282
+ 24641536: 67174404,
3283
+ 25690112: 65536,
3284
+ 26738688: 67174660,
3285
+ 27787264: 65796,
3286
+ 28835840: 67108868,
3287
+ 29884416: 67109124,
3288
+ 30932992: 67174400,
3289
+ 31981568: 4,
3290
+ 33030144: 65792
3291
+ },
3292
+ {
3293
+ 0: 2151682048,
3294
+ 65536: 2147487808,
3295
+ 131072: 4198464,
3296
+ 196608: 2151677952,
3297
+ 262144: 0,
3298
+ 327680: 4198400,
3299
+ 393216: 2147483712,
3300
+ 458752: 4194368,
3301
+ 524288: 2147483648,
3302
+ 589824: 4194304,
3303
+ 655360: 64,
3304
+ 720896: 2147487744,
3305
+ 786432: 2151678016,
3306
+ 851968: 4160,
3307
+ 917504: 4096,
3308
+ 983040: 2151682112,
3309
+ 32768: 2147487808,
3310
+ 98304: 64,
3311
+ 163840: 2151678016,
3312
+ 229376: 2147487744,
3313
+ 294912: 4198400,
3314
+ 360448: 2151682112,
3315
+ 425984: 0,
3316
+ 491520: 2151677952,
3317
+ 557056: 4096,
3318
+ 622592: 2151682048,
3319
+ 688128: 4194304,
3320
+ 753664: 4160,
3321
+ 819200: 2147483648,
3322
+ 884736: 4194368,
3323
+ 950272: 4198464,
3324
+ 1015808: 2147483712,
3325
+ 1048576: 4194368,
3326
+ 1114112: 4198400,
3327
+ 1179648: 2147483712,
3328
+ 1245184: 0,
3329
+ 1310720: 4160,
3330
+ 1376256: 2151678016,
3331
+ 1441792: 2151682048,
3332
+ 1507328: 2147487808,
3333
+ 1572864: 2151682112,
3334
+ 1638400: 2147483648,
3335
+ 1703936: 2151677952,
3336
+ 1769472: 4198464,
3337
+ 1835008: 2147487744,
3338
+ 1900544: 4194304,
3339
+ 1966080: 64,
3340
+ 2031616: 4096,
3341
+ 1081344: 2151677952,
3342
+ 1146880: 2151682112,
3343
+ 1212416: 0,
3344
+ 1277952: 4198400,
3345
+ 1343488: 4194368,
3346
+ 1409024: 2147483648,
3347
+ 1474560: 2147487808,
3348
+ 1540096: 64,
3349
+ 1605632: 2147483712,
3350
+ 1671168: 4096,
3351
+ 1736704: 2147487744,
3352
+ 1802240: 2151678016,
3353
+ 1867776: 4160,
3354
+ 1933312: 2151682048,
3355
+ 1998848: 4194304,
3356
+ 2064384: 4198464
3357
+ },
3358
+ {
3359
+ 0: 128,
3360
+ 4096: 17039360,
3361
+ 8192: 262144,
3362
+ 12288: 536870912,
3363
+ 16384: 537133184,
3364
+ 20480: 16777344,
3365
+ 24576: 553648256,
3366
+ 28672: 262272,
3367
+ 32768: 16777216,
3368
+ 36864: 537133056,
3369
+ 40960: 536871040,
3370
+ 45056: 553910400,
3371
+ 49152: 553910272,
3372
+ 53248: 0,
3373
+ 57344: 17039488,
3374
+ 61440: 553648128,
3375
+ 2048: 17039488,
3376
+ 6144: 553648256,
3377
+ 10240: 128,
3378
+ 14336: 17039360,
3379
+ 18432: 262144,
3380
+ 22528: 537133184,
3381
+ 26624: 553910272,
3382
+ 30720: 536870912,
3383
+ 34816: 537133056,
3384
+ 38912: 0,
3385
+ 43008: 553910400,
3386
+ 47104: 16777344,
3387
+ 51200: 536871040,
3388
+ 55296: 553648128,
3389
+ 59392: 16777216,
3390
+ 63488: 262272,
3391
+ 65536: 262144,
3392
+ 69632: 128,
3393
+ 73728: 536870912,
3394
+ 77824: 553648256,
3395
+ 81920: 16777344,
3396
+ 86016: 553910272,
3397
+ 90112: 537133184,
3398
+ 94208: 16777216,
3399
+ 98304: 553910400,
3400
+ 102400: 553648128,
3401
+ 106496: 17039360,
3402
+ 110592: 537133056,
3403
+ 114688: 262272,
3404
+ 118784: 536871040,
3405
+ 122880: 0,
3406
+ 126976: 17039488,
3407
+ 67584: 553648256,
3408
+ 71680: 16777216,
3409
+ 75776: 17039360,
3410
+ 79872: 537133184,
3411
+ 83968: 536870912,
3412
+ 88064: 17039488,
3413
+ 92160: 128,
3414
+ 96256: 553910272,
3415
+ 100352: 262272,
3416
+ 104448: 553910400,
3417
+ 108544: 0,
3418
+ 112640: 553648128,
3419
+ 116736: 16777344,
3420
+ 120832: 262144,
3421
+ 124928: 537133056,
3422
+ 129024: 536871040
3423
+ },
3424
+ {
3425
+ 0: 268435464,
3426
+ 256: 8192,
3427
+ 512: 270532608,
3428
+ 768: 270540808,
3429
+ 1024: 268443648,
3430
+ 1280: 2097152,
3431
+ 1536: 2097160,
3432
+ 1792: 268435456,
3433
+ 2048: 0,
3434
+ 2304: 268443656,
3435
+ 2560: 2105344,
3436
+ 2816: 8,
3437
+ 3072: 270532616,
3438
+ 3328: 2105352,
3439
+ 3584: 8200,
3440
+ 3840: 270540800,
3441
+ 128: 270532608,
3442
+ 384: 270540808,
3443
+ 640: 8,
3444
+ 896: 2097152,
3445
+ 1152: 2105352,
3446
+ 1408: 268435464,
3447
+ 1664: 268443648,
3448
+ 1920: 8200,
3449
+ 2176: 2097160,
3450
+ 2432: 8192,
3451
+ 2688: 268443656,
3452
+ 2944: 270532616,
3453
+ 3200: 0,
3454
+ 3456: 270540800,
3455
+ 3712: 2105344,
3456
+ 3968: 268435456,
3457
+ 4096: 268443648,
3458
+ 4352: 270532616,
3459
+ 4608: 270540808,
3460
+ 4864: 8200,
3461
+ 5120: 2097152,
3462
+ 5376: 268435456,
3463
+ 5632: 268435464,
3464
+ 5888: 2105344,
3465
+ 6144: 2105352,
3466
+ 6400: 0,
3467
+ 6656: 8,
3468
+ 6912: 270532608,
3469
+ 7168: 8192,
3470
+ 7424: 268443656,
3471
+ 7680: 270540800,
3472
+ 7936: 2097160,
3473
+ 4224: 8,
3474
+ 4480: 2105344,
3475
+ 4736: 2097152,
3476
+ 4992: 268435464,
3477
+ 5248: 268443648,
3478
+ 5504: 8200,
3479
+ 5760: 270540808,
3480
+ 6016: 270532608,
3481
+ 6272: 270540800,
3482
+ 6528: 270532616,
3483
+ 6784: 8192,
3484
+ 7040: 2105352,
3485
+ 7296: 2097160,
3486
+ 7552: 0,
3487
+ 7808: 268435456,
3488
+ 8064: 268443656
3489
+ },
3490
+ {
3491
+ 0: 1048576,
3492
+ 16: 33555457,
3493
+ 32: 1024,
3494
+ 48: 1049601,
3495
+ 64: 34604033,
3496
+ 80: 0,
3497
+ 96: 1,
3498
+ 112: 34603009,
3499
+ 128: 33555456,
3500
+ 144: 1048577,
3501
+ 160: 33554433,
3502
+ 176: 34604032,
3503
+ 192: 34603008,
3504
+ 208: 1025,
3505
+ 224: 1049600,
3506
+ 240: 33554432,
3507
+ 8: 34603009,
3508
+ 24: 0,
3509
+ 40: 33555457,
3510
+ 56: 34604032,
3511
+ 72: 1048576,
3512
+ 88: 33554433,
3513
+ 104: 33554432,
3514
+ 120: 1025,
3515
+ 136: 1049601,
3516
+ 152: 33555456,
3517
+ 168: 34603008,
3518
+ 184: 1048577,
3519
+ 200: 1024,
3520
+ 216: 34604033,
3521
+ 232: 1,
3522
+ 248: 1049600,
3523
+ 256: 33554432,
3524
+ 272: 1048576,
3525
+ 288: 33555457,
3526
+ 304: 34603009,
3527
+ 320: 1048577,
3528
+ 336: 33555456,
3529
+ 352: 34604032,
3530
+ 368: 1049601,
3531
+ 384: 1025,
3532
+ 400: 34604033,
3533
+ 416: 1049600,
3534
+ 432: 1,
3535
+ 448: 0,
3536
+ 464: 34603008,
3537
+ 480: 33554433,
3538
+ 496: 1024,
3539
+ 264: 1049600,
3540
+ 280: 33555457,
3541
+ 296: 34603009,
3542
+ 312: 1,
3543
+ 328: 33554432,
3544
+ 344: 1048576,
3545
+ 360: 1025,
3546
+ 376: 34604032,
3547
+ 392: 33554433,
3548
+ 408: 34603008,
3549
+ 424: 0,
3550
+ 440: 34604033,
3551
+ 456: 1049601,
3552
+ 472: 1024,
3553
+ 488: 33555456,
3554
+ 504: 1048577
3555
+ },
3556
+ {
3557
+ 0: 134219808,
3558
+ 1: 131072,
3559
+ 2: 134217728,
3560
+ 3: 32,
3561
+ 4: 131104,
3562
+ 5: 134350880,
3563
+ 6: 134350848,
3564
+ 7: 2048,
3565
+ 8: 134348800,
3566
+ 9: 134219776,
3567
+ 10: 133120,
3568
+ 11: 134348832,
3569
+ 12: 2080,
3570
+ 13: 0,
3571
+ 14: 134217760,
3572
+ 15: 133152,
3573
+ 2147483648: 2048,
3574
+ 2147483649: 134350880,
3575
+ 2147483650: 134219808,
3576
+ 2147483651: 134217728,
3577
+ 2147483652: 134348800,
3578
+ 2147483653: 133120,
3579
+ 2147483654: 133152,
3580
+ 2147483655: 32,
3581
+ 2147483656: 134217760,
3582
+ 2147483657: 2080,
3583
+ 2147483658: 131104,
3584
+ 2147483659: 134350848,
3585
+ 2147483660: 0,
3586
+ 2147483661: 134348832,
3587
+ 2147483662: 134219776,
3588
+ 2147483663: 131072,
3589
+ 16: 133152,
3590
+ 17: 134350848,
3591
+ 18: 32,
3592
+ 19: 2048,
3593
+ 20: 134219776,
3594
+ 21: 134217760,
3595
+ 22: 134348832,
3596
+ 23: 131072,
3597
+ 24: 0,
3598
+ 25: 131104,
3599
+ 26: 134348800,
3600
+ 27: 134219808,
3601
+ 28: 134350880,
3602
+ 29: 133120,
3603
+ 30: 2080,
3604
+ 31: 134217728,
3605
+ 2147483664: 131072,
3606
+ 2147483665: 2048,
3607
+ 2147483666: 134348832,
3608
+ 2147483667: 133152,
3609
+ 2147483668: 32,
3610
+ 2147483669: 134348800,
3611
+ 2147483670: 134217728,
3612
+ 2147483671: 134219808,
3613
+ 2147483672: 134350880,
3614
+ 2147483673: 134217760,
3615
+ 2147483674: 134219776,
3616
+ 2147483675: 0,
3617
+ 2147483676: 133120,
3618
+ 2147483677: 2080,
3619
+ 2147483678: 131104,
3620
+ 2147483679: 134350848
3621
+ }
3622
+ ], r = [
3623
+ 4160749569,
3624
+ 528482304,
3625
+ 33030144,
3626
+ 2064384,
3627
+ 129024,
3628
+ 8064,
3629
+ 504,
3630
+ 2147483679
3631
+ ], s = u.DES = w.extend({
3632
+ _doReset: function() {
3633
+ for (var l = this._key, t = l.words, n = [], i = 0; i < 56; i++) {
3634
+ var E = h[i] - 1;
3635
+ n[i] = t[E >>> 5] >>> 31 - E % 32 & 1;
3636
+ }
3637
+ for (var C = this._subKeys = [], A = 0; A < 16; A++) {
3638
+ for (var _ = C[A] = [], R = e[A], i = 0; i < 24; i++)
3639
+ _[i / 6 | 0] |= n[(x[i] - 1 + R) % 28] << 31 - i % 6, _[4 + (i / 6 | 0)] |= n[28 + (x[i + 24] - 1 + R) % 28] << 31 - i % 6;
3640
+ _[0] = _[0] << 1 | _[0] >>> 31;
3641
+ for (var i = 1; i < 7; i++)
3642
+ _[i] = _[i] >>> (i - 1) * 4 + 3;
3643
+ _[7] = _[7] << 5 | _[7] >>> 27;
3644
+ }
3645
+ for (var v = this._invSubKeys = [], i = 0; i < 16; i++)
3646
+ v[i] = C[15 - i];
3647
+ },
3648
+ encryptBlock: function(l, t) {
3649
+ this._doCryptBlock(l, t, this._subKeys);
3650
+ },
3651
+ decryptBlock: function(l, t) {
3652
+ this._doCryptBlock(l, t, this._invSubKeys);
3653
+ },
3654
+ _doCryptBlock: function(l, t, n) {
3655
+ this._lBlock = l[t], this._rBlock = l[t + 1], o.call(this, 4, 252645135), o.call(this, 16, 65535), c.call(this, 2, 858993459), c.call(this, 8, 16711935), o.call(this, 1, 1431655765);
3656
+ for (var i = 0; i < 16; i++) {
3657
+ for (var E = n[i], C = this._lBlock, A = this._rBlock, _ = 0, R = 0; R < 8; R++)
3658
+ _ |= d[R][((A ^ E[R]) & r[R]) >>> 0];
3659
+ this._lBlock = A, this._rBlock = C ^ _;
3660
+ }
3661
+ var v = this._lBlock;
3662
+ this._lBlock = this._rBlock, this._rBlock = v, o.call(this, 1, 1431655765), c.call(this, 8, 16711935), c.call(this, 2, 858993459), o.call(this, 16, 65535), o.call(this, 4, 252645135), l[t] = this._lBlock, l[t + 1] = this._rBlock;
3663
+ },
3664
+ keySize: 64 / 32,
3665
+ ivSize: 64 / 32,
3666
+ blockSize: 64 / 32
3667
+ });
3668
+ function o(l, t) {
3669
+ var n = (this._lBlock >>> l ^ this._rBlock) & t;
3670
+ this._rBlock ^= n, this._lBlock ^= n << l;
3671
+ }
3672
+ function c(l, t) {
3673
+ var n = (this._rBlock >>> l ^ this._lBlock) & t;
3674
+ this._lBlock ^= n, this._rBlock ^= n << l;
3675
+ }
3676
+ a.DES = w._createHelper(s);
3677
+ var f = u.TripleDES = w.extend({
3678
+ _doReset: function() {
3679
+ var l = this._key, t = l.words;
3680
+ if (t.length !== 2 && t.length !== 4 && t.length < 6)
3681
+ throw new Error("Invalid key length - 3DES requires the key length to be 64, 128, 192 or >192.");
3682
+ var n = t.slice(0, 2), i = t.length < 4 ? t.slice(0, 2) : t.slice(2, 4), E = t.length < 6 ? t.slice(0, 2) : t.slice(4, 6);
3683
+ this._des1 = s.createEncryptor(F.create(n)), this._des2 = s.createEncryptor(F.create(i)), this._des3 = s.createEncryptor(F.create(E));
3684
+ },
3685
+ encryptBlock: function(l, t) {
3686
+ this._des1.encryptBlock(l, t), this._des2.decryptBlock(l, t), this._des3.encryptBlock(l, t);
3687
+ },
3688
+ decryptBlock: function(l, t) {
3689
+ this._des3.decryptBlock(l, t), this._des2.encryptBlock(l, t), this._des1.decryptBlock(l, t);
3690
+ },
3691
+ keySize: 192 / 32,
3692
+ ivSize: 64 / 32,
3693
+ blockSize: 64 / 32
3694
+ });
3695
+ a.TripleDES = w._createHelper(f);
3696
+ })(), B.TripleDES;
3697
+ });
3698
+ })(Z0)), Z0.exports;
3699
+ }
3700
+ var j0 = { exports: {} }, Ce = j0.exports, Zx;
3701
+ function Ee() {
3702
+ return Zx || (Zx = 1, (function(S, P) {
3703
+ (function(B, a, D) {
3704
+ S.exports = a(L(), r0(), e0(), x0(), U());
3705
+ })(Ce, function(B) {
3706
+ return (function() {
3707
+ var a = B, D = a.lib, F = D.StreamCipher, w = a.algo, u = w.RC4 = F.extend({
3708
+ _doReset: function() {
3709
+ for (var e = this._key, d = e.words, r = e.sigBytes, s = this._S = [], o = 0; o < 256; o++)
3710
+ s[o] = o;
3711
+ for (var o = 0, c = 0; o < 256; o++) {
3712
+ var f = o % r, l = d[f >>> 2] >>> 24 - f % 4 * 8 & 255;
3713
+ c = (c + s[o] + l) % 256;
3714
+ var t = s[o];
3715
+ s[o] = s[c], s[c] = t;
3716
+ }
3717
+ this._i = this._j = 0;
3718
+ },
3719
+ _doProcessBlock: function(e, d) {
3720
+ e[d] ^= h.call(this);
3721
+ },
3722
+ keySize: 256 / 32,
3723
+ ivSize: 0
3724
+ });
3725
+ function h() {
3726
+ for (var e = this._S, d = this._i, r = this._j, s = 0, o = 0; o < 4; o++) {
3727
+ d = (d + 1) % 256, r = (r + e[d]) % 256;
3728
+ var c = e[d];
3729
+ e[d] = e[r], e[r] = c, s |= e[(e[d] + e[r]) % 256] << 24 - o * 8;
3730
+ }
3731
+ return this._i = d, this._j = r, s;
3732
+ }
3733
+ a.RC4 = F._createHelper(u);
3734
+ var x = w.RC4Drop = u.extend({
3735
+ /**
3736
+ * Configuration options.
3737
+ *
3738
+ * @property {number} drop The number of keystream words to drop. Default 192
3739
+ */
3740
+ cfg: u.cfg.extend({
3741
+ drop: 192
3742
+ }),
3743
+ _doReset: function() {
3744
+ u._doReset.call(this);
3745
+ for (var e = this.cfg.drop; e > 0; e--)
3746
+ h.call(this);
3747
+ }
3748
+ });
3749
+ a.RC4Drop = F._createHelper(x);
3750
+ })(), B.RC4;
3751
+ });
3752
+ })(j0)), j0.exports;
3753
+ }
3754
+ var Q0 = { exports: {} }, Ae = Q0.exports, jx;
3755
+ function pe() {
3756
+ return jx || (jx = 1, (function(S, P) {
3757
+ (function(B, a, D) {
3758
+ S.exports = a(L(), r0(), e0(), x0(), U());
3759
+ })(Ae, function(B) {
3760
+ return (function() {
3761
+ var a = B, D = a.lib, F = D.StreamCipher, w = a.algo, u = [], h = [], x = [], e = w.Rabbit = F.extend({
3762
+ _doReset: function() {
3763
+ for (var r = this._key.words, s = this.cfg.iv, o = 0; o < 4; o++)
3764
+ r[o] = (r[o] << 8 | r[o] >>> 24) & 16711935 | (r[o] << 24 | r[o] >>> 8) & 4278255360;
3765
+ var c = this._X = [
3766
+ r[0],
3767
+ r[3] << 16 | r[2] >>> 16,
3768
+ r[1],
3769
+ r[0] << 16 | r[3] >>> 16,
3770
+ r[2],
3771
+ r[1] << 16 | r[0] >>> 16,
3772
+ r[3],
3773
+ r[2] << 16 | r[1] >>> 16
3774
+ ], f = this._C = [
3775
+ r[2] << 16 | r[2] >>> 16,
3776
+ r[0] & 4294901760 | r[1] & 65535,
3777
+ r[3] << 16 | r[3] >>> 16,
3778
+ r[1] & 4294901760 | r[2] & 65535,
3779
+ r[0] << 16 | r[0] >>> 16,
3780
+ r[2] & 4294901760 | r[3] & 65535,
3781
+ r[1] << 16 | r[1] >>> 16,
3782
+ r[3] & 4294901760 | r[0] & 65535
3783
+ ];
3784
+ this._b = 0;
3785
+ for (var o = 0; o < 4; o++)
3786
+ d.call(this);
3787
+ for (var o = 0; o < 8; o++)
3788
+ f[o] ^= c[o + 4 & 7];
3789
+ if (s) {
3790
+ var l = s.words, t = l[0], n = l[1], i = (t << 8 | t >>> 24) & 16711935 | (t << 24 | t >>> 8) & 4278255360, E = (n << 8 | n >>> 24) & 16711935 | (n << 24 | n >>> 8) & 4278255360, C = i >>> 16 | E & 4294901760, A = E << 16 | i & 65535;
3791
+ f[0] ^= i, f[1] ^= C, f[2] ^= E, f[3] ^= A, f[4] ^= i, f[5] ^= C, f[6] ^= E, f[7] ^= A;
3792
+ for (var o = 0; o < 4; o++)
3793
+ d.call(this);
3794
+ }
3795
+ },
3796
+ _doProcessBlock: function(r, s) {
3797
+ var o = this._X;
3798
+ d.call(this), u[0] = o[0] ^ o[5] >>> 16 ^ o[3] << 16, u[1] = o[2] ^ o[7] >>> 16 ^ o[5] << 16, u[2] = o[4] ^ o[1] >>> 16 ^ o[7] << 16, u[3] = o[6] ^ o[3] >>> 16 ^ o[1] << 16;
3799
+ for (var c = 0; c < 4; c++)
3800
+ u[c] = (u[c] << 8 | u[c] >>> 24) & 16711935 | (u[c] << 24 | u[c] >>> 8) & 4278255360, r[s + c] ^= u[c];
3801
+ },
3802
+ blockSize: 128 / 32,
3803
+ ivSize: 64 / 32
3804
+ });
3805
+ function d() {
3806
+ for (var r = this._X, s = this._C, o = 0; o < 8; o++)
3807
+ h[o] = s[o];
3808
+ s[0] = s[0] + 1295307597 + this._b | 0, s[1] = s[1] + 3545052371 + (s[0] >>> 0 < h[0] >>> 0 ? 1 : 0) | 0, s[2] = s[2] + 886263092 + (s[1] >>> 0 < h[1] >>> 0 ? 1 : 0) | 0, s[3] = s[3] + 1295307597 + (s[2] >>> 0 < h[2] >>> 0 ? 1 : 0) | 0, s[4] = s[4] + 3545052371 + (s[3] >>> 0 < h[3] >>> 0 ? 1 : 0) | 0, s[5] = s[5] + 886263092 + (s[4] >>> 0 < h[4] >>> 0 ? 1 : 0) | 0, s[6] = s[6] + 1295307597 + (s[5] >>> 0 < h[5] >>> 0 ? 1 : 0) | 0, s[7] = s[7] + 3545052371 + (s[6] >>> 0 < h[6] >>> 0 ? 1 : 0) | 0, this._b = s[7] >>> 0 < h[7] >>> 0 ? 1 : 0;
3809
+ for (var o = 0; o < 8; o++) {
3810
+ var c = r[o] + s[o], f = c & 65535, l = c >>> 16, t = ((f * f >>> 17) + f * l >>> 15) + l * l, n = ((c & 4294901760) * c | 0) + ((c & 65535) * c | 0);
3811
+ x[o] = t ^ n;
3812
+ }
3813
+ r[0] = x[0] + (x[7] << 16 | x[7] >>> 16) + (x[6] << 16 | x[6] >>> 16) | 0, r[1] = x[1] + (x[0] << 8 | x[0] >>> 24) + x[7] | 0, r[2] = x[2] + (x[1] << 16 | x[1] >>> 16) + (x[0] << 16 | x[0] >>> 16) | 0, r[3] = x[3] + (x[2] << 8 | x[2] >>> 24) + x[1] | 0, r[4] = x[4] + (x[3] << 16 | x[3] >>> 16) + (x[2] << 16 | x[2] >>> 16) | 0, r[5] = x[5] + (x[4] << 8 | x[4] >>> 24) + x[3] | 0, r[6] = x[6] + (x[5] << 16 | x[5] >>> 16) + (x[4] << 16 | x[4] >>> 16) | 0, r[7] = x[7] + (x[6] << 8 | x[6] >>> 24) + x[5] | 0;
3814
+ }
3815
+ a.Rabbit = F._createHelper(e);
3816
+ })(), B.Rabbit;
3817
+ });
3818
+ })(Q0)), Q0.exports;
3819
+ }
3820
+ var Y0 = { exports: {} }, Fe = Y0.exports, Qx;
3821
+ function De() {
3822
+ return Qx || (Qx = 1, (function(S, P) {
3823
+ (function(B, a, D) {
3824
+ S.exports = a(L(), r0(), e0(), x0(), U());
3825
+ })(Fe, function(B) {
3826
+ return (function() {
3827
+ var a = B, D = a.lib, F = D.StreamCipher, w = a.algo, u = [], h = [], x = [], e = w.RabbitLegacy = F.extend({
3828
+ _doReset: function() {
3829
+ var r = this._key.words, s = this.cfg.iv, o = this._X = [
3830
+ r[0],
3831
+ r[3] << 16 | r[2] >>> 16,
3832
+ r[1],
3833
+ r[0] << 16 | r[3] >>> 16,
3834
+ r[2],
3835
+ r[1] << 16 | r[0] >>> 16,
3836
+ r[3],
3837
+ r[2] << 16 | r[1] >>> 16
3838
+ ], c = this._C = [
3839
+ r[2] << 16 | r[2] >>> 16,
3840
+ r[0] & 4294901760 | r[1] & 65535,
3841
+ r[3] << 16 | r[3] >>> 16,
3842
+ r[1] & 4294901760 | r[2] & 65535,
3843
+ r[0] << 16 | r[0] >>> 16,
3844
+ r[2] & 4294901760 | r[3] & 65535,
3845
+ r[1] << 16 | r[1] >>> 16,
3846
+ r[3] & 4294901760 | r[0] & 65535
3847
+ ];
3848
+ this._b = 0;
3849
+ for (var f = 0; f < 4; f++)
3850
+ d.call(this);
3851
+ for (var f = 0; f < 8; f++)
3852
+ c[f] ^= o[f + 4 & 7];
3853
+ if (s) {
3854
+ var l = s.words, t = l[0], n = l[1], i = (t << 8 | t >>> 24) & 16711935 | (t << 24 | t >>> 8) & 4278255360, E = (n << 8 | n >>> 24) & 16711935 | (n << 24 | n >>> 8) & 4278255360, C = i >>> 16 | E & 4294901760, A = E << 16 | i & 65535;
3855
+ c[0] ^= i, c[1] ^= C, c[2] ^= E, c[3] ^= A, c[4] ^= i, c[5] ^= C, c[6] ^= E, c[7] ^= A;
3856
+ for (var f = 0; f < 4; f++)
3857
+ d.call(this);
3858
+ }
3859
+ },
3860
+ _doProcessBlock: function(r, s) {
3861
+ var o = this._X;
3862
+ d.call(this), u[0] = o[0] ^ o[5] >>> 16 ^ o[3] << 16, u[1] = o[2] ^ o[7] >>> 16 ^ o[5] << 16, u[2] = o[4] ^ o[1] >>> 16 ^ o[7] << 16, u[3] = o[6] ^ o[3] >>> 16 ^ o[1] << 16;
3863
+ for (var c = 0; c < 4; c++)
3864
+ u[c] = (u[c] << 8 | u[c] >>> 24) & 16711935 | (u[c] << 24 | u[c] >>> 8) & 4278255360, r[s + c] ^= u[c];
3865
+ },
3866
+ blockSize: 128 / 32,
3867
+ ivSize: 64 / 32
3868
+ });
3869
+ function d() {
3870
+ for (var r = this._X, s = this._C, o = 0; o < 8; o++)
3871
+ h[o] = s[o];
3872
+ s[0] = s[0] + 1295307597 + this._b | 0, s[1] = s[1] + 3545052371 + (s[0] >>> 0 < h[0] >>> 0 ? 1 : 0) | 0, s[2] = s[2] + 886263092 + (s[1] >>> 0 < h[1] >>> 0 ? 1 : 0) | 0, s[3] = s[3] + 1295307597 + (s[2] >>> 0 < h[2] >>> 0 ? 1 : 0) | 0, s[4] = s[4] + 3545052371 + (s[3] >>> 0 < h[3] >>> 0 ? 1 : 0) | 0, s[5] = s[5] + 886263092 + (s[4] >>> 0 < h[4] >>> 0 ? 1 : 0) | 0, s[6] = s[6] + 1295307597 + (s[5] >>> 0 < h[5] >>> 0 ? 1 : 0) | 0, s[7] = s[7] + 3545052371 + (s[6] >>> 0 < h[6] >>> 0 ? 1 : 0) | 0, this._b = s[7] >>> 0 < h[7] >>> 0 ? 1 : 0;
3873
+ for (var o = 0; o < 8; o++) {
3874
+ var c = r[o] + s[o], f = c & 65535, l = c >>> 16, t = ((f * f >>> 17) + f * l >>> 15) + l * l, n = ((c & 4294901760) * c | 0) + ((c & 65535) * c | 0);
3875
+ x[o] = t ^ n;
3876
+ }
3877
+ r[0] = x[0] + (x[7] << 16 | x[7] >>> 16) + (x[6] << 16 | x[6] >>> 16) | 0, r[1] = x[1] + (x[0] << 8 | x[0] >>> 24) + x[7] | 0, r[2] = x[2] + (x[1] << 16 | x[1] >>> 16) + (x[0] << 16 | x[0] >>> 16) | 0, r[3] = x[3] + (x[2] << 8 | x[2] >>> 24) + x[1] | 0, r[4] = x[4] + (x[3] << 16 | x[3] >>> 16) + (x[2] << 16 | x[2] >>> 16) | 0, r[5] = x[5] + (x[4] << 8 | x[4] >>> 24) + x[3] | 0, r[6] = x[6] + (x[5] << 16 | x[5] >>> 16) + (x[4] << 16 | x[4] >>> 16) | 0, r[7] = x[7] + (x[6] << 8 | x[6] >>> 24) + x[5] | 0;
3878
+ }
3879
+ a.RabbitLegacy = F._createHelper(e);
3880
+ })(), B.RabbitLegacy;
3881
+ });
3882
+ })(Y0)), Y0.exports;
3883
+ }
3884
+ var M0 = { exports: {} }, _e = M0.exports, Yx;
3885
+ function be() {
3886
+ return Yx || (Yx = 1, (function(S, P) {
3887
+ (function(B, a, D) {
3888
+ S.exports = a(L(), r0(), e0(), x0(), U());
3889
+ })(_e, function(B) {
3890
+ return (function() {
3891
+ var a = B, D = a.lib, F = D.BlockCipher, w = a.algo;
3892
+ const u = 16, h = [
3893
+ 608135816,
3894
+ 2242054355,
3895
+ 320440878,
3896
+ 57701188,
3897
+ 2752067618,
3898
+ 698298832,
3899
+ 137296536,
3900
+ 3964562569,
3901
+ 1160258022,
3902
+ 953160567,
3903
+ 3193202383,
3904
+ 887688300,
3905
+ 3232508343,
3906
+ 3380367581,
3907
+ 1065670069,
3908
+ 3041331479,
3909
+ 2450970073,
3910
+ 2306472731
3911
+ ], x = [
3912
+ [
3913
+ 3509652390,
3914
+ 2564797868,
3915
+ 805139163,
3916
+ 3491422135,
3917
+ 3101798381,
3918
+ 1780907670,
3919
+ 3128725573,
3920
+ 4046225305,
3921
+ 614570311,
3922
+ 3012652279,
3923
+ 134345442,
3924
+ 2240740374,
3925
+ 1667834072,
3926
+ 1901547113,
3927
+ 2757295779,
3928
+ 4103290238,
3929
+ 227898511,
3930
+ 1921955416,
3931
+ 1904987480,
3932
+ 2182433518,
3933
+ 2069144605,
3934
+ 3260701109,
3935
+ 2620446009,
3936
+ 720527379,
3937
+ 3318853667,
3938
+ 677414384,
3939
+ 3393288472,
3940
+ 3101374703,
3941
+ 2390351024,
3942
+ 1614419982,
3943
+ 1822297739,
3944
+ 2954791486,
3945
+ 3608508353,
3946
+ 3174124327,
3947
+ 2024746970,
3948
+ 1432378464,
3949
+ 3864339955,
3950
+ 2857741204,
3951
+ 1464375394,
3952
+ 1676153920,
3953
+ 1439316330,
3954
+ 715854006,
3955
+ 3033291828,
3956
+ 289532110,
3957
+ 2706671279,
3958
+ 2087905683,
3959
+ 3018724369,
3960
+ 1668267050,
3961
+ 732546397,
3962
+ 1947742710,
3963
+ 3462151702,
3964
+ 2609353502,
3965
+ 2950085171,
3966
+ 1814351708,
3967
+ 2050118529,
3968
+ 680887927,
3969
+ 999245976,
3970
+ 1800124847,
3971
+ 3300911131,
3972
+ 1713906067,
3973
+ 1641548236,
3974
+ 4213287313,
3975
+ 1216130144,
3976
+ 1575780402,
3977
+ 4018429277,
3978
+ 3917837745,
3979
+ 3693486850,
3980
+ 3949271944,
3981
+ 596196993,
3982
+ 3549867205,
3983
+ 258830323,
3984
+ 2213823033,
3985
+ 772490370,
3986
+ 2760122372,
3987
+ 1774776394,
3988
+ 2652871518,
3989
+ 566650946,
3990
+ 4142492826,
3991
+ 1728879713,
3992
+ 2882767088,
3993
+ 1783734482,
3994
+ 3629395816,
3995
+ 2517608232,
3996
+ 2874225571,
3997
+ 1861159788,
3998
+ 326777828,
3999
+ 3124490320,
4000
+ 2130389656,
4001
+ 2716951837,
4002
+ 967770486,
4003
+ 1724537150,
4004
+ 2185432712,
4005
+ 2364442137,
4006
+ 1164943284,
4007
+ 2105845187,
4008
+ 998989502,
4009
+ 3765401048,
4010
+ 2244026483,
4011
+ 1075463327,
4012
+ 1455516326,
4013
+ 1322494562,
4014
+ 910128902,
4015
+ 469688178,
4016
+ 1117454909,
4017
+ 936433444,
4018
+ 3490320968,
4019
+ 3675253459,
4020
+ 1240580251,
4021
+ 122909385,
4022
+ 2157517691,
4023
+ 634681816,
4024
+ 4142456567,
4025
+ 3825094682,
4026
+ 3061402683,
4027
+ 2540495037,
4028
+ 79693498,
4029
+ 3249098678,
4030
+ 1084186820,
4031
+ 1583128258,
4032
+ 426386531,
4033
+ 1761308591,
4034
+ 1047286709,
4035
+ 322548459,
4036
+ 995290223,
4037
+ 1845252383,
4038
+ 2603652396,
4039
+ 3431023940,
4040
+ 2942221577,
4041
+ 3202600964,
4042
+ 3727903485,
4043
+ 1712269319,
4044
+ 422464435,
4045
+ 3234572375,
4046
+ 1170764815,
4047
+ 3523960633,
4048
+ 3117677531,
4049
+ 1434042557,
4050
+ 442511882,
4051
+ 3600875718,
4052
+ 1076654713,
4053
+ 1738483198,
4054
+ 4213154764,
4055
+ 2393238008,
4056
+ 3677496056,
4057
+ 1014306527,
4058
+ 4251020053,
4059
+ 793779912,
4060
+ 2902807211,
4061
+ 842905082,
4062
+ 4246964064,
4063
+ 1395751752,
4064
+ 1040244610,
4065
+ 2656851899,
4066
+ 3396308128,
4067
+ 445077038,
4068
+ 3742853595,
4069
+ 3577915638,
4070
+ 679411651,
4071
+ 2892444358,
4072
+ 2354009459,
4073
+ 1767581616,
4074
+ 3150600392,
4075
+ 3791627101,
4076
+ 3102740896,
4077
+ 284835224,
4078
+ 4246832056,
4079
+ 1258075500,
4080
+ 768725851,
4081
+ 2589189241,
4082
+ 3069724005,
4083
+ 3532540348,
4084
+ 1274779536,
4085
+ 3789419226,
4086
+ 2764799539,
4087
+ 1660621633,
4088
+ 3471099624,
4089
+ 4011903706,
4090
+ 913787905,
4091
+ 3497959166,
4092
+ 737222580,
4093
+ 2514213453,
4094
+ 2928710040,
4095
+ 3937242737,
4096
+ 1804850592,
4097
+ 3499020752,
4098
+ 2949064160,
4099
+ 2386320175,
4100
+ 2390070455,
4101
+ 2415321851,
4102
+ 4061277028,
4103
+ 2290661394,
4104
+ 2416832540,
4105
+ 1336762016,
4106
+ 1754252060,
4107
+ 3520065937,
4108
+ 3014181293,
4109
+ 791618072,
4110
+ 3188594551,
4111
+ 3933548030,
4112
+ 2332172193,
4113
+ 3852520463,
4114
+ 3043980520,
4115
+ 413987798,
4116
+ 3465142937,
4117
+ 3030929376,
4118
+ 4245938359,
4119
+ 2093235073,
4120
+ 3534596313,
4121
+ 375366246,
4122
+ 2157278981,
4123
+ 2479649556,
4124
+ 555357303,
4125
+ 3870105701,
4126
+ 2008414854,
4127
+ 3344188149,
4128
+ 4221384143,
4129
+ 3956125452,
4130
+ 2067696032,
4131
+ 3594591187,
4132
+ 2921233993,
4133
+ 2428461,
4134
+ 544322398,
4135
+ 577241275,
4136
+ 1471733935,
4137
+ 610547355,
4138
+ 4027169054,
4139
+ 1432588573,
4140
+ 1507829418,
4141
+ 2025931657,
4142
+ 3646575487,
4143
+ 545086370,
4144
+ 48609733,
4145
+ 2200306550,
4146
+ 1653985193,
4147
+ 298326376,
4148
+ 1316178497,
4149
+ 3007786442,
4150
+ 2064951626,
4151
+ 458293330,
4152
+ 2589141269,
4153
+ 3591329599,
4154
+ 3164325604,
4155
+ 727753846,
4156
+ 2179363840,
4157
+ 146436021,
4158
+ 1461446943,
4159
+ 4069977195,
4160
+ 705550613,
4161
+ 3059967265,
4162
+ 3887724982,
4163
+ 4281599278,
4164
+ 3313849956,
4165
+ 1404054877,
4166
+ 2845806497,
4167
+ 146425753,
4168
+ 1854211946
4169
+ ],
4170
+ [
4171
+ 1266315497,
4172
+ 3048417604,
4173
+ 3681880366,
4174
+ 3289982499,
4175
+ 290971e4,
4176
+ 1235738493,
4177
+ 2632868024,
4178
+ 2414719590,
4179
+ 3970600049,
4180
+ 1771706367,
4181
+ 1449415276,
4182
+ 3266420449,
4183
+ 422970021,
4184
+ 1963543593,
4185
+ 2690192192,
4186
+ 3826793022,
4187
+ 1062508698,
4188
+ 1531092325,
4189
+ 1804592342,
4190
+ 2583117782,
4191
+ 2714934279,
4192
+ 4024971509,
4193
+ 1294809318,
4194
+ 4028980673,
4195
+ 1289560198,
4196
+ 2221992742,
4197
+ 1669523910,
4198
+ 35572830,
4199
+ 157838143,
4200
+ 1052438473,
4201
+ 1016535060,
4202
+ 1802137761,
4203
+ 1753167236,
4204
+ 1386275462,
4205
+ 3080475397,
4206
+ 2857371447,
4207
+ 1040679964,
4208
+ 2145300060,
4209
+ 2390574316,
4210
+ 1461121720,
4211
+ 2956646967,
4212
+ 4031777805,
4213
+ 4028374788,
4214
+ 33600511,
4215
+ 2920084762,
4216
+ 1018524850,
4217
+ 629373528,
4218
+ 3691585981,
4219
+ 3515945977,
4220
+ 2091462646,
4221
+ 2486323059,
4222
+ 586499841,
4223
+ 988145025,
4224
+ 935516892,
4225
+ 3367335476,
4226
+ 2599673255,
4227
+ 2839830854,
4228
+ 265290510,
4229
+ 3972581182,
4230
+ 2759138881,
4231
+ 3795373465,
4232
+ 1005194799,
4233
+ 847297441,
4234
+ 406762289,
4235
+ 1314163512,
4236
+ 1332590856,
4237
+ 1866599683,
4238
+ 4127851711,
4239
+ 750260880,
4240
+ 613907577,
4241
+ 1450815602,
4242
+ 3165620655,
4243
+ 3734664991,
4244
+ 3650291728,
4245
+ 3012275730,
4246
+ 3704569646,
4247
+ 1427272223,
4248
+ 778793252,
4249
+ 1343938022,
4250
+ 2676280711,
4251
+ 2052605720,
4252
+ 1946737175,
4253
+ 3164576444,
4254
+ 3914038668,
4255
+ 3967478842,
4256
+ 3682934266,
4257
+ 1661551462,
4258
+ 3294938066,
4259
+ 4011595847,
4260
+ 840292616,
4261
+ 3712170807,
4262
+ 616741398,
4263
+ 312560963,
4264
+ 711312465,
4265
+ 1351876610,
4266
+ 322626781,
4267
+ 1910503582,
4268
+ 271666773,
4269
+ 2175563734,
4270
+ 1594956187,
4271
+ 70604529,
4272
+ 3617834859,
4273
+ 1007753275,
4274
+ 1495573769,
4275
+ 4069517037,
4276
+ 2549218298,
4277
+ 2663038764,
4278
+ 504708206,
4279
+ 2263041392,
4280
+ 3941167025,
4281
+ 2249088522,
4282
+ 1514023603,
4283
+ 1998579484,
4284
+ 1312622330,
4285
+ 694541497,
4286
+ 2582060303,
4287
+ 2151582166,
4288
+ 1382467621,
4289
+ 776784248,
4290
+ 2618340202,
4291
+ 3323268794,
4292
+ 2497899128,
4293
+ 2784771155,
4294
+ 503983604,
4295
+ 4076293799,
4296
+ 907881277,
4297
+ 423175695,
4298
+ 432175456,
4299
+ 1378068232,
4300
+ 4145222326,
4301
+ 3954048622,
4302
+ 3938656102,
4303
+ 3820766613,
4304
+ 2793130115,
4305
+ 2977904593,
4306
+ 26017576,
4307
+ 3274890735,
4308
+ 3194772133,
4309
+ 1700274565,
4310
+ 1756076034,
4311
+ 4006520079,
4312
+ 3677328699,
4313
+ 720338349,
4314
+ 1533947780,
4315
+ 354530856,
4316
+ 688349552,
4317
+ 3973924725,
4318
+ 1637815568,
4319
+ 332179504,
4320
+ 3949051286,
4321
+ 53804574,
4322
+ 2852348879,
4323
+ 3044236432,
4324
+ 1282449977,
4325
+ 3583942155,
4326
+ 3416972820,
4327
+ 4006381244,
4328
+ 1617046695,
4329
+ 2628476075,
4330
+ 3002303598,
4331
+ 1686838959,
4332
+ 431878346,
4333
+ 2686675385,
4334
+ 1700445008,
4335
+ 1080580658,
4336
+ 1009431731,
4337
+ 832498133,
4338
+ 3223435511,
4339
+ 2605976345,
4340
+ 2271191193,
4341
+ 2516031870,
4342
+ 1648197032,
4343
+ 4164389018,
4344
+ 2548247927,
4345
+ 300782431,
4346
+ 375919233,
4347
+ 238389289,
4348
+ 3353747414,
4349
+ 2531188641,
4350
+ 2019080857,
4351
+ 1475708069,
4352
+ 455242339,
4353
+ 2609103871,
4354
+ 448939670,
4355
+ 3451063019,
4356
+ 1395535956,
4357
+ 2413381860,
4358
+ 1841049896,
4359
+ 1491858159,
4360
+ 885456874,
4361
+ 4264095073,
4362
+ 4001119347,
4363
+ 1565136089,
4364
+ 3898914787,
4365
+ 1108368660,
4366
+ 540939232,
4367
+ 1173283510,
4368
+ 2745871338,
4369
+ 3681308437,
4370
+ 4207628240,
4371
+ 3343053890,
4372
+ 4016749493,
4373
+ 1699691293,
4374
+ 1103962373,
4375
+ 3625875870,
4376
+ 2256883143,
4377
+ 3830138730,
4378
+ 1031889488,
4379
+ 3479347698,
4380
+ 1535977030,
4381
+ 4236805024,
4382
+ 3251091107,
4383
+ 2132092099,
4384
+ 1774941330,
4385
+ 1199868427,
4386
+ 1452454533,
4387
+ 157007616,
4388
+ 2904115357,
4389
+ 342012276,
4390
+ 595725824,
4391
+ 1480756522,
4392
+ 206960106,
4393
+ 497939518,
4394
+ 591360097,
4395
+ 863170706,
4396
+ 2375253569,
4397
+ 3596610801,
4398
+ 1814182875,
4399
+ 2094937945,
4400
+ 3421402208,
4401
+ 1082520231,
4402
+ 3463918190,
4403
+ 2785509508,
4404
+ 435703966,
4405
+ 3908032597,
4406
+ 1641649973,
4407
+ 2842273706,
4408
+ 3305899714,
4409
+ 1510255612,
4410
+ 2148256476,
4411
+ 2655287854,
4412
+ 3276092548,
4413
+ 4258621189,
4414
+ 236887753,
4415
+ 3681803219,
4416
+ 274041037,
4417
+ 1734335097,
4418
+ 3815195456,
4419
+ 3317970021,
4420
+ 1899903192,
4421
+ 1026095262,
4422
+ 4050517792,
4423
+ 356393447,
4424
+ 2410691914,
4425
+ 3873677099,
4426
+ 3682840055
4427
+ ],
4428
+ [
4429
+ 3913112168,
4430
+ 2491498743,
4431
+ 4132185628,
4432
+ 2489919796,
4433
+ 1091903735,
4434
+ 1979897079,
4435
+ 3170134830,
4436
+ 3567386728,
4437
+ 3557303409,
4438
+ 857797738,
4439
+ 1136121015,
4440
+ 1342202287,
4441
+ 507115054,
4442
+ 2535736646,
4443
+ 337727348,
4444
+ 3213592640,
4445
+ 1301675037,
4446
+ 2528481711,
4447
+ 1895095763,
4448
+ 1721773893,
4449
+ 3216771564,
4450
+ 62756741,
4451
+ 2142006736,
4452
+ 835421444,
4453
+ 2531993523,
4454
+ 1442658625,
4455
+ 3659876326,
4456
+ 2882144922,
4457
+ 676362277,
4458
+ 1392781812,
4459
+ 170690266,
4460
+ 3921047035,
4461
+ 1759253602,
4462
+ 3611846912,
4463
+ 1745797284,
4464
+ 664899054,
4465
+ 1329594018,
4466
+ 3901205900,
4467
+ 3045908486,
4468
+ 2062866102,
4469
+ 2865634940,
4470
+ 3543621612,
4471
+ 3464012697,
4472
+ 1080764994,
4473
+ 553557557,
4474
+ 3656615353,
4475
+ 3996768171,
4476
+ 991055499,
4477
+ 499776247,
4478
+ 1265440854,
4479
+ 648242737,
4480
+ 3940784050,
4481
+ 980351604,
4482
+ 3713745714,
4483
+ 1749149687,
4484
+ 3396870395,
4485
+ 4211799374,
4486
+ 3640570775,
4487
+ 1161844396,
4488
+ 3125318951,
4489
+ 1431517754,
4490
+ 545492359,
4491
+ 4268468663,
4492
+ 3499529547,
4493
+ 1437099964,
4494
+ 2702547544,
4495
+ 3433638243,
4496
+ 2581715763,
4497
+ 2787789398,
4498
+ 1060185593,
4499
+ 1593081372,
4500
+ 2418618748,
4501
+ 4260947970,
4502
+ 69676912,
4503
+ 2159744348,
4504
+ 86519011,
4505
+ 2512459080,
4506
+ 3838209314,
4507
+ 1220612927,
4508
+ 3339683548,
4509
+ 133810670,
4510
+ 1090789135,
4511
+ 1078426020,
4512
+ 1569222167,
4513
+ 845107691,
4514
+ 3583754449,
4515
+ 4072456591,
4516
+ 1091646820,
4517
+ 628848692,
4518
+ 1613405280,
4519
+ 3757631651,
4520
+ 526609435,
4521
+ 236106946,
4522
+ 48312990,
4523
+ 2942717905,
4524
+ 3402727701,
4525
+ 1797494240,
4526
+ 859738849,
4527
+ 992217954,
4528
+ 4005476642,
4529
+ 2243076622,
4530
+ 3870952857,
4531
+ 3732016268,
4532
+ 765654824,
4533
+ 3490871365,
4534
+ 2511836413,
4535
+ 1685915746,
4536
+ 3888969200,
4537
+ 1414112111,
4538
+ 2273134842,
4539
+ 3281911079,
4540
+ 4080962846,
4541
+ 172450625,
4542
+ 2569994100,
4543
+ 980381355,
4544
+ 4109958455,
4545
+ 2819808352,
4546
+ 2716589560,
4547
+ 2568741196,
4548
+ 3681446669,
4549
+ 3329971472,
4550
+ 1835478071,
4551
+ 660984891,
4552
+ 3704678404,
4553
+ 4045999559,
4554
+ 3422617507,
4555
+ 3040415634,
4556
+ 1762651403,
4557
+ 1719377915,
4558
+ 3470491036,
4559
+ 2693910283,
4560
+ 3642056355,
4561
+ 3138596744,
4562
+ 1364962596,
4563
+ 2073328063,
4564
+ 1983633131,
4565
+ 926494387,
4566
+ 3423689081,
4567
+ 2150032023,
4568
+ 4096667949,
4569
+ 1749200295,
4570
+ 3328846651,
4571
+ 309677260,
4572
+ 2016342300,
4573
+ 1779581495,
4574
+ 3079819751,
4575
+ 111262694,
4576
+ 1274766160,
4577
+ 443224088,
4578
+ 298511866,
4579
+ 1025883608,
4580
+ 3806446537,
4581
+ 1145181785,
4582
+ 168956806,
4583
+ 3641502830,
4584
+ 3584813610,
4585
+ 1689216846,
4586
+ 3666258015,
4587
+ 3200248200,
4588
+ 1692713982,
4589
+ 2646376535,
4590
+ 4042768518,
4591
+ 1618508792,
4592
+ 1610833997,
4593
+ 3523052358,
4594
+ 4130873264,
4595
+ 2001055236,
4596
+ 3610705100,
4597
+ 2202168115,
4598
+ 4028541809,
4599
+ 2961195399,
4600
+ 1006657119,
4601
+ 2006996926,
4602
+ 3186142756,
4603
+ 1430667929,
4604
+ 3210227297,
4605
+ 1314452623,
4606
+ 4074634658,
4607
+ 4101304120,
4608
+ 2273951170,
4609
+ 1399257539,
4610
+ 3367210612,
4611
+ 3027628629,
4612
+ 1190975929,
4613
+ 2062231137,
4614
+ 2333990788,
4615
+ 2221543033,
4616
+ 2438960610,
4617
+ 1181637006,
4618
+ 548689776,
4619
+ 2362791313,
4620
+ 3372408396,
4621
+ 3104550113,
4622
+ 3145860560,
4623
+ 296247880,
4624
+ 1970579870,
4625
+ 3078560182,
4626
+ 3769228297,
4627
+ 1714227617,
4628
+ 3291629107,
4629
+ 3898220290,
4630
+ 166772364,
4631
+ 1251581989,
4632
+ 493813264,
4633
+ 448347421,
4634
+ 195405023,
4635
+ 2709975567,
4636
+ 677966185,
4637
+ 3703036547,
4638
+ 1463355134,
4639
+ 2715995803,
4640
+ 1338867538,
4641
+ 1343315457,
4642
+ 2802222074,
4643
+ 2684532164,
4644
+ 233230375,
4645
+ 2599980071,
4646
+ 2000651841,
4647
+ 3277868038,
4648
+ 1638401717,
4649
+ 4028070440,
4650
+ 3237316320,
4651
+ 6314154,
4652
+ 819756386,
4653
+ 300326615,
4654
+ 590932579,
4655
+ 1405279636,
4656
+ 3267499572,
4657
+ 3150704214,
4658
+ 2428286686,
4659
+ 3959192993,
4660
+ 3461946742,
4661
+ 1862657033,
4662
+ 1266418056,
4663
+ 963775037,
4664
+ 2089974820,
4665
+ 2263052895,
4666
+ 1917689273,
4667
+ 448879540,
4668
+ 3550394620,
4669
+ 3981727096,
4670
+ 150775221,
4671
+ 3627908307,
4672
+ 1303187396,
4673
+ 508620638,
4674
+ 2975983352,
4675
+ 2726630617,
4676
+ 1817252668,
4677
+ 1876281319,
4678
+ 1457606340,
4679
+ 908771278,
4680
+ 3720792119,
4681
+ 3617206836,
4682
+ 2455994898,
4683
+ 1729034894,
4684
+ 1080033504
4685
+ ],
4686
+ [
4687
+ 976866871,
4688
+ 3556439503,
4689
+ 2881648439,
4690
+ 1522871579,
4691
+ 1555064734,
4692
+ 1336096578,
4693
+ 3548522304,
4694
+ 2579274686,
4695
+ 3574697629,
4696
+ 3205460757,
4697
+ 3593280638,
4698
+ 3338716283,
4699
+ 3079412587,
4700
+ 564236357,
4701
+ 2993598910,
4702
+ 1781952180,
4703
+ 1464380207,
4704
+ 3163844217,
4705
+ 3332601554,
4706
+ 1699332808,
4707
+ 1393555694,
4708
+ 1183702653,
4709
+ 3581086237,
4710
+ 1288719814,
4711
+ 691649499,
4712
+ 2847557200,
4713
+ 2895455976,
4714
+ 3193889540,
4715
+ 2717570544,
4716
+ 1781354906,
4717
+ 1676643554,
4718
+ 2592534050,
4719
+ 3230253752,
4720
+ 1126444790,
4721
+ 2770207658,
4722
+ 2633158820,
4723
+ 2210423226,
4724
+ 2615765581,
4725
+ 2414155088,
4726
+ 3127139286,
4727
+ 673620729,
4728
+ 2805611233,
4729
+ 1269405062,
4730
+ 4015350505,
4731
+ 3341807571,
4732
+ 4149409754,
4733
+ 1057255273,
4734
+ 2012875353,
4735
+ 2162469141,
4736
+ 2276492801,
4737
+ 2601117357,
4738
+ 993977747,
4739
+ 3918593370,
4740
+ 2654263191,
4741
+ 753973209,
4742
+ 36408145,
4743
+ 2530585658,
4744
+ 25011837,
4745
+ 3520020182,
4746
+ 2088578344,
4747
+ 530523599,
4748
+ 2918365339,
4749
+ 1524020338,
4750
+ 1518925132,
4751
+ 3760827505,
4752
+ 3759777254,
4753
+ 1202760957,
4754
+ 3985898139,
4755
+ 3906192525,
4756
+ 674977740,
4757
+ 4174734889,
4758
+ 2031300136,
4759
+ 2019492241,
4760
+ 3983892565,
4761
+ 4153806404,
4762
+ 3822280332,
4763
+ 352677332,
4764
+ 2297720250,
4765
+ 60907813,
4766
+ 90501309,
4767
+ 3286998549,
4768
+ 1016092578,
4769
+ 2535922412,
4770
+ 2839152426,
4771
+ 457141659,
4772
+ 509813237,
4773
+ 4120667899,
4774
+ 652014361,
4775
+ 1966332200,
4776
+ 2975202805,
4777
+ 55981186,
4778
+ 2327461051,
4779
+ 676427537,
4780
+ 3255491064,
4781
+ 2882294119,
4782
+ 3433927263,
4783
+ 1307055953,
4784
+ 942726286,
4785
+ 933058658,
4786
+ 2468411793,
4787
+ 3933900994,
4788
+ 4215176142,
4789
+ 1361170020,
4790
+ 2001714738,
4791
+ 2830558078,
4792
+ 3274259782,
4793
+ 1222529897,
4794
+ 1679025792,
4795
+ 2729314320,
4796
+ 3714953764,
4797
+ 1770335741,
4798
+ 151462246,
4799
+ 3013232138,
4800
+ 1682292957,
4801
+ 1483529935,
4802
+ 471910574,
4803
+ 1539241949,
4804
+ 458788160,
4805
+ 3436315007,
4806
+ 1807016891,
4807
+ 3718408830,
4808
+ 978976581,
4809
+ 1043663428,
4810
+ 3165965781,
4811
+ 1927990952,
4812
+ 4200891579,
4813
+ 2372276910,
4814
+ 3208408903,
4815
+ 3533431907,
4816
+ 1412390302,
4817
+ 2931980059,
4818
+ 4132332400,
4819
+ 1947078029,
4820
+ 3881505623,
4821
+ 4168226417,
4822
+ 2941484381,
4823
+ 1077988104,
4824
+ 1320477388,
4825
+ 886195818,
4826
+ 18198404,
4827
+ 3786409e3,
4828
+ 2509781533,
4829
+ 112762804,
4830
+ 3463356488,
4831
+ 1866414978,
4832
+ 891333506,
4833
+ 18488651,
4834
+ 661792760,
4835
+ 1628790961,
4836
+ 3885187036,
4837
+ 3141171499,
4838
+ 876946877,
4839
+ 2693282273,
4840
+ 1372485963,
4841
+ 791857591,
4842
+ 2686433993,
4843
+ 3759982718,
4844
+ 3167212022,
4845
+ 3472953795,
4846
+ 2716379847,
4847
+ 445679433,
4848
+ 3561995674,
4849
+ 3504004811,
4850
+ 3574258232,
4851
+ 54117162,
4852
+ 3331405415,
4853
+ 2381918588,
4854
+ 3769707343,
4855
+ 4154350007,
4856
+ 1140177722,
4857
+ 4074052095,
4858
+ 668550556,
4859
+ 3214352940,
4860
+ 367459370,
4861
+ 261225585,
4862
+ 2610173221,
4863
+ 4209349473,
4864
+ 3468074219,
4865
+ 3265815641,
4866
+ 314222801,
4867
+ 3066103646,
4868
+ 3808782860,
4869
+ 282218597,
4870
+ 3406013506,
4871
+ 3773591054,
4872
+ 379116347,
4873
+ 1285071038,
4874
+ 846784868,
4875
+ 2669647154,
4876
+ 3771962079,
4877
+ 3550491691,
4878
+ 2305946142,
4879
+ 453669953,
4880
+ 1268987020,
4881
+ 3317592352,
4882
+ 3279303384,
4883
+ 3744833421,
4884
+ 2610507566,
4885
+ 3859509063,
4886
+ 266596637,
4887
+ 3847019092,
4888
+ 517658769,
4889
+ 3462560207,
4890
+ 3443424879,
4891
+ 370717030,
4892
+ 4247526661,
4893
+ 2224018117,
4894
+ 4143653529,
4895
+ 4112773975,
4896
+ 2788324899,
4897
+ 2477274417,
4898
+ 1456262402,
4899
+ 2901442914,
4900
+ 1517677493,
4901
+ 1846949527,
4902
+ 2295493580,
4903
+ 3734397586,
4904
+ 2176403920,
4905
+ 1280348187,
4906
+ 1908823572,
4907
+ 3871786941,
4908
+ 846861322,
4909
+ 1172426758,
4910
+ 3287448474,
4911
+ 3383383037,
4912
+ 1655181056,
4913
+ 3139813346,
4914
+ 901632758,
4915
+ 1897031941,
4916
+ 2986607138,
4917
+ 3066810236,
4918
+ 3447102507,
4919
+ 1393639104,
4920
+ 373351379,
4921
+ 950779232,
4922
+ 625454576,
4923
+ 3124240540,
4924
+ 4148612726,
4925
+ 2007998917,
4926
+ 544563296,
4927
+ 2244738638,
4928
+ 2330496472,
4929
+ 2058025392,
4930
+ 1291430526,
4931
+ 424198748,
4932
+ 50039436,
4933
+ 29584100,
4934
+ 3605783033,
4935
+ 2429876329,
4936
+ 2791104160,
4937
+ 1057563949,
4938
+ 3255363231,
4939
+ 3075367218,
4940
+ 3463963227,
4941
+ 1469046755,
4942
+ 985887462
4943
+ ]
4944
+ ];
4945
+ var e = {
4946
+ pbox: [],
4947
+ sbox: []
4948
+ };
4949
+ function d(f, l) {
4950
+ let t = l >> 24 & 255, n = l >> 16 & 255, i = l >> 8 & 255, E = l & 255, C = f.sbox[0][t] + f.sbox[1][n];
4951
+ return C = C ^ f.sbox[2][i], C = C + f.sbox[3][E], C;
4952
+ }
4953
+ function r(f, l, t) {
4954
+ let n = l, i = t, E;
4955
+ for (let C = 0; C < u; ++C)
4956
+ n = n ^ f.pbox[C], i = d(f, n) ^ i, E = n, n = i, i = E;
4957
+ return E = n, n = i, i = E, i = i ^ f.pbox[u], n = n ^ f.pbox[u + 1], { left: n, right: i };
4958
+ }
4959
+ function s(f, l, t) {
4960
+ let n = l, i = t, E;
4961
+ for (let C = u + 1; C > 1; --C)
4962
+ n = n ^ f.pbox[C], i = d(f, n) ^ i, E = n, n = i, i = E;
4963
+ return E = n, n = i, i = E, i = i ^ f.pbox[1], n = n ^ f.pbox[0], { left: n, right: i };
4964
+ }
4965
+ function o(f, l, t) {
4966
+ for (let A = 0; A < 4; A++) {
4967
+ f.sbox[A] = [];
4968
+ for (let _ = 0; _ < 256; _++)
4969
+ f.sbox[A][_] = x[A][_];
4970
+ }
4971
+ let n = 0;
4972
+ for (let A = 0; A < u + 2; A++)
4973
+ f.pbox[A] = h[A] ^ l[n], n++, n >= t && (n = 0);
4974
+ let i = 0, E = 0, C = 0;
4975
+ for (let A = 0; A < u + 2; A += 2)
4976
+ C = r(f, i, E), i = C.left, E = C.right, f.pbox[A] = i, f.pbox[A + 1] = E;
4977
+ for (let A = 0; A < 4; A++)
4978
+ for (let _ = 0; _ < 256; _ += 2)
4979
+ C = r(f, i, E), i = C.left, E = C.right, f.sbox[A][_] = i, f.sbox[A][_ + 1] = E;
4980
+ return !0;
4981
+ }
4982
+ var c = w.Blowfish = F.extend({
4983
+ _doReset: function() {
4984
+ if (this._keyPriorReset !== this._key) {
4985
+ var f = this._keyPriorReset = this._key, l = f.words, t = f.sigBytes / 4;
4986
+ o(e, l, t);
4987
+ }
4988
+ },
4989
+ encryptBlock: function(f, l) {
4990
+ var t = r(e, f[l], f[l + 1]);
4991
+ f[l] = t.left, f[l + 1] = t.right;
4992
+ },
4993
+ decryptBlock: function(f, l) {
4994
+ var t = s(e, f[l], f[l + 1]);
4995
+ f[l] = t.left, f[l + 1] = t.right;
4996
+ },
4997
+ blockSize: 64 / 32,
4998
+ keySize: 128 / 32,
4999
+ ivSize: 64 / 32
5000
+ });
5001
+ a.Blowfish = F._createHelper(c);
5002
+ })(), B.Blowfish;
5003
+ });
5004
+ })(M0)), M0.exports;
5005
+ }
5006
+ var ye = l0.exports, Mx;
5007
+ function ge() {
5008
+ return Mx || (Mx = 1, (function(S, P) {
5009
+ (function(B, a, D) {
5010
+ S.exports = a(L(), V0(), Dr(), br(), r0(), kr(), e0(), Vx(), ex(), Rr(), Jx(), Pr(), $r(), Or(), tx(), Nr(), x0(), U(), Gr(), jr(), Yr(), Vr(), xe(), ee(), ae(), oe(), fe(), ce(), ue(), Be(), le(), Ee(), pe(), De(), be());
5011
+ })(ye, function(B) {
5012
+ return B;
5013
+ });
5014
+ })(l0)), l0.exports;
5015
+ }
5016
+ var ke = ge();
5017
+ const we = /* @__PURE__ */ dr(ke);
5018
+ export {
5019
+ we as C
5020
+ };