@bytecodealliance/jco 0.5.4 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api.mjs +246 -69
- package/cli.mjs +247 -70
- package/js-component-bindgen-component.core.wasm +0 -0
- package/package.json +1 -1
- package/wasi_snapshot_preview1.command.wasm +0 -0
- package/wasi_snapshot_preview1.reactor.wasm +0 -0
- package/wasm-tools.core.wasm +0 -0
package/api.mjs
CHANGED
|
@@ -7761,6 +7761,7 @@ class Ora {
|
|
|
7761
7761
|
#indent;
|
|
7762
7762
|
#text;
|
|
7763
7763
|
#prefixText;
|
|
7764
|
+
#suffixText;
|
|
7764
7765
|
|
|
7765
7766
|
color;
|
|
7766
7767
|
|
|
@@ -7794,6 +7795,7 @@ class Ora {
|
|
|
7794
7795
|
// It's important that these use the public setters.
|
|
7795
7796
|
this.text = this.#options.text;
|
|
7796
7797
|
this.prefixText = this.#options.prefixText;
|
|
7798
|
+
this.suffixText = this.#options.suffixText;
|
|
7797
7799
|
this.indent = this.#options.indent;
|
|
7798
7800
|
|
|
7799
7801
|
if (external_node_process_.env.NODE_ENV === 'test') {
|
|
@@ -7884,6 +7886,15 @@ class Ora {
|
|
|
7884
7886
|
this.updateLineCount();
|
|
7885
7887
|
}
|
|
7886
7888
|
|
|
7889
|
+
get suffixText() {
|
|
7890
|
+
return this.#suffixText;
|
|
7891
|
+
}
|
|
7892
|
+
|
|
7893
|
+
set suffixText(value) {
|
|
7894
|
+
this.#suffixText = value || '';
|
|
7895
|
+
this.updateLineCount();
|
|
7896
|
+
}
|
|
7897
|
+
|
|
7887
7898
|
get isSpinning() {
|
|
7888
7899
|
return this.#id !== undefined;
|
|
7889
7900
|
}
|
|
@@ -7901,12 +7912,26 @@ class Ora {
|
|
|
7901
7912
|
return '';
|
|
7902
7913
|
}
|
|
7903
7914
|
|
|
7915
|
+
getFullSuffixText(suffixText = this.#suffixText, prefix = ' ') {
|
|
7916
|
+
if (typeof suffixText === 'string' && suffixText !== '') {
|
|
7917
|
+
return prefix + suffixText;
|
|
7918
|
+
}
|
|
7919
|
+
|
|
7920
|
+
if (typeof suffixText === 'function') {
|
|
7921
|
+
return prefix + suffixText();
|
|
7922
|
+
}
|
|
7923
|
+
|
|
7924
|
+
return '';
|
|
7925
|
+
}
|
|
7926
|
+
|
|
7904
7927
|
updateLineCount() {
|
|
7905
7928
|
const columns = this.#stream.columns || 80;
|
|
7906
7929
|
const fullPrefixText = this.getFullPrefixText(this.#prefixText, '-');
|
|
7930
|
+
const fullSuffixText = this.getFullSuffixText(this.#suffixText, '-');
|
|
7931
|
+
const fullText = ' '.repeat(this.#indent) + fullPrefixText + '--' + this.#text + '--' + fullSuffixText;
|
|
7907
7932
|
|
|
7908
7933
|
this.#lineCount = 0;
|
|
7909
|
-
for (const line of stripAnsi(
|
|
7934
|
+
for (const line of stripAnsi(fullText).split('\n')) {
|
|
7910
7935
|
this.#lineCount += Math.max(1, Math.ceil(wcwidth(line) / columns));
|
|
7911
7936
|
}
|
|
7912
7937
|
}
|
|
@@ -7946,8 +7971,9 @@ class Ora {
|
|
|
7946
7971
|
this.#frameIndex = ++this.#frameIndex % frames.length;
|
|
7947
7972
|
const fullPrefixText = (typeof this.#prefixText === 'string' && this.#prefixText !== '') ? this.#prefixText + ' ' : '';
|
|
7948
7973
|
const fullText = typeof this.text === 'string' ? ' ' + this.text : '';
|
|
7974
|
+
const fullSuffixText = (typeof this.#suffixText === 'string' && this.#suffixText !== '') ? ' ' + this.#suffixText : '';
|
|
7949
7975
|
|
|
7950
|
-
return fullPrefixText + frame + fullText;
|
|
7976
|
+
return fullPrefixText + frame + fullText + fullSuffixText;
|
|
7951
7977
|
}
|
|
7952
7978
|
|
|
7953
7979
|
clear() {
|
|
@@ -8065,12 +8091,21 @@ class Ora {
|
|
|
8065
8091
|
return this;
|
|
8066
8092
|
}
|
|
8067
8093
|
|
|
8068
|
-
const prefixText = options.prefixText
|
|
8069
|
-
const
|
|
8094
|
+
const prefixText = options.prefixText ?? this.#prefixText;
|
|
8095
|
+
const fullPrefixText = this.getFullPrefixText(prefixText, ' ');
|
|
8096
|
+
|
|
8097
|
+
const symbolText = options.symbol ?? ' ';
|
|
8098
|
+
|
|
8099
|
+
const text = options.text ?? this.text;
|
|
8070
8100
|
const fullText = (typeof text === 'string') ? ' ' + text : '';
|
|
8071
8101
|
|
|
8102
|
+
const suffixText = options.suffixText ?? this.#suffixText;
|
|
8103
|
+
const fullSuffixText = this.getFullSuffixText(suffixText, ' ');
|
|
8104
|
+
|
|
8105
|
+
const textToWrite = fullPrefixText + symbolText + fullText + fullSuffixText + '\n';
|
|
8106
|
+
|
|
8072
8107
|
this.stop();
|
|
8073
|
-
this.#stream.write(
|
|
8108
|
+
this.#stream.write(textToWrite);
|
|
8074
8109
|
|
|
8075
8110
|
return this;
|
|
8076
8111
|
}
|
|
@@ -8397,6 +8432,10 @@ function set_annotation(node, annotation) {
|
|
|
8397
8432
|
node._annotations |= annotation;
|
|
8398
8433
|
}
|
|
8399
8434
|
|
|
8435
|
+
function clear_annotation(node, annotation) {
|
|
8436
|
+
node._annotations &= ~annotation;
|
|
8437
|
+
}
|
|
8438
|
+
|
|
8400
8439
|
|
|
8401
8440
|
|
|
8402
8441
|
;// CONCATENATED MODULE: ./node_modules/terser/lib/parse.js
|
|
@@ -10509,6 +10548,7 @@ function parse_parse($TEXT, options) {
|
|
|
10509
10548
|
value : tok.value,
|
|
10510
10549
|
quote : tok.quote
|
|
10511
10550
|
});
|
|
10551
|
+
annotate(ret);
|
|
10512
10552
|
break;
|
|
10513
10553
|
case "regexp":
|
|
10514
10554
|
const [_, source, flags] = tok.value.match(/^\/(.*)\/(\w*)$/);
|
|
@@ -10592,7 +10632,7 @@ function parse_parse($TEXT, options) {
|
|
|
10592
10632
|
return new_(allow_calls);
|
|
10593
10633
|
}
|
|
10594
10634
|
if (is("name", "import") && is_token(peek(), "punc", ".")) {
|
|
10595
|
-
return import_meta();
|
|
10635
|
+
return import_meta(allow_calls);
|
|
10596
10636
|
}
|
|
10597
10637
|
var start = S.token;
|
|
10598
10638
|
var peeked;
|
|
@@ -11085,7 +11125,7 @@ function parse_parse($TEXT, options) {
|
|
|
11085
11125
|
});
|
|
11086
11126
|
}
|
|
11087
11127
|
|
|
11088
|
-
function import_meta() {
|
|
11128
|
+
function import_meta(allow_calls) {
|
|
11089
11129
|
var start = S.token;
|
|
11090
11130
|
expect_token("name", "import");
|
|
11091
11131
|
expect_token("punc", ".");
|
|
@@ -11093,7 +11133,7 @@ function parse_parse($TEXT, options) {
|
|
|
11093
11133
|
return subscripts(new AST_ImportMeta({
|
|
11094
11134
|
start: start,
|
|
11095
11135
|
end: prev()
|
|
11096
|
-
}),
|
|
11136
|
+
}), allow_calls);
|
|
11097
11137
|
}
|
|
11098
11138
|
|
|
11099
11139
|
function map_name(is_import) {
|
|
@@ -11395,6 +11435,10 @@ function parse_parse($TEXT, options) {
|
|
|
11395
11435
|
set_annotation(node, _NOINLINE);
|
|
11396
11436
|
break;
|
|
11397
11437
|
}
|
|
11438
|
+
if (/[@#]__KEY__/.test(comment.value)) {
|
|
11439
|
+
set_annotation(node, _KEY);
|
|
11440
|
+
break;
|
|
11441
|
+
}
|
|
11398
11442
|
}
|
|
11399
11443
|
}
|
|
11400
11444
|
}
|
|
@@ -11997,21 +12041,8 @@ var AST_SimpleStatement = DEFNODE("SimpleStatement", "body", function AST_Simple
|
|
|
11997
12041
|
|
|
11998
12042
|
function walk_body(node, visitor) {
|
|
11999
12043
|
const body = node.body;
|
|
12000
|
-
|
|
12001
|
-
|
|
12002
|
-
if (body[i] instanceof AST_Defun) {
|
|
12003
|
-
body[i]._walk(visitor);
|
|
12004
|
-
}
|
|
12005
|
-
}
|
|
12006
|
-
for (var i = 0, len = body.length; i < len; i++) {
|
|
12007
|
-
if (!(body[i] instanceof AST_Defun)) {
|
|
12008
|
-
body[i]._walk(visitor);
|
|
12009
|
-
}
|
|
12010
|
-
}
|
|
12011
|
-
} else {
|
|
12012
|
-
for (var i = 0, len = body.length; i < len; i++) {
|
|
12013
|
-
body[i]._walk(visitor);
|
|
12014
|
-
}
|
|
12044
|
+
for (var i = 0, len = body.length; i < len; i++) {
|
|
12045
|
+
body[i]._walk(visitor);
|
|
12015
12046
|
}
|
|
12016
12047
|
}
|
|
12017
12048
|
|
|
@@ -12666,11 +12697,14 @@ var AST_Destructuring = DEFNODE("Destructuring", "names is_array", function AST_
|
|
|
12666
12697
|
},
|
|
12667
12698
|
all_symbols: function() {
|
|
12668
12699
|
var out = [];
|
|
12669
|
-
this
|
|
12670
|
-
if (node instanceof
|
|
12700
|
+
ast_walk(this, node => {
|
|
12701
|
+
if (node instanceof AST_SymbolDeclaration) {
|
|
12671
12702
|
out.push(node);
|
|
12672
12703
|
}
|
|
12673
|
-
|
|
12704
|
+
if (node instanceof AST_Lambda) {
|
|
12705
|
+
return true;
|
|
12706
|
+
}
|
|
12707
|
+
});
|
|
12674
12708
|
return out;
|
|
12675
12709
|
}
|
|
12676
12710
|
});
|
|
@@ -13201,6 +13235,13 @@ var AST_VarDef = DEFNODE("VarDef", "name value", function AST_VarDef(props) {
|
|
|
13201
13235
|
if (this.value) push(this.value);
|
|
13202
13236
|
push(this.name);
|
|
13203
13237
|
},
|
|
13238
|
+
declarations_as_names() {
|
|
13239
|
+
if (this.name instanceof AST_SymbolDeclaration) {
|
|
13240
|
+
return [this];
|
|
13241
|
+
} else {
|
|
13242
|
+
return this.name.all_symbols();
|
|
13243
|
+
}
|
|
13244
|
+
}
|
|
13204
13245
|
});
|
|
13205
13246
|
|
|
13206
13247
|
var AST_NameMapping = DEFNODE("NameMapping", "foreign_name name", function AST_NameMapping(props) {
|
|
@@ -14523,6 +14564,7 @@ var AST_String = DEFNODE("String", "value quote", function AST_String(props) {
|
|
|
14523
14564
|
this.quote = props.quote;
|
|
14524
14565
|
this.start = props.start;
|
|
14525
14566
|
this.end = props.end;
|
|
14567
|
+
this._annotations = props._annotations;
|
|
14526
14568
|
}
|
|
14527
14569
|
|
|
14528
14570
|
this.flags = 0;
|
|
@@ -14790,11 +14832,10 @@ const walk_abort = Symbol("abort walk");
|
|
|
14790
14832
|
/* -----[ TreeWalker ]----- */
|
|
14791
14833
|
|
|
14792
14834
|
class TreeWalker {
|
|
14793
|
-
constructor(callback
|
|
14835
|
+
constructor(callback) {
|
|
14794
14836
|
this.visit = callback;
|
|
14795
14837
|
this.stack = [];
|
|
14796
14838
|
this.directives = Object.create(null);
|
|
14797
|
-
this.walk_defun_first = walk_defun_first;
|
|
14798
14839
|
}
|
|
14799
14840
|
|
|
14800
14841
|
_visit(node, descend) {
|
|
@@ -14896,6 +14937,7 @@ class TreeTransformer extends TreeWalker {
|
|
|
14896
14937
|
const _PURE = 0b00000001;
|
|
14897
14938
|
const _INLINE = 0b00000010;
|
|
14898
14939
|
const _NOINLINE = 0b00000100;
|
|
14940
|
+
const _KEY = 0b00001000;
|
|
14899
14941
|
|
|
14900
14942
|
|
|
14901
14943
|
|
|
@@ -17930,6 +17972,12 @@ function output_OutputStream(options) {
|
|
|
17930
17972
|
return true;
|
|
17931
17973
|
});
|
|
17932
17974
|
|
|
17975
|
+
PARENS(AST_Chain, function(output) {
|
|
17976
|
+
var p = output.parent();
|
|
17977
|
+
if (!(p instanceof AST_Call || p instanceof ast_AST_PropAccess)) return false;
|
|
17978
|
+
return p.expression === this;
|
|
17979
|
+
});
|
|
17980
|
+
|
|
17933
17981
|
PARENS(ast_AST_PropAccess, function(output) {
|
|
17934
17982
|
var p = output.parent();
|
|
17935
17983
|
if (p instanceof AST_New && p.expression === this) {
|
|
@@ -21152,7 +21200,8 @@ function maintain_this_binding(parent, orig, val) {
|
|
|
21152
21200
|
parent instanceof AST_UnaryPrefix && parent.operator == "delete"
|
|
21153
21201
|
|| parent instanceof AST_Call && parent.expression === orig
|
|
21154
21202
|
&& (
|
|
21155
|
-
val instanceof
|
|
21203
|
+
val instanceof AST_Chain
|
|
21204
|
+
|| val instanceof ast_AST_PropAccess
|
|
21156
21205
|
|| val instanceof AST_SymbolRef && val.name == "eval"
|
|
21157
21206
|
)
|
|
21158
21207
|
) {
|
|
@@ -22701,6 +22750,25 @@ const regexp_flags = new Set([
|
|
|
22701
22750
|
def_eval(ast_AST_PropAccess, function (compressor, depth) {
|
|
22702
22751
|
let obj = this.expression._eval(compressor, depth + 1);
|
|
22703
22752
|
if (obj === nullish || (this.optional && obj == null)) return nullish;
|
|
22753
|
+
|
|
22754
|
+
// `.length` of strings and arrays is always safe
|
|
22755
|
+
if (this.property === "length") {
|
|
22756
|
+
if (typeof obj === "string") {
|
|
22757
|
+
return obj.length;
|
|
22758
|
+
}
|
|
22759
|
+
|
|
22760
|
+
const is_spreadless_array =
|
|
22761
|
+
obj instanceof ast_AST_Array
|
|
22762
|
+
&& obj.elements.every(el => !(el instanceof AST_Expansion));
|
|
22763
|
+
|
|
22764
|
+
if (
|
|
22765
|
+
is_spreadless_array
|
|
22766
|
+
&& obj.elements.every(el => !el.has_side_effects(compressor))
|
|
22767
|
+
) {
|
|
22768
|
+
return obj.elements.length;
|
|
22769
|
+
}
|
|
22770
|
+
}
|
|
22771
|
+
|
|
22704
22772
|
if (compressor.option("unsafe")) {
|
|
22705
22773
|
var key = this.property;
|
|
22706
22774
|
if (key instanceof ast_AST_Node) {
|
|
@@ -22708,9 +22776,9 @@ def_eval(ast_AST_PropAccess, function (compressor, depth) {
|
|
|
22708
22776
|
if (key === this.property)
|
|
22709
22777
|
return this;
|
|
22710
22778
|
}
|
|
22779
|
+
|
|
22711
22780
|
var exp = this.expression;
|
|
22712
22781
|
if (is_undeclared_ref(exp)) {
|
|
22713
|
-
|
|
22714
22782
|
var aa;
|
|
22715
22783
|
var first_arg = exp.name === "hasOwnProperty"
|
|
22716
22784
|
&& key === "call"
|
|
@@ -23966,9 +24034,7 @@ def_reduce_vars(AST_Default, function(tw, descend) {
|
|
|
23966
24034
|
|
|
23967
24035
|
function mark_lambda(tw, descend, compressor) {
|
|
23968
24036
|
clear_flag(this, INLINED);
|
|
23969
|
-
|
|
23970
24037
|
push(tw);
|
|
23971
|
-
|
|
23972
24038
|
reset_variables(tw, compressor, this);
|
|
23973
24039
|
|
|
23974
24040
|
var iife;
|
|
@@ -24003,9 +24069,86 @@ function mark_lambda(tw, descend, compressor) {
|
|
|
24003
24069
|
descend();
|
|
24004
24070
|
pop(tw);
|
|
24005
24071
|
|
|
24072
|
+
handle_defined_after_hoist(this);
|
|
24073
|
+
|
|
24006
24074
|
return true;
|
|
24007
24075
|
}
|
|
24008
24076
|
|
|
24077
|
+
/**
|
|
24078
|
+
* It's possible for a hoisted function to use something that's not defined yet. Example:
|
|
24079
|
+
*
|
|
24080
|
+
* hoisted();
|
|
24081
|
+
* var defined_after = true;
|
|
24082
|
+
* function hoisted() {
|
|
24083
|
+
* // use defined_after
|
|
24084
|
+
* }
|
|
24085
|
+
*
|
|
24086
|
+
* This function is called on the parent to handle this issue.
|
|
24087
|
+
*/
|
|
24088
|
+
function handle_defined_after_hoist(parent) {
|
|
24089
|
+
const defuns = [];
|
|
24090
|
+
ast_walk(parent, node => {
|
|
24091
|
+
if (node === parent) return;
|
|
24092
|
+
if (node instanceof AST_Defun) defuns.push(node);
|
|
24093
|
+
if (
|
|
24094
|
+
node instanceof AST_Scope
|
|
24095
|
+
|| node instanceof AST_SimpleStatement
|
|
24096
|
+
) return true;
|
|
24097
|
+
});
|
|
24098
|
+
|
|
24099
|
+
for (const defun of defuns) {
|
|
24100
|
+
const fname_def = defun.name.definition();
|
|
24101
|
+
const found_self_ref_in_other_defuns = defuns.some(
|
|
24102
|
+
d => d !== defun && d.enclosed.indexOf(fname_def) !== -1
|
|
24103
|
+
);
|
|
24104
|
+
|
|
24105
|
+
for (const def of defun.enclosed) {
|
|
24106
|
+
if (
|
|
24107
|
+
def.fixed === false
|
|
24108
|
+
|| def === fname_def
|
|
24109
|
+
|| def.scope.get_defun_scope() !== parent
|
|
24110
|
+
) {
|
|
24111
|
+
continue;
|
|
24112
|
+
}
|
|
24113
|
+
|
|
24114
|
+
// defun is hoisted, so always safe
|
|
24115
|
+
if (
|
|
24116
|
+
def.assignments === 0
|
|
24117
|
+
&& def.orig.length === 1
|
|
24118
|
+
&& def.orig[0] instanceof AST_SymbolDefun
|
|
24119
|
+
) {
|
|
24120
|
+
continue;
|
|
24121
|
+
}
|
|
24122
|
+
|
|
24123
|
+
if (found_self_ref_in_other_defuns) {
|
|
24124
|
+
def.fixed = false;
|
|
24125
|
+
continue;
|
|
24126
|
+
}
|
|
24127
|
+
|
|
24128
|
+
// Detect `call_defun(); var used_in_defun = ...`
|
|
24129
|
+
// Because `used_in_defun` can no longer be fixed
|
|
24130
|
+
let found_defun = false;
|
|
24131
|
+
let found_def_after_defun = false;
|
|
24132
|
+
ast_walk(parent, node => {
|
|
24133
|
+
if (node === defun) return true;
|
|
24134
|
+
|
|
24135
|
+
if (node instanceof ast_AST_Symbol) {
|
|
24136
|
+
if (!found_defun && node.thedef === fname_def) {
|
|
24137
|
+
found_defun = true;
|
|
24138
|
+
} else if (found_defun && node.thedef === def) {
|
|
24139
|
+
found_def_after_defun = true;
|
|
24140
|
+
return walk_abort;
|
|
24141
|
+
}
|
|
24142
|
+
}
|
|
24143
|
+
});
|
|
24144
|
+
|
|
24145
|
+
if (found_def_after_defun) {
|
|
24146
|
+
def.fixed = false;
|
|
24147
|
+
}
|
|
24148
|
+
}
|
|
24149
|
+
}
|
|
24150
|
+
}
|
|
24151
|
+
|
|
24009
24152
|
def_reduce_vars(AST_Lambda, mark_lambda);
|
|
24010
24153
|
|
|
24011
24154
|
def_reduce_vars(AST_Do, function(tw, descend, compressor) {
|
|
@@ -24126,6 +24269,9 @@ def_reduce_vars(AST_Toplevel, function(tw, descend, compressor) {
|
|
|
24126
24269
|
reset_def(compressor, def);
|
|
24127
24270
|
});
|
|
24128
24271
|
reset_variables(tw, compressor, this);
|
|
24272
|
+
descend();
|
|
24273
|
+
handle_defined_after_hoist(this);
|
|
24274
|
+
return true;
|
|
24129
24275
|
});
|
|
24130
24276
|
|
|
24131
24277
|
def_reduce_vars(AST_Try, function(tw, descend, compressor) {
|
|
@@ -24281,12 +24427,31 @@ function is_lhs_read_only(lhs) {
|
|
|
24281
24427
|
return false;
|
|
24282
24428
|
}
|
|
24283
24429
|
|
|
24284
|
-
|
|
24430
|
+
/** var a = 1 --> var a*/
|
|
24431
|
+
function remove_initializers(var_statement) {
|
|
24432
|
+
var decls = [];
|
|
24433
|
+
var_statement.definitions.forEach(function(def) {
|
|
24434
|
+
if (def.name instanceof AST_SymbolDeclaration) {
|
|
24435
|
+
def.value = null;
|
|
24436
|
+
decls.push(def);
|
|
24437
|
+
} else {
|
|
24438
|
+
def.declarations_as_names().forEach(name => {
|
|
24439
|
+
decls.push(make_node(AST_VarDef, def, {
|
|
24440
|
+
name,
|
|
24441
|
+
value: null
|
|
24442
|
+
}));
|
|
24443
|
+
});
|
|
24444
|
+
}
|
|
24445
|
+
});
|
|
24446
|
+
return decls.length ? make_node(AST_Var, var_statement, { definitions: decls }) : null;
|
|
24447
|
+
}
|
|
24448
|
+
|
|
24449
|
+
/** Called on code which we know is unreachable, to keep elements that affect outside of it. */
|
|
24285
24450
|
function trim_unreachable_code(compressor, stat, target) {
|
|
24286
24451
|
ast_walk(stat, node => {
|
|
24287
24452
|
if (node instanceof AST_Var) {
|
|
24288
|
-
|
|
24289
|
-
target.push(
|
|
24453
|
+
const no_initializers = remove_initializers(node);
|
|
24454
|
+
if (no_initializers) target.push(no_initializers);
|
|
24290
24455
|
return true;
|
|
24291
24456
|
}
|
|
24292
24457
|
if (
|
|
@@ -26247,6 +26412,7 @@ class Compressor extends TreeWalker {
|
|
|
26247
26412
|
keep_fargs : true,
|
|
26248
26413
|
keep_fnames : false,
|
|
26249
26414
|
keep_infinity : false,
|
|
26415
|
+
lhs_constants : !false_by_default,
|
|
26250
26416
|
loops : !false_by_default,
|
|
26251
26417
|
module : false,
|
|
26252
26418
|
negate_iife : !false_by_default,
|
|
@@ -26541,7 +26707,7 @@ AST_Toplevel.DEFMETHOD("reset_opt_flags", function(compressor) {
|
|
|
26541
26707
|
}
|
|
26542
26708
|
return node.reduce_vars(preparation, descend, compressor);
|
|
26543
26709
|
}
|
|
26544
|
-
}
|
|
26710
|
+
});
|
|
26545
26711
|
// Stack of look-up tables to keep track of whether a `SymbolDef` has been
|
|
26546
26712
|
// properly assigned before use:
|
|
26547
26713
|
// - `push()` & `pop()` when visiting conditional branches
|
|
@@ -27546,26 +27712,6 @@ def_optimize(AST_Try, function(self, compressor) {
|
|
|
27546
27712
|
return self;
|
|
27547
27713
|
});
|
|
27548
27714
|
|
|
27549
|
-
AST_Definitions.DEFMETHOD("remove_initializers", function() {
|
|
27550
|
-
var decls = [];
|
|
27551
|
-
this.definitions.forEach(function(def) {
|
|
27552
|
-
if (def.name instanceof AST_SymbolDeclaration) {
|
|
27553
|
-
def.value = null;
|
|
27554
|
-
decls.push(def);
|
|
27555
|
-
} else {
|
|
27556
|
-
ast_walk(def.name, node => {
|
|
27557
|
-
if (node instanceof AST_SymbolDeclaration) {
|
|
27558
|
-
decls.push(make_node(AST_VarDef, def, {
|
|
27559
|
-
name: node,
|
|
27560
|
-
value: null
|
|
27561
|
-
}));
|
|
27562
|
-
}
|
|
27563
|
-
});
|
|
27564
|
-
}
|
|
27565
|
-
});
|
|
27566
|
-
this.definitions = decls;
|
|
27567
|
-
});
|
|
27568
|
-
|
|
27569
27715
|
AST_Definitions.DEFMETHOD("to_assignments", function(compressor) {
|
|
27570
27716
|
var reduce_vars = compressor.option("reduce_vars");
|
|
27571
27717
|
var assignments = [];
|
|
@@ -28133,7 +28279,7 @@ def_optimize(AST_Binary, function(self, compressor) {
|
|
|
28133
28279
|
self.right = tmp;
|
|
28134
28280
|
}
|
|
28135
28281
|
}
|
|
28136
|
-
if (commutativeOperators.has(self.operator)) {
|
|
28282
|
+
if (compressor.option("lhs_constants") && commutativeOperators.has(self.operator)) {
|
|
28137
28283
|
if (self.right.is_constant()
|
|
28138
28284
|
&& !self.left.is_constant()) {
|
|
28139
28285
|
// if right is a constant, whatever side effects the
|
|
@@ -28163,6 +28309,9 @@ def_optimize(AST_Binary, function(self, compressor) {
|
|
|
28163
28309
|
// void 0 == x => null == x
|
|
28164
28310
|
if (!is_strict_comparison && is_undefined(self.left, compressor)) {
|
|
28165
28311
|
self.left = make_node(AST_Null, self.left);
|
|
28312
|
+
// x == void 0 => x == null
|
|
28313
|
+
} else if (!is_strict_comparison && is_undefined(self.right, compressor)) {
|
|
28314
|
+
self.right = make_node(AST_Null, self.right);
|
|
28166
28315
|
} else if (compressor.option("typeofs")
|
|
28167
28316
|
// "undefined" == typeof x => undefined === x
|
|
28168
28317
|
&& self.left instanceof AST_String
|
|
@@ -28176,6 +28325,19 @@ def_optimize(AST_Binary, function(self, compressor) {
|
|
|
28176
28325
|
self.left = make_node(AST_Undefined, self.left).optimize(compressor);
|
|
28177
28326
|
if (self.operator.length == 2) self.operator += "=";
|
|
28178
28327
|
}
|
|
28328
|
+
} else if (compressor.option("typeofs")
|
|
28329
|
+
// typeof x === "undefined" => x === undefined
|
|
28330
|
+
&& self.left instanceof AST_UnaryPrefix
|
|
28331
|
+
&& self.left.operator == "typeof"
|
|
28332
|
+
&& self.right instanceof AST_String
|
|
28333
|
+
&& self.right.value == "undefined") {
|
|
28334
|
+
var expr = self.left.expression;
|
|
28335
|
+
if (expr instanceof AST_SymbolRef ? expr.is_declared(compressor)
|
|
28336
|
+
: !(expr instanceof ast_AST_PropAccess && compressor.option("ie8"))) {
|
|
28337
|
+
self.left = expr;
|
|
28338
|
+
self.right = make_node(AST_Undefined, self.right).optimize(compressor);
|
|
28339
|
+
if (self.operator.length == 2) self.operator += "=";
|
|
28340
|
+
}
|
|
28179
28341
|
} else if (self.left instanceof AST_SymbolRef
|
|
28180
28342
|
// obj !== obj => false
|
|
28181
28343
|
&& self.right instanceof AST_SymbolRef
|
|
@@ -28767,13 +28929,20 @@ def_optimize(AST_DefaultAssign, function(self, compressor) {
|
|
|
28767
28929
|
|
|
28768
28930
|
// `[x = undefined] = foo` ---> `[x] = foo`
|
|
28769
28931
|
// `(arg = undefined) => ...` ---> `(arg) => ...` (unless `keep_fargs`)
|
|
28770
|
-
|
|
28771
|
-
|
|
28772
|
-
|
|
28773
|
-
|
|
28774
|
-
|
|
28775
|
-
|
|
28776
|
-
|
|
28932
|
+
// `((arg = undefined) => ...)()` ---> `((arg) => ...)()`
|
|
28933
|
+
let lambda, iife;
|
|
28934
|
+
if (evaluateRight === undefined) {
|
|
28935
|
+
if (
|
|
28936
|
+
(lambda = compressor.parent()) instanceof AST_Lambda
|
|
28937
|
+
? (
|
|
28938
|
+
compressor.option("keep_fargs") === false
|
|
28939
|
+
|| (iife = compressor.parent(1)).TYPE === "Call"
|
|
28940
|
+
&& iife.expression === lambda
|
|
28941
|
+
)
|
|
28942
|
+
: true
|
|
28943
|
+
) {
|
|
28944
|
+
self = self.left;
|
|
28945
|
+
}
|
|
28777
28946
|
} else if (evaluateRight !== self.right) {
|
|
28778
28947
|
evaluateRight = make_node_from_constant(evaluateRight, self.right);
|
|
28779
28948
|
self.right = best_of_expression(evaluateRight, self.right);
|
|
@@ -38878,6 +39047,8 @@ function mangle_properties(ast, options) {
|
|
|
38878
39047
|
addStrings(node.args[1], add);
|
|
38879
39048
|
} else if (node instanceof AST_Binary && node.operator === "in") {
|
|
38880
39049
|
addStrings(node.left, add);
|
|
39050
|
+
} else if (node instanceof AST_String && has_annotation(node, _KEY)) {
|
|
39051
|
+
add(node.value);
|
|
38881
39052
|
}
|
|
38882
39053
|
}));
|
|
38883
39054
|
|
|
@@ -38911,6 +39082,10 @@ function mangle_properties(ast, options) {
|
|
|
38911
39082
|
node.args[1] = mangleStrings(node.args[1]);
|
|
38912
39083
|
} else if (node instanceof AST_Binary && node.operator === "in") {
|
|
38913
39084
|
node.left = mangleStrings(node.left);
|
|
39085
|
+
} else if (node instanceof AST_String && has_annotation(node, _KEY)) {
|
|
39086
|
+
// Clear _KEY annotation to prevent double mangling
|
|
39087
|
+
clear_annotation(node, _KEY);
|
|
39088
|
+
node.value = mangle(node.value);
|
|
38914
39089
|
}
|
|
38915
39090
|
}));
|
|
38916
39091
|
|
|
@@ -38976,6 +39151,8 @@ function mangle_properties(ast, options) {
|
|
|
38976
39151
|
var last = node.expressions.length - 1;
|
|
38977
39152
|
node.expressions[last] = mangleStrings(node.expressions[last]);
|
|
38978
39153
|
} else if (node instanceof AST_String) {
|
|
39154
|
+
// Clear _KEY annotation to prevent double mangling
|
|
39155
|
+
clear_annotation(node, _KEY);
|
|
38979
39156
|
node.value = mangle(node.value);
|
|
38980
39157
|
} else if (node instanceof AST_Conditional) {
|
|
38981
39158
|
node.consequent = mangleStrings(node.consequent);
|
|
@@ -40118,8 +40295,8 @@ const exports = {
|
|
|
40118
40295
|
|
|
40119
40296
|
const $init = (async() => {
|
|
40120
40297
|
const module0 = fetchCompile(__nccwpck_require__.ab + "js-component-bindgen-component.core.wasm");
|
|
40121
|
-
const module1 = base64Compile('AGFzbQEAAAABBgFgAn9/
|
|
40122
|
-
const module2 = base64Compile('AGFzbQEAAAABBgFgAn9/
|
|
40298
|
+
const module1 = base64Compile('AGFzbQEAAAABBgFgAn9/AAMCAQAEBQFwAQEBBxACATAAAAgkaW1wb3J0cwEACg0BCwAgACABQQARAAALAC0JcHJvZHVjZXJzAQxwcm9jZXNzZWQtYnkBDXdpdC1jb21wb25lbnQFMC44LjEANQRuYW1lABMSd2l0LWNvbXBvbmVudDpzaGltARkBABZpbmRpcmVjdC1jb25zb2xlLWVycm9y');
|
|
40299
|
+
const module2 = base64Compile('AGFzbQEAAAABBgFgAn9/AAIVAgABMAAAAAgkaW1wb3J0cwFwAQEBCQcBAEEACwEAAC0JcHJvZHVjZXJzAQxwcm9jZXNzZWQtYnkBDXdpdC1jb21wb25lbnQFMC44LjEAHARuYW1lABUUd2l0LWNvbXBvbmVudDpmaXh1cHM=');
|
|
40123
40300
|
Promise.all([module0, module1, module2]).catch(() => {});
|
|
40124
40301
|
({ exports: exports0 } = await instantiateCore(await module1));
|
|
40125
40302
|
({ exports: exports1 } = await instantiateCore(await module0, {
|
|
@@ -40805,8 +40982,8 @@ const exports = {
|
|
|
40805
40982
|
|
|
40806
40983
|
const $init = (async() => {
|
|
40807
40984
|
const module0 = fetchCompile(__nccwpck_require__.ab + "wasm-tools.core.wasm");
|
|
40808
|
-
const module1 = base64Compile('AGFzbQEAAAABBgFgAn9/
|
|
40809
|
-
const module2 = base64Compile('AGFzbQEAAAABBgFgAn9/
|
|
40985
|
+
const module1 = base64Compile('AGFzbQEAAAABBgFgAn9/AAMCAQAEBQFwAQEBBxACATAAAAgkaW1wb3J0cwEACg0BCwAgACABQQARAAALAC0JcHJvZHVjZXJzAQxwcm9jZXNzZWQtYnkBDXdpdC1jb21wb25lbnQFMC44LjEANQRuYW1lABMSd2l0LWNvbXBvbmVudDpzaGltARkBABZpbmRpcmVjdC1jb25zb2xlLWVycm9y');
|
|
40986
|
+
const module2 = base64Compile('AGFzbQEAAAABBgFgAn9/AAIVAgABMAAAAAgkaW1wb3J0cwFwAQEBCQcBAEEACwEAAC0JcHJvZHVjZXJzAQxwcm9jZXNzZWQtYnkBDXdpdC1jb21wb25lbnQFMC44LjEAHARuYW1lABUUd2l0LWNvbXBvbmVudDpmaXh1cHM=');
|
|
40810
40987
|
Promise.all([module0, module1, module2]).catch(() => {});
|
|
40811
40988
|
({ exports: exports0 } = await instantiateCore(await module1));
|
|
40812
40989
|
({ exports: exports1 } = await instantiateCore(await module0, {
|
|
@@ -41585,7 +41762,7 @@ async function spawnIOTmp (cmd, input, args) {
|
|
|
41585
41762
|
/***/ 6374:
|
|
41586
41763
|
/***/ ((module) => {
|
|
41587
41764
|
|
|
41588
|
-
module.exports = JSON.parse('{"dots":{"interval":80,"frames":["⠋","⠙","⠹","⠸","⠼","⠴","⠦","⠧","⠇","⠏"]},"dots2":{"interval":80,"frames":["⣾","⣽","⣻","⢿","⡿","⣟","⣯","⣷"]},"dots3":{"interval":80,"frames":["⠋","⠙","⠚","⠞","⠖","⠦","⠴","⠲","⠳","⠓"]},"dots4":{"interval":80,"frames":["⠄","⠆","⠇","⠋","⠙","⠸","⠰","⠠","⠰","⠸","⠙","⠋","⠇","⠆"]},"dots5":{"interval":80,"frames":["⠋","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋"]},"dots6":{"interval":80,"frames":["⠁","⠉","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠤","⠄","⠄","⠤","⠴","⠲","⠒","⠂","⠂","⠒","⠚","⠙","⠉","⠁"]},"dots7":{"interval":80,"frames":["⠈","⠉","⠋","⠓","⠒","⠐","⠐","⠒","⠖","⠦","⠤","⠠","⠠","⠤","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋","⠉","⠈"]},"dots8":{"interval":80,"frames":["⠁","⠁","⠉","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠤","⠄","⠄","⠤","⠠","⠠","⠤","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋","⠉","⠈","⠈"]},"dots9":{"interval":80,"frames":["⢹","⢺","⢼","⣸","⣇","⡧","⡗","⡏"]},"dots10":{"interval":80,"frames":["⢄","⢂","⢁","⡁","⡈","⡐","⡠"]},"dots11":{"interval":100,"frames":["⠁","⠂","⠄","⡀","⢀","⠠","⠐","⠈"]},"dots12":{"interval":80,"frames":["⢀⠀","⡀⠀","⠄⠀","⢂⠀","⡂⠀","⠅⠀","⢃⠀","⡃⠀","⠍⠀","⢋⠀","⡋⠀","⠍⠁","⢋⠁","⡋⠁","⠍⠉","⠋⠉","⠋⠉","⠉⠙","⠉⠙","⠉⠩","⠈⢙","⠈⡙","⢈⠩","⡀⢙","⠄⡙","⢂⠩","⡂⢘","⠅⡘","⢃⠨","⡃⢐","⠍⡐","⢋⠠","⡋⢀","⠍⡁","⢋⠁","⡋⠁","⠍⠉","⠋⠉","⠋⠉","⠉⠙","⠉⠙","⠉⠩","⠈⢙","⠈⡙","⠈⠩","⠀⢙","⠀⡙","⠀⠩","⠀⢘","⠀⡘","⠀⠨","⠀⢐","⠀⡐","⠀⠠","⠀⢀","⠀⡀"]},"dots13":{"interval":80,"frames":["⣼","⣹","⢻","⠿","⡟","⣏","⣧","⣶"]},"dots8Bit":{"interval":80,"frames":["⠀","⠁","⠂","⠃","⠄","⠅","⠆","⠇","⡀","⡁","⡂","⡃","⡄","⡅","⡆","⡇","⠈","⠉","⠊","⠋","⠌","⠍","⠎","⠏","⡈","⡉","⡊","⡋","⡌","⡍","⡎","⡏","⠐","⠑","⠒","⠓","⠔","⠕","⠖","⠗","⡐","⡑","⡒","⡓","⡔","⡕","⡖","⡗","⠘","⠙","⠚","⠛","⠜","⠝","⠞","⠟","⡘","⡙","⡚","⡛","⡜","⡝","⡞","⡟","⠠","⠡","⠢","⠣","⠤","⠥","⠦","⠧","⡠","⡡","⡢","⡣","⡤","⡥","⡦","⡧","⠨","⠩","⠪","⠫","⠬","⠭","⠮","⠯","⡨","⡩","⡪","⡫","⡬","⡭","⡮","⡯","⠰","⠱","⠲","⠳","⠴","⠵","⠶","⠷","⡰","⡱","⡲","⡳","⡴","⡵","⡶","⡷","⠸","⠹","⠺","⠻","⠼","⠽","⠾","⠿","⡸","⡹","⡺","⡻","⡼","⡽","⡾","⡿","⢀","⢁","⢂","⢃","⢄","⢅","⢆","⢇","⣀","⣁","⣂","⣃","⣄","⣅","⣆","⣇","⢈","⢉","⢊","⢋","⢌","⢍","⢎","⢏","⣈","⣉","⣊","⣋","⣌","⣍","⣎","⣏","⢐","⢑","⢒","⢓","⢔","⢕","⢖","⢗","⣐","⣑","⣒","⣓","⣔","⣕","⣖","⣗","⢘","⢙","⢚","⢛","⢜","⢝","⢞","⢟","⣘","⣙","⣚","⣛","⣜","⣝","⣞","⣟","⢠","⢡","⢢","⢣","⢤","⢥","⢦","⢧","⣠","⣡","⣢","⣣","⣤","⣥","⣦","⣧","⢨","⢩","⢪","⢫","⢬","⢭","⢮","⢯","⣨","⣩","⣪","⣫","⣬","⣭","⣮","⣯","⢰","⢱","⢲","⢳","⢴","⢵","⢶","⢷","⣰","⣱","⣲","⣳","⣴","⣵","⣶","⣷","⢸","⢹","⢺","⢻","⢼","⢽","⢾","⢿","⣸","⣹","⣺","⣻","⣼","⣽","⣾","⣿"]},"sand":{"interval":80,"frames":["⠁","⠂","⠄","⡀","⡈","⡐","⡠","⣀","⣁","⣂","⣄","⣌","⣔","⣤","⣥","⣦","⣮","⣶","⣷","⣿","⡿","⠿","⢟","⠟","⡛","⠛","⠫","⢋","⠋","⠍","⡉","⠉","⠑","⠡","⢁"]},"line":{"interval":130,"frames":["-","\\\\","|","/"]},"line2":{"interval":100,"frames":["⠂","-","–","—","–","-"]},"pipe":{"interval":100,"frames":["┤","┘","┴","└","├","┌","┬","┐"]},"simpleDots":{"interval":400,"frames":[". ",".. ","..."," "]},"simpleDotsScrolling":{"interval":200,"frames":[". ",".. ","..."," .."," ."," "]},"star":{"interval":70,"frames":["✶","✸","✹","✺","✹","✷"]},"star2":{"interval":80,"frames":["+","x","*"]},"flip":{"interval":70,"frames":["_","_","_","-","`","`","\'","´","-","_","_","_"]},"hamburger":{"interval":100,"frames":["☱","☲","☴"]},"growVertical":{"interval":120,"frames":["▁","▃","▄","▅","▆","▇","▆","▅","▄","▃"]},"growHorizontal":{"interval":120,"frames":["▏","▎","▍","▌","▋","▊","▉","▊","▋","▌","▍","▎"]},"balloon":{"interval":140,"frames":[" ",".","o","O","@","*"," "]},"balloon2":{"interval":120,"frames":[".","o","O","°","O","o","."]},"noise":{"interval":100,"frames":["▓","▒","░"]},"bounce":{"interval":120,"frames":["⠁","⠂","⠄","⠂"]},"boxBounce":{"interval":120,"frames":["▖","▘","▝","▗"]},"boxBounce2":{"interval":100,"frames":["▌","▀","▐","▄"]},"triangle":{"interval":50,"frames":["◢","◣","◤","◥"]},"arc":{"interval":100,"frames":["◜","◠","◝","◞","◡","◟"]},"circle":{"interval":120,"frames":["◡","⊙","◠"]},"squareCorners":{"interval":180,"frames":["◰","◳","◲","◱"]},"circleQuarters":{"interval":120,"frames":["◴","◷","◶","◵"]},"circleHalves":{"interval":50,"frames":["◐","◓","◑","◒"]},"squish":{"interval":100,"frames":["╫","╪"]},"toggle":{"interval":250,"frames":["⊶","⊷"]},"toggle2":{"interval":80,"frames":["▫","▪"]},"toggle3":{"interval":120,"frames":["□","■"]},"toggle4":{"interval":100,"frames":["■","□","▪","▫"]},"toggle5":{"interval":100,"frames":["▮","▯"]},"toggle6":{"interval":300,"frames":["ဝ","၀"]},"toggle7":{"interval":80,"frames":["⦾","⦿"]},"toggle8":{"interval":100,"frames":["◍","◌"]},"toggle9":{"interval":100,"frames":["◉","◎"]},"toggle10":{"interval":100,"frames":["㊂","㊀","㊁"]},"toggle11":{"interval":50,"frames":["⧇","⧆"]},"toggle12":{"interval":120,"frames":["☗","☖"]},"toggle13":{"interval":80,"frames":["=","*","-"]},"arrow":{"interval":100,"frames":["←","↖","↑","↗","→","↘","↓","↙"]},"arrow2":{"interval":80,"frames":["⬆️ ","↗️ ","➡️ ","↘️ ","⬇️ ","↙️ ","⬅️ ","↖️ "]},"arrow3":{"interval":120,"frames":["▹▹▹▹▹","▸▹▹▹▹","▹▸▹▹▹","▹▹▸▹▹","▹▹▹▸▹","▹▹▹▹▸"]},"bouncingBar":{"interval":80,"frames":["[ ]","[= ]","[== ]","[=== ]","[ ===]","[ ==]","[ =]","[ ]","[ =]","[ ==]","[ ===]","[====]","[=== ]","[== ]","[= ]"]},"bouncingBall":{"interval":80,"frames":["( ● )","( ● )","( ● )","( ● )","( ●)","( ● )","( ● )","( ● )","( ● )","(● )"]},"smiley":{"interval":200,"frames":["😄 ","😝 "]},"monkey":{"interval":300,"frames":["🙈 ","🙈 ","🙉 ","🙊 "]},"hearts":{"interval":100,"frames":["💛 ","💙 ","💜 ","💚 ","❤️ "]},"clock":{"interval":100,"frames":["🕛 ","🕐 ","🕑 ","🕒 ","🕓 ","🕔 ","🕕 ","🕖 ","🕗 ","🕘 ","🕙 ","🕚 "]},"earth":{"interval":180,"frames":["🌍 ","🌎 ","🌏 "]},"material":{"interval":17,"frames":["█▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","███▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","████▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","██████▁▁▁▁▁▁▁▁▁▁▁▁▁▁","██████▁▁▁▁▁▁▁▁▁▁▁▁▁▁","███████▁▁▁▁▁▁▁▁▁▁▁▁▁","████████▁▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","██████████▁▁▁▁▁▁▁▁▁▁","███████████▁▁▁▁▁▁▁▁▁","█████████████▁▁▁▁▁▁▁","██████████████▁▁▁▁▁▁","██████████████▁▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁▁██████████████▁▁▁▁","▁▁▁██████████████▁▁▁","▁▁▁▁█████████████▁▁▁","▁▁▁▁██████████████▁▁","▁▁▁▁██████████████▁▁","▁▁▁▁▁██████████████▁","▁▁▁▁▁██████████████▁","▁▁▁▁▁██████████████▁","▁▁▁▁▁▁██████████████","▁▁▁▁▁▁██████████████","▁▁▁▁▁▁▁█████████████","▁▁▁▁▁▁▁█████████████","▁▁▁▁▁▁▁▁████████████","▁▁▁▁▁▁▁▁████████████","▁▁▁▁▁▁▁▁▁███████████","▁▁▁▁▁▁▁▁▁███████████","▁▁▁▁▁▁▁▁▁▁██████████","▁▁▁▁▁▁▁▁▁▁██████████","▁▁▁▁▁▁▁▁▁▁▁▁████████","▁▁▁▁▁▁▁▁▁▁▁▁▁███████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁██████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████","█▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████","██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","███▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","████▁▁▁▁▁▁▁▁▁▁▁▁▁▁██","█████▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","█████▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","██████▁▁▁▁▁▁▁▁▁▁▁▁▁█","████████▁▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","███████████▁▁▁▁▁▁▁▁▁","████████████▁▁▁▁▁▁▁▁","████████████▁▁▁▁▁▁▁▁","██████████████▁▁▁▁▁▁","██████████████▁▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁▁▁█████████████▁▁▁▁","▁▁▁▁▁████████████▁▁▁","▁▁▁▁▁████████████▁▁▁","▁▁▁▁▁▁███████████▁▁▁","▁▁▁▁▁▁▁▁█████████▁▁▁","▁▁▁▁▁▁▁▁█████████▁▁▁","▁▁▁▁▁▁▁▁▁█████████▁▁","▁▁▁▁▁▁▁▁▁█████████▁▁","▁▁▁▁▁▁▁▁▁▁█████████▁","▁▁▁▁▁▁▁▁▁▁▁████████▁","▁▁▁▁▁▁▁▁▁▁▁████████▁","▁▁▁▁▁▁▁▁▁▁▁▁███████▁","▁▁▁▁▁▁▁▁▁▁▁▁███████▁","▁▁▁▁▁▁▁▁▁▁▁▁▁███████","▁▁▁▁▁▁▁▁▁▁▁▁▁███████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁"]},"moon":{"interval":80,"frames":["🌑 ","🌒 ","🌓 ","🌔 ","🌕 ","🌖 ","🌗 ","🌘 "]},"runner":{"interval":140,"frames":["🚶 ","🏃 "]},"pong":{"interval":80,"frames":["▐⠂ ▌","▐⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂▌","▐ ⠠▌","▐ ⡀▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐⠠ ▌"]},"shark":{"interval":120,"frames":["▐|\\\\____________▌","▐_|\\\\___________▌","▐__|\\\\__________▌","▐___|\\\\_________▌","▐____|\\\\________▌","▐_____|\\\\_______▌","▐______|\\\\______▌","▐_______|\\\\_____▌","▐________|\\\\____▌","▐_________|\\\\___▌","▐__________|\\\\__▌","▐___________|\\\\_▌","▐____________|\\\\▌","▐____________/|▌","▐___________/|_▌","▐__________/|__▌","▐_________/|___▌","▐________/|____▌","▐_______/|_____▌","▐______/|______▌","▐_____/|_______▌","▐____/|________▌","▐___/|_________▌","▐__/|__________▌","▐_/|___________▌","▐/|____________▌"]},"dqpb":{"interval":100,"frames":["d","q","p","b"]},"weather":{"interval":100,"frames":["☀️ ","☀️ ","☀️ ","🌤 ","⛅️ ","🌥 ","☁️ ","🌧 ","🌨 ","🌧 ","🌨 ","🌧 ","🌨 ","⛈ ","🌨 ","🌧 ","🌨 ","☁️ ","🌥 ","⛅️ ","🌤 ","☀️ ","☀️ "]},"christmas":{"interval":400,"frames":["🌲","🎄"]},"grenade":{"interval":80,"frames":["، ","′ "," ´ "," ‾ "," ⸌"," ⸊"," |"," ⁎"," ⁕"," ෴ "," ⁓"," "," "," "]},"point":{"interval":125,"frames":["∙∙∙","●∙∙","∙●∙","∙∙●","∙∙∙"]},"layer":{"interval":150,"frames":["-","=","≡"]},"betaWave":{"interval":80,"frames":["ρββββββ","βρβββββ","ββρββββ","βββρβββ","ββββρββ","βββββρβ","ββββββρ"]},"fingerDance":{"interval":160,"frames":["🤘 ","🤟 ","🖖 ","✋ ","🤚 ","👆 "]},"fistBump":{"interval":80,"frames":["🤜 🤛 ","🤜 🤛 ","🤜 🤛 "," 🤜 🤛 "," 🤜🤛 "," 🤜✨🤛 ","🤜 ✨ 🤛 "]},"soccerHeader":{"interval":80,"frames":[" 🧑⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 "]},"mindblown":{"interval":160,"frames":["😐 ","😐 ","😮 ","😮 ","😦 ","😦 ","😧 ","😧 ","🤯 ","💥 ","✨ "," "," "," "]},"speaker":{"interval":160,"frames":["🔈 ","🔉 ","🔊 ","🔉 "]},"orangePulse":{"interval":100,"frames":["🔸 ","🔶 ","🟠 ","🟠 ","🔶 "]},"bluePulse":{"interval":100,"frames":["🔹 ","🔷 ","🔵 ","🔵 ","🔷 "]},"orangeBluePulse":{"interval":100,"frames":["🔸 ","🔶 ","🟠 ","🟠 ","🔶 ","🔹 ","🔷 ","🔵 ","🔵 ","🔷 "]},"timeTravel":{"interval":100,"frames":["🕛 ","🕚 ","🕙 ","🕘 ","🕗 ","🕖 ","🕕 ","🕔 ","🕓 ","🕒 ","🕑 ","🕐 "]},"aesthetic":{"interval":80,"frames":["▰▱▱▱▱▱▱","▰▰▱▱▱▱▱","▰▰▰▱▱▱▱","▰▰▰▰▱▱▱","▰▰▰▰▰▱▱","▰▰▰▰▰▰▱","▰▰▰▰▰▰▰","▰▱▱▱▱▱▱"]}}');
|
|
41765
|
+
module.exports = JSON.parse('{"dots":{"interval":80,"frames":["⠋","⠙","⠹","⠸","⠼","⠴","⠦","⠧","⠇","⠏"]},"dots2":{"interval":80,"frames":["⣾","⣽","⣻","⢿","⡿","⣟","⣯","⣷"]},"dots3":{"interval":80,"frames":["⠋","⠙","⠚","⠞","⠖","⠦","⠴","⠲","⠳","⠓"]},"dots4":{"interval":80,"frames":["⠄","⠆","⠇","⠋","⠙","⠸","⠰","⠠","⠰","⠸","⠙","⠋","⠇","⠆"]},"dots5":{"interval":80,"frames":["⠋","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋"]},"dots6":{"interval":80,"frames":["⠁","⠉","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠤","⠄","⠄","⠤","⠴","⠲","⠒","⠂","⠂","⠒","⠚","⠙","⠉","⠁"]},"dots7":{"interval":80,"frames":["⠈","⠉","⠋","⠓","⠒","⠐","⠐","⠒","⠖","⠦","⠤","⠠","⠠","⠤","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋","⠉","⠈"]},"dots8":{"interval":80,"frames":["⠁","⠁","⠉","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠤","⠄","⠄","⠤","⠠","⠠","⠤","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋","⠉","⠈","⠈"]},"dots9":{"interval":80,"frames":["⢹","⢺","⢼","⣸","⣇","⡧","⡗","⡏"]},"dots10":{"interval":80,"frames":["⢄","⢂","⢁","⡁","⡈","⡐","⡠"]},"dots11":{"interval":100,"frames":["⠁","⠂","⠄","⡀","⢀","⠠","⠐","⠈"]},"dots12":{"interval":80,"frames":["⢀⠀","⡀⠀","⠄⠀","⢂⠀","⡂⠀","⠅⠀","⢃⠀","⡃⠀","⠍⠀","⢋⠀","⡋⠀","⠍⠁","⢋⠁","⡋⠁","⠍⠉","⠋⠉","⠋⠉","⠉⠙","⠉⠙","⠉⠩","⠈⢙","⠈⡙","⢈⠩","⡀⢙","⠄⡙","⢂⠩","⡂⢘","⠅⡘","⢃⠨","⡃⢐","⠍⡐","⢋⠠","⡋⢀","⠍⡁","⢋⠁","⡋⠁","⠍⠉","⠋⠉","⠋⠉","⠉⠙","⠉⠙","⠉⠩","⠈⢙","⠈⡙","⠈⠩","⠀⢙","⠀⡙","⠀⠩","⠀⢘","⠀⡘","⠀⠨","⠀⢐","⠀⡐","⠀⠠","⠀⢀","⠀⡀"]},"dots13":{"interval":80,"frames":["⣼","⣹","⢻","⠿","⡟","⣏","⣧","⣶"]},"dots8Bit":{"interval":80,"frames":["⠀","⠁","⠂","⠃","⠄","⠅","⠆","⠇","⡀","⡁","⡂","⡃","⡄","⡅","⡆","⡇","⠈","⠉","⠊","⠋","⠌","⠍","⠎","⠏","⡈","⡉","⡊","⡋","⡌","⡍","⡎","⡏","⠐","⠑","⠒","⠓","⠔","⠕","⠖","⠗","⡐","⡑","⡒","⡓","⡔","⡕","⡖","⡗","⠘","⠙","⠚","⠛","⠜","⠝","⠞","⠟","⡘","⡙","⡚","⡛","⡜","⡝","⡞","⡟","⠠","⠡","⠢","⠣","⠤","⠥","⠦","⠧","⡠","⡡","⡢","⡣","⡤","⡥","⡦","⡧","⠨","⠩","⠪","⠫","⠬","⠭","⠮","⠯","⡨","⡩","⡪","⡫","⡬","⡭","⡮","⡯","⠰","⠱","⠲","⠳","⠴","⠵","⠶","⠷","⡰","⡱","⡲","⡳","⡴","⡵","⡶","⡷","⠸","⠹","⠺","⠻","⠼","⠽","⠾","⠿","⡸","⡹","⡺","⡻","⡼","⡽","⡾","⡿","⢀","⢁","⢂","⢃","⢄","⢅","⢆","⢇","⣀","⣁","⣂","⣃","⣄","⣅","⣆","⣇","⢈","⢉","⢊","⢋","⢌","⢍","⢎","⢏","⣈","⣉","⣊","⣋","⣌","⣍","⣎","⣏","⢐","⢑","⢒","⢓","⢔","⢕","⢖","⢗","⣐","⣑","⣒","⣓","⣔","⣕","⣖","⣗","⢘","⢙","⢚","⢛","⢜","⢝","⢞","⢟","⣘","⣙","⣚","⣛","⣜","⣝","⣞","⣟","⢠","⢡","⢢","⢣","⢤","⢥","⢦","⢧","⣠","⣡","⣢","⣣","⣤","⣥","⣦","⣧","⢨","⢩","⢪","⢫","⢬","⢭","⢮","⢯","⣨","⣩","⣪","⣫","⣬","⣭","⣮","⣯","⢰","⢱","⢲","⢳","⢴","⢵","⢶","⢷","⣰","⣱","⣲","⣳","⣴","⣵","⣶","⣷","⢸","⢹","⢺","⢻","⢼","⢽","⢾","⢿","⣸","⣹","⣺","⣻","⣼","⣽","⣾","⣿"]},"sand":{"interval":80,"frames":["⠁","⠂","⠄","⡀","⡈","⡐","⡠","⣀","⣁","⣂","⣄","⣌","⣔","⣤","⣥","⣦","⣮","⣶","⣷","⣿","⡿","⠿","⢟","⠟","⡛","⠛","⠫","⢋","⠋","⠍","⡉","⠉","⠑","⠡","⢁"]},"line":{"interval":130,"frames":["-","\\\\","|","/"]},"line2":{"interval":100,"frames":["⠂","-","–","—","–","-"]},"pipe":{"interval":100,"frames":["┤","┘","┴","└","├","┌","┬","┐"]},"simpleDots":{"interval":400,"frames":[". ",".. ","..."," "]},"simpleDotsScrolling":{"interval":200,"frames":[". ",".. ","..."," .."," ."," "]},"star":{"interval":70,"frames":["✶","✸","✹","✺","✹","✷"]},"star2":{"interval":80,"frames":["+","x","*"]},"flip":{"interval":70,"frames":["_","_","_","-","`","`","\'","´","-","_","_","_"]},"hamburger":{"interval":100,"frames":["☱","☲","☴"]},"growVertical":{"interval":120,"frames":["▁","▃","▄","▅","▆","▇","▆","▅","▄","▃"]},"growHorizontal":{"interval":120,"frames":["▏","▎","▍","▌","▋","▊","▉","▊","▋","▌","▍","▎"]},"balloon":{"interval":140,"frames":[" ",".","o","O","@","*"," "]},"balloon2":{"interval":120,"frames":[".","o","O","°","O","o","."]},"noise":{"interval":100,"frames":["▓","▒","░"]},"bounce":{"interval":120,"frames":["⠁","⠂","⠄","⠂"]},"boxBounce":{"interval":120,"frames":["▖","▘","▝","▗"]},"boxBounce2":{"interval":100,"frames":["▌","▀","▐","▄"]},"triangle":{"interval":50,"frames":["◢","◣","◤","◥"]},"arc":{"interval":100,"frames":["◜","◠","◝","◞","◡","◟"]},"circle":{"interval":120,"frames":["◡","⊙","◠"]},"squareCorners":{"interval":180,"frames":["◰","◳","◲","◱"]},"circleQuarters":{"interval":120,"frames":["◴","◷","◶","◵"]},"circleHalves":{"interval":50,"frames":["◐","◓","◑","◒"]},"squish":{"interval":100,"frames":["╫","╪"]},"toggle":{"interval":250,"frames":["⊶","⊷"]},"toggle2":{"interval":80,"frames":["▫","▪"]},"toggle3":{"interval":120,"frames":["□","■"]},"toggle4":{"interval":100,"frames":["■","□","▪","▫"]},"toggle5":{"interval":100,"frames":["▮","▯"]},"toggle6":{"interval":300,"frames":["ဝ","၀"]},"toggle7":{"interval":80,"frames":["⦾","⦿"]},"toggle8":{"interval":100,"frames":["◍","◌"]},"toggle9":{"interval":100,"frames":["◉","◎"]},"toggle10":{"interval":100,"frames":["㊂","㊀","㊁"]},"toggle11":{"interval":50,"frames":["⧇","⧆"]},"toggle12":{"interval":120,"frames":["☗","☖"]},"toggle13":{"interval":80,"frames":["=","*","-"]},"arrow":{"interval":100,"frames":["←","↖","↑","↗","→","↘","↓","↙"]},"arrow2":{"interval":80,"frames":["⬆️ ","↗️ ","➡️ ","↘️ ","⬇️ ","↙️ ","⬅️ ","↖️ "]},"arrow3":{"interval":120,"frames":["▹▹▹▹▹","▸▹▹▹▹","▹▸▹▹▹","▹▹▸▹▹","▹▹▹▸▹","▹▹▹▹▸"]},"bouncingBar":{"interval":80,"frames":["[ ]","[= ]","[== ]","[=== ]","[ ===]","[ ==]","[ =]","[ ]","[ =]","[ ==]","[ ===]","[====]","[=== ]","[== ]","[= ]"]},"bouncingBall":{"interval":80,"frames":["( ● )","( ● )","( ● )","( ● )","( ●)","( ● )","( ● )","( ● )","( ● )","(● )"]},"smiley":{"interval":200,"frames":["😄 ","😝 "]},"monkey":{"interval":300,"frames":["🙈 ","🙈 ","🙉 ","🙊 "]},"hearts":{"interval":100,"frames":["💛 ","💙 ","💜 ","💚 ","❤️ "]},"clock":{"interval":100,"frames":["🕛 ","🕐 ","🕑 ","🕒 ","🕓 ","🕔 ","🕕 ","🕖 ","🕗 ","🕘 ","🕙 ","🕚 "]},"earth":{"interval":180,"frames":["🌍 ","🌎 ","🌏 "]},"material":{"interval":17,"frames":["█▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","███▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","████▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","██████▁▁▁▁▁▁▁▁▁▁▁▁▁▁","██████▁▁▁▁▁▁▁▁▁▁▁▁▁▁","███████▁▁▁▁▁▁▁▁▁▁▁▁▁","████████▁▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","██████████▁▁▁▁▁▁▁▁▁▁","███████████▁▁▁▁▁▁▁▁▁","█████████████▁▁▁▁▁▁▁","██████████████▁▁▁▁▁▁","██████████████▁▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁▁██████████████▁▁▁▁","▁▁▁██████████████▁▁▁","▁▁▁▁█████████████▁▁▁","▁▁▁▁██████████████▁▁","▁▁▁▁██████████████▁▁","▁▁▁▁▁██████████████▁","▁▁▁▁▁██████████████▁","▁▁▁▁▁██████████████▁","▁▁▁▁▁▁██████████████","▁▁▁▁▁▁██████████████","▁▁▁▁▁▁▁█████████████","▁▁▁▁▁▁▁█████████████","▁▁▁▁▁▁▁▁████████████","▁▁▁▁▁▁▁▁████████████","▁▁▁▁▁▁▁▁▁███████████","▁▁▁▁▁▁▁▁▁███████████","▁▁▁▁▁▁▁▁▁▁██████████","▁▁▁▁▁▁▁▁▁▁██████████","▁▁▁▁▁▁▁▁▁▁▁▁████████","▁▁▁▁▁▁▁▁▁▁▁▁▁███████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁██████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████","█▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████","██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","███▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","████▁▁▁▁▁▁▁▁▁▁▁▁▁▁██","█████▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","█████▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","██████▁▁▁▁▁▁▁▁▁▁▁▁▁█","████████▁▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","███████████▁▁▁▁▁▁▁▁▁","████████████▁▁▁▁▁▁▁▁","████████████▁▁▁▁▁▁▁▁","██████████████▁▁▁▁▁▁","██████████████▁▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁▁▁█████████████▁▁▁▁","▁▁▁▁▁████████████▁▁▁","▁▁▁▁▁████████████▁▁▁","▁▁▁▁▁▁███████████▁▁▁","▁▁▁▁▁▁▁▁█████████▁▁▁","▁▁▁▁▁▁▁▁█████████▁▁▁","▁▁▁▁▁▁▁▁▁█████████▁▁","▁▁▁▁▁▁▁▁▁█████████▁▁","▁▁▁▁▁▁▁▁▁▁█████████▁","▁▁▁▁▁▁▁▁▁▁▁████████▁","▁▁▁▁▁▁▁▁▁▁▁████████▁","▁▁▁▁▁▁▁▁▁▁▁▁███████▁","▁▁▁▁▁▁▁▁▁▁▁▁███████▁","▁▁▁▁▁▁▁▁▁▁▁▁▁███████","▁▁▁▁▁▁▁▁▁▁▁▁▁███████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁"]},"moon":{"interval":80,"frames":["🌑 ","🌒 ","🌓 ","🌔 ","🌕 ","🌖 ","🌗 ","🌘 "]},"runner":{"interval":140,"frames":["🚶 ","🏃 "]},"pong":{"interval":80,"frames":["▐⠂ ▌","▐⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂▌","▐ ⠠▌","▐ ⡀▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐⠠ ▌"]},"shark":{"interval":120,"frames":["▐|\\\\____________▌","▐_|\\\\___________▌","▐__|\\\\__________▌","▐___|\\\\_________▌","▐____|\\\\________▌","▐_____|\\\\_______▌","▐______|\\\\______▌","▐_______|\\\\_____▌","▐________|\\\\____▌","▐_________|\\\\___▌","▐__________|\\\\__▌","▐___________|\\\\_▌","▐____________|\\\\▌","▐____________/|▌","▐___________/|_▌","▐__________/|__▌","▐_________/|___▌","▐________/|____▌","▐_______/|_____▌","▐______/|______▌","▐_____/|_______▌","▐____/|________▌","▐___/|_________▌","▐__/|__________▌","▐_/|___________▌","▐/|____________▌"]},"dqpb":{"interval":100,"frames":["d","q","p","b"]},"weather":{"interval":100,"frames":["☀️ ","☀️ ","☀️ ","🌤 ","⛅️ ","🌥 ","☁️ ","🌧 ","🌨 ","🌧 ","🌨 ","🌧 ","🌨 ","⛈ ","🌨 ","🌧 ","🌨 ","☁️ ","🌥 ","⛅️ ","🌤 ","☀️ ","☀️ "]},"christmas":{"interval":400,"frames":["🌲","🎄"]},"grenade":{"interval":80,"frames":["، ","′ "," ´ "," ‾ "," ⸌"," ⸊"," |"," ⁎"," ⁕"," ෴ "," ⁓"," "," "," "]},"point":{"interval":125,"frames":["∙∙∙","●∙∙","∙●∙","∙∙●","∙∙∙"]},"layer":{"interval":150,"frames":["-","=","≡"]},"betaWave":{"interval":80,"frames":["ρββββββ","βρβββββ","ββρββββ","βββρβββ","ββββρββ","βββββρβ","ββββββρ"]},"fingerDance":{"interval":160,"frames":["🤘 ","🤟 ","🖖 ","✋ ","🤚 ","👆 "]},"fistBump":{"interval":80,"frames":["🤜 🤛 ","🤜 🤛 ","🤜 🤛 "," 🤜 🤛 "," 🤜🤛 "," 🤜✨🤛 ","🤜 ✨ 🤛 "]},"soccerHeader":{"interval":80,"frames":[" 🧑⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 "]},"mindblown":{"interval":160,"frames":["😐 ","😐 ","😮 ","😮 ","😦 ","😦 ","😧 ","😧 ","🤯 ","💥 ","✨ "," "," "," "]},"speaker":{"interval":160,"frames":["🔈 ","🔉 ","🔊 ","🔉 "]},"orangePulse":{"interval":100,"frames":["🔸 ","🔶 ","🟠 ","🟠 ","🔶 "]},"bluePulse":{"interval":100,"frames":["🔹 ","🔷 ","🔵 ","🔵 ","🔷 "]},"orangeBluePulse":{"interval":100,"frames":["🔸 ","🔶 ","🟠 ","🟠 ","🔶 ","🔹 ","🔷 ","🔵 ","🔵 ","🔷 "]},"timeTravel":{"interval":100,"frames":["🕛 ","🕚 ","🕙 ","🕘 ","🕗 ","🕖 ","🕕 ","🕔 ","🕓 ","🕒 ","🕑 ","🕐 "]},"aesthetic":{"interval":80,"frames":["▰▱▱▱▱▱▱","▰▰▱▱▱▱▱","▰▰▰▱▱▱▱","▰▰▰▰▱▱▱","▰▰▰▰▰▱▱","▰▰▰▰▰▰▱","▰▰▰▰▰▰▰","▰▱▱▱▱▱▱"]},"dwarfFortress":{"interval":80,"frames":[" ██████£££ ","☺██████£££ ","☺██████£££ ","☺▓█████£££ ","☺▓█████£££ ","☺▒█████£££ ","☺▒█████£££ ","☺░█████£££ ","☺░█████£££ ","☺ █████£££ "," ☺█████£££ "," ☺█████£££ "," ☺▓████£££ "," ☺▓████£££ "," ☺▒████£££ "," ☺▒████£££ "," ☺░████£££ "," ☺░████£££ "," ☺ ████£££ "," ☺████£££ "," ☺████£££ "," ☺▓███£££ "," ☺▓███£££ "," ☺▒███£££ "," ☺▒███£££ "," ☺░███£££ "," ☺░███£££ "," ☺ ███£££ "," ☺███£££ "," ☺███£££ "," ☺▓██£££ "," ☺▓██£££ "," ☺▒██£££ "," ☺▒██£££ "," ☺░██£££ "," ☺░██£££ "," ☺ ██£££ "," ☺██£££ "," ☺██£££ "," ☺▓█£££ "," ☺▓█£££ "," ☺▒█£££ "," ☺▒█£££ "," ☺░█£££ "," ☺░█£££ "," ☺ █£££ "," ☺█£££ "," ☺█£££ "," ☺▓£££ "," ☺▓£££ "," ☺▒£££ "," ☺▒£££ "," ☺░£££ "," ☺░£££ "," ☺ £££ "," ☺£££ "," ☺£££ "," ☺▓££ "," ☺▓££ "," ☺▒££ "," ☺▒££ "," ☺░££ "," ☺░££ "," ☺ ££ "," ☺££ "," ☺££ "," ☺▓£ "," ☺▓£ "," ☺▒£ "," ☺▒£ "," ☺░£ "," ☺░£ "," ☺ £ "," ☺£ "," ☺£ "," ☺▓ "," ☺▓ "," ☺▒ "," ☺▒ "," ☺░ "," ☺░ "," ☺ "," ☺ &"," ☺ ☼&"," ☺ ☼ &"," ☺☼ &"," ☺☼ & "," ‼ & "," ☺ & "," ‼ & "," ☺ & "," ‼ & "," ☺ & ","‼ & "," & "," & "," & ░ "," & ▒ "," & ▓ "," & £ "," & ░£ "," & ▒£ "," & ▓£ "," & ££ "," & ░££ "," & ▒££ ","& ▓££ ","& £££ "," ░£££ "," ▒£££ "," ▓£££ "," █£££ "," ░█£££ "," ▒█£££ "," ▓█£££ "," ██£££ "," ░██£££ "," ▒██£££ "," ▓██£££ "," ███£££ "," ░███£££ "," ▒███£££ "," ▓███£££ "," ████£££ "," ░████£££ "," ▒████£££ "," ▓████£££ "," █████£££ "," ░█████£££ "," ▒█████£££ "," ▓█████£££ "," ██████£££ "," ██████£££ "]}}');
|
|
41589
41766
|
|
|
41590
41767
|
/***/ })
|
|
41591
41768
|
|