clawborrator-cli 0.0.27 → 0.0.29
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/dist-bundled/claw.cjs +2667 -47
- package/package.json +2 -1
package/dist-bundled/claw.cjs
CHANGED
|
@@ -590,12 +590,12 @@ var require_help = __commonJS({
|
|
|
590
590
|
const indentString = " ".repeat(indent);
|
|
591
591
|
const zeroWidthSpace = "\u200B";
|
|
592
592
|
const breaks = `\\s${zeroWidthSpace}`;
|
|
593
|
-
const
|
|
593
|
+
const regex2 = new RegExp(
|
|
594
594
|
`
|
|
595
595
|
|.{1,${columnWidth - 1}}([${breaks}]|$)|[^${breaks}]+?([${breaks}]|$)`,
|
|
596
596
|
"g"
|
|
597
597
|
);
|
|
598
|
-
const lines = columnText.match(
|
|
598
|
+
const lines = columnText.match(regex2) || [];
|
|
599
599
|
return leadingStr + lines.map((line, i) => {
|
|
600
600
|
if (line === "\n") return "";
|
|
601
601
|
return (i > 0 ? indentString : "") + line.trimEnd();
|
|
@@ -965,7 +965,7 @@ var require_command = __commonJS({
|
|
|
965
965
|
var childProcess = require("node:child_process");
|
|
966
966
|
var path = require("node:path");
|
|
967
967
|
var fs = require("node:fs");
|
|
968
|
-
var
|
|
968
|
+
var process11 = require("node:process");
|
|
969
969
|
var { Argument: Argument2, humanReadableArgName } = require_argument();
|
|
970
970
|
var { CommanderError: CommanderError2 } = require_error();
|
|
971
971
|
var { Help: Help2 } = require_help();
|
|
@@ -1011,10 +1011,10 @@ var require_command = __commonJS({
|
|
|
1011
1011
|
this._showHelpAfterError = false;
|
|
1012
1012
|
this._showSuggestionAfterError = true;
|
|
1013
1013
|
this._outputConfiguration = {
|
|
1014
|
-
writeOut: (str) =>
|
|
1015
|
-
writeErr: (str) =>
|
|
1016
|
-
getOutHelpWidth: () =>
|
|
1017
|
-
getErrHelpWidth: () =>
|
|
1014
|
+
writeOut: (str) => process11.stdout.write(str),
|
|
1015
|
+
writeErr: (str) => process11.stderr.write(str),
|
|
1016
|
+
getOutHelpWidth: () => process11.stdout.isTTY ? process11.stdout.columns : void 0,
|
|
1017
|
+
getErrHelpWidth: () => process11.stderr.isTTY ? process11.stderr.columns : void 0,
|
|
1018
1018
|
outputError: (str, write) => write(str)
|
|
1019
1019
|
};
|
|
1020
1020
|
this._hidden = false;
|
|
@@ -1393,7 +1393,7 @@ Expecting one of '${allowedValues.join("', '")}'`);
|
|
|
1393
1393
|
if (this._exitCallback) {
|
|
1394
1394
|
this._exitCallback(new CommanderError2(exitCode, code, message));
|
|
1395
1395
|
}
|
|
1396
|
-
|
|
1396
|
+
process11.exit(exitCode);
|
|
1397
1397
|
}
|
|
1398
1398
|
/**
|
|
1399
1399
|
* Register callback `fn` for the command.
|
|
@@ -1568,9 +1568,9 @@ Expecting one of '${allowedValues.join("', '")}'`);
|
|
|
1568
1568
|
if (typeof fn === "function") {
|
|
1569
1569
|
option.default(defaultValue).argParser(fn);
|
|
1570
1570
|
} else if (fn instanceof RegExp) {
|
|
1571
|
-
const
|
|
1571
|
+
const regex2 = fn;
|
|
1572
1572
|
fn = (val, def2) => {
|
|
1573
|
-
const m =
|
|
1573
|
+
const m = regex2.exec(val);
|
|
1574
1574
|
return m ? m[0] : def2;
|
|
1575
1575
|
};
|
|
1576
1576
|
option.default(defaultValue).argParser(fn);
|
|
@@ -1791,16 +1791,16 @@ Expecting one of '${allowedValues.join("', '")}'`);
|
|
|
1791
1791
|
}
|
|
1792
1792
|
parseOptions = parseOptions || {};
|
|
1793
1793
|
if (argv === void 0 && parseOptions.from === void 0) {
|
|
1794
|
-
if (
|
|
1794
|
+
if (process11.versions?.electron) {
|
|
1795
1795
|
parseOptions.from = "electron";
|
|
1796
1796
|
}
|
|
1797
|
-
const execArgv =
|
|
1797
|
+
const execArgv = process11.execArgv ?? [];
|
|
1798
1798
|
if (execArgv.includes("-e") || execArgv.includes("--eval") || execArgv.includes("-p") || execArgv.includes("--print")) {
|
|
1799
1799
|
parseOptions.from = "eval";
|
|
1800
1800
|
}
|
|
1801
1801
|
}
|
|
1802
1802
|
if (argv === void 0) {
|
|
1803
|
-
argv =
|
|
1803
|
+
argv = process11.argv;
|
|
1804
1804
|
}
|
|
1805
1805
|
this.rawArgs = argv.slice();
|
|
1806
1806
|
let userArgs;
|
|
@@ -1811,7 +1811,7 @@ Expecting one of '${allowedValues.join("', '")}'`);
|
|
|
1811
1811
|
userArgs = argv.slice(2);
|
|
1812
1812
|
break;
|
|
1813
1813
|
case "electron":
|
|
1814
|
-
if (
|
|
1814
|
+
if (process11.defaultApp) {
|
|
1815
1815
|
this._scriptPath = argv[1];
|
|
1816
1816
|
userArgs = argv.slice(2);
|
|
1817
1817
|
} else {
|
|
@@ -1939,23 +1939,23 @@ Expecting one of '${allowedValues.join("', '")}'`);
|
|
|
1939
1939
|
}
|
|
1940
1940
|
launchWithNode = sourceExt.includes(path.extname(executableFile));
|
|
1941
1941
|
let proc;
|
|
1942
|
-
if (
|
|
1942
|
+
if (process11.platform !== "win32") {
|
|
1943
1943
|
if (launchWithNode) {
|
|
1944
1944
|
args.unshift(executableFile);
|
|
1945
|
-
args = incrementNodeInspectorPort(
|
|
1946
|
-
proc = childProcess.spawn(
|
|
1945
|
+
args = incrementNodeInspectorPort(process11.execArgv).concat(args);
|
|
1946
|
+
proc = childProcess.spawn(process11.argv[0], args, { stdio: "inherit" });
|
|
1947
1947
|
} else {
|
|
1948
1948
|
proc = childProcess.spawn(executableFile, args, { stdio: "inherit" });
|
|
1949
1949
|
}
|
|
1950
1950
|
} else {
|
|
1951
1951
|
args.unshift(executableFile);
|
|
1952
|
-
args = incrementNodeInspectorPort(
|
|
1953
|
-
proc = childProcess.spawn(
|
|
1952
|
+
args = incrementNodeInspectorPort(process11.execArgv).concat(args);
|
|
1953
|
+
proc = childProcess.spawn(process11.execPath, args, { stdio: "inherit" });
|
|
1954
1954
|
}
|
|
1955
1955
|
if (!proc.killed) {
|
|
1956
|
-
const
|
|
1957
|
-
|
|
1958
|
-
|
|
1956
|
+
const signals2 = ["SIGUSR1", "SIGUSR2", "SIGTERM", "SIGINT", "SIGHUP"];
|
|
1957
|
+
signals2.forEach((signal) => {
|
|
1958
|
+
process11.on(signal, () => {
|
|
1959
1959
|
if (proc.killed === false && proc.exitCode === null) {
|
|
1960
1960
|
proc.kill(signal);
|
|
1961
1961
|
}
|
|
@@ -1966,7 +1966,7 @@ Expecting one of '${allowedValues.join("', '")}'`);
|
|
|
1966
1966
|
proc.on("close", (code) => {
|
|
1967
1967
|
code = code ?? 1;
|
|
1968
1968
|
if (!exitCallback) {
|
|
1969
|
-
|
|
1969
|
+
process11.exit(code);
|
|
1970
1970
|
} else {
|
|
1971
1971
|
exitCallback(
|
|
1972
1972
|
new CommanderError2(
|
|
@@ -1989,7 +1989,7 @@ Expecting one of '${allowedValues.join("', '")}'`);
|
|
|
1989
1989
|
throw new Error(`'${executableFile}' not executable`);
|
|
1990
1990
|
}
|
|
1991
1991
|
if (!exitCallback) {
|
|
1992
|
-
|
|
1992
|
+
process11.exit(1);
|
|
1993
1993
|
} else {
|
|
1994
1994
|
const wrappedError = new CommanderError2(
|
|
1995
1995
|
1,
|
|
@@ -2481,13 +2481,13 @@ Expecting one of '${allowedValues.join("', '")}'`);
|
|
|
2481
2481
|
*/
|
|
2482
2482
|
_parseOptionsEnv() {
|
|
2483
2483
|
this.options.forEach((option) => {
|
|
2484
|
-
if (option.envVar && option.envVar in
|
|
2484
|
+
if (option.envVar && option.envVar in process11.env) {
|
|
2485
2485
|
const optionKey = option.attributeName();
|
|
2486
2486
|
if (this.getOptionValue(optionKey) === void 0 || ["default", "config", "env"].includes(
|
|
2487
2487
|
this.getOptionValueSource(optionKey)
|
|
2488
2488
|
)) {
|
|
2489
2489
|
if (option.required || option.optional) {
|
|
2490
|
-
this.emit(`optionEnv:${option.name()}`,
|
|
2490
|
+
this.emit(`optionEnv:${option.name()}`, process11.env[option.envVar]);
|
|
2491
2491
|
} else {
|
|
2492
2492
|
this.emit(`optionEnv:${option.name()}`);
|
|
2493
2493
|
}
|
|
@@ -2916,7 +2916,7 @@ Expecting one of '${allowedValues.join("', '")}'`);
|
|
|
2916
2916
|
*/
|
|
2917
2917
|
help(contextOptions) {
|
|
2918
2918
|
this.outputHelp(contextOptions);
|
|
2919
|
-
let exitCode =
|
|
2919
|
+
let exitCode = process11.exitCode || 0;
|
|
2920
2920
|
if (exitCode === 0 && contextOptions && typeof contextOptions !== "function" && contextOptions.error) {
|
|
2921
2921
|
exitCode = 1;
|
|
2922
2922
|
}
|
|
@@ -6736,18 +6736,18 @@ var require_emoji_regex = __commonJS({
|
|
|
6736
6736
|
var require_string_width = __commonJS({
|
|
6737
6737
|
"../node_modules/string-width/index.js"(exports2, module2) {
|
|
6738
6738
|
"use strict";
|
|
6739
|
-
var
|
|
6739
|
+
var stripAnsi2 = require_strip_ansi();
|
|
6740
6740
|
var isFullwidthCodePoint = require_is_fullwidth_code_point();
|
|
6741
|
-
var
|
|
6742
|
-
var
|
|
6741
|
+
var emojiRegex2 = require_emoji_regex();
|
|
6742
|
+
var stringWidth2 = (string) => {
|
|
6743
6743
|
if (typeof string !== "string" || string.length === 0) {
|
|
6744
6744
|
return 0;
|
|
6745
6745
|
}
|
|
6746
|
-
string =
|
|
6746
|
+
string = stripAnsi2(string);
|
|
6747
6747
|
if (string.length === 0) {
|
|
6748
6748
|
return 0;
|
|
6749
6749
|
}
|
|
6750
|
-
string = string.replace(
|
|
6750
|
+
string = string.replace(emojiRegex2(), " ");
|
|
6751
6751
|
let width = 0;
|
|
6752
6752
|
for (let i = 0; i < string.length; i++) {
|
|
6753
6753
|
const code = string.codePointAt(i);
|
|
@@ -6764,15 +6764,15 @@ var require_string_width = __commonJS({
|
|
|
6764
6764
|
}
|
|
6765
6765
|
return width;
|
|
6766
6766
|
};
|
|
6767
|
-
module2.exports =
|
|
6768
|
-
module2.exports.default =
|
|
6767
|
+
module2.exports = stringWidth2;
|
|
6768
|
+
module2.exports.default = stringWidth2;
|
|
6769
6769
|
}
|
|
6770
6770
|
});
|
|
6771
6771
|
|
|
6772
6772
|
// ../node_modules/cli-table3/src/utils.js
|
|
6773
6773
|
var require_utils = __commonJS({
|
|
6774
6774
|
"../node_modules/cli-table3/src/utils.js"(exports2, module2) {
|
|
6775
|
-
var
|
|
6775
|
+
var stringWidth2 = require_string_width();
|
|
6776
6776
|
function codeRegex(capture) {
|
|
6777
6777
|
return capture ? /\u001b\[((?:\d*;){0,5}\d*)m/g : /\u001b\[(?:\d*;){0,5}\d*m/g;
|
|
6778
6778
|
}
|
|
@@ -6781,7 +6781,7 @@ var require_utils = __commonJS({
|
|
|
6781
6781
|
let stripped = ("" + str).replace(code, "");
|
|
6782
6782
|
let split = stripped.split("\n");
|
|
6783
6783
|
return split.reduce(function(memo, s) {
|
|
6784
|
-
return
|
|
6784
|
+
return stringWidth2(s) > memo ? stringWidth2(s) : memo;
|
|
6785
6785
|
}, 0);
|
|
6786
6786
|
}
|
|
6787
6787
|
function repeat(str, times) {
|
|
@@ -8700,10 +8700,10 @@ var require_core = __commonJS({
|
|
|
8700
8700
|
var BACKREF_RE = /\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./;
|
|
8701
8701
|
function join(regexps, separator = "|") {
|
|
8702
8702
|
let numCaptures = 0;
|
|
8703
|
-
return regexps.map((
|
|
8703
|
+
return regexps.map((regex2) => {
|
|
8704
8704
|
numCaptures += 1;
|
|
8705
8705
|
const offset = numCaptures;
|
|
8706
|
-
let re = source(
|
|
8706
|
+
let re = source(regex2);
|
|
8707
8707
|
let out = "";
|
|
8708
8708
|
while (re.length > 0) {
|
|
8709
8709
|
const match = BACKREF_RE.exec(re);
|
|
@@ -8977,10 +8977,10 @@ var require_core = __commonJS({
|
|
|
8977
8977
|
return COMMON_KEYWORDS.includes(keyword.toLowerCase());
|
|
8978
8978
|
}
|
|
8979
8979
|
function compileLanguage(language, { plugins }) {
|
|
8980
|
-
function langRe(value,
|
|
8980
|
+
function langRe(value, global2) {
|
|
8981
8981
|
return new RegExp(
|
|
8982
8982
|
source(value),
|
|
8983
|
-
"m" + (language.case_insensitive ? "i" : "") + (
|
|
8983
|
+
"m" + (language.case_insensitive ? "i" : "") + (global2 ? "g" : "")
|
|
8984
8984
|
);
|
|
8985
8985
|
}
|
|
8986
8986
|
class MultiRegex {
|
|
@@ -63980,6 +63980,1660 @@ var require_supports_hyperlinks = __commonJS({
|
|
|
63980
63980
|
}
|
|
63981
63981
|
});
|
|
63982
63982
|
|
|
63983
|
+
// ../node_modules/cli-spinners/spinners.json
|
|
63984
|
+
var require_spinners = __commonJS({
|
|
63985
|
+
"../node_modules/cli-spinners/spinners.json"(exports2, module2) {
|
|
63986
|
+
module2.exports = {
|
|
63987
|
+
dots: {
|
|
63988
|
+
interval: 80,
|
|
63989
|
+
frames: [
|
|
63990
|
+
"\u280B",
|
|
63991
|
+
"\u2819",
|
|
63992
|
+
"\u2839",
|
|
63993
|
+
"\u2838",
|
|
63994
|
+
"\u283C",
|
|
63995
|
+
"\u2834",
|
|
63996
|
+
"\u2826",
|
|
63997
|
+
"\u2827",
|
|
63998
|
+
"\u2807",
|
|
63999
|
+
"\u280F"
|
|
64000
|
+
]
|
|
64001
|
+
},
|
|
64002
|
+
dots2: {
|
|
64003
|
+
interval: 80,
|
|
64004
|
+
frames: [
|
|
64005
|
+
"\u28FE",
|
|
64006
|
+
"\u28FD",
|
|
64007
|
+
"\u28FB",
|
|
64008
|
+
"\u28BF",
|
|
64009
|
+
"\u287F",
|
|
64010
|
+
"\u28DF",
|
|
64011
|
+
"\u28EF",
|
|
64012
|
+
"\u28F7"
|
|
64013
|
+
]
|
|
64014
|
+
},
|
|
64015
|
+
dots3: {
|
|
64016
|
+
interval: 80,
|
|
64017
|
+
frames: [
|
|
64018
|
+
"\u280B",
|
|
64019
|
+
"\u2819",
|
|
64020
|
+
"\u281A",
|
|
64021
|
+
"\u281E",
|
|
64022
|
+
"\u2816",
|
|
64023
|
+
"\u2826",
|
|
64024
|
+
"\u2834",
|
|
64025
|
+
"\u2832",
|
|
64026
|
+
"\u2833",
|
|
64027
|
+
"\u2813"
|
|
64028
|
+
]
|
|
64029
|
+
},
|
|
64030
|
+
dots4: {
|
|
64031
|
+
interval: 80,
|
|
64032
|
+
frames: [
|
|
64033
|
+
"\u2804",
|
|
64034
|
+
"\u2806",
|
|
64035
|
+
"\u2807",
|
|
64036
|
+
"\u280B",
|
|
64037
|
+
"\u2819",
|
|
64038
|
+
"\u2838",
|
|
64039
|
+
"\u2830",
|
|
64040
|
+
"\u2820",
|
|
64041
|
+
"\u2830",
|
|
64042
|
+
"\u2838",
|
|
64043
|
+
"\u2819",
|
|
64044
|
+
"\u280B",
|
|
64045
|
+
"\u2807",
|
|
64046
|
+
"\u2806"
|
|
64047
|
+
]
|
|
64048
|
+
},
|
|
64049
|
+
dots5: {
|
|
64050
|
+
interval: 80,
|
|
64051
|
+
frames: [
|
|
64052
|
+
"\u280B",
|
|
64053
|
+
"\u2819",
|
|
64054
|
+
"\u281A",
|
|
64055
|
+
"\u2812",
|
|
64056
|
+
"\u2802",
|
|
64057
|
+
"\u2802",
|
|
64058
|
+
"\u2812",
|
|
64059
|
+
"\u2832",
|
|
64060
|
+
"\u2834",
|
|
64061
|
+
"\u2826",
|
|
64062
|
+
"\u2816",
|
|
64063
|
+
"\u2812",
|
|
64064
|
+
"\u2810",
|
|
64065
|
+
"\u2810",
|
|
64066
|
+
"\u2812",
|
|
64067
|
+
"\u2813",
|
|
64068
|
+
"\u280B"
|
|
64069
|
+
]
|
|
64070
|
+
},
|
|
64071
|
+
dots6: {
|
|
64072
|
+
interval: 80,
|
|
64073
|
+
frames: [
|
|
64074
|
+
"\u2801",
|
|
64075
|
+
"\u2809",
|
|
64076
|
+
"\u2819",
|
|
64077
|
+
"\u281A",
|
|
64078
|
+
"\u2812",
|
|
64079
|
+
"\u2802",
|
|
64080
|
+
"\u2802",
|
|
64081
|
+
"\u2812",
|
|
64082
|
+
"\u2832",
|
|
64083
|
+
"\u2834",
|
|
64084
|
+
"\u2824",
|
|
64085
|
+
"\u2804",
|
|
64086
|
+
"\u2804",
|
|
64087
|
+
"\u2824",
|
|
64088
|
+
"\u2834",
|
|
64089
|
+
"\u2832",
|
|
64090
|
+
"\u2812",
|
|
64091
|
+
"\u2802",
|
|
64092
|
+
"\u2802",
|
|
64093
|
+
"\u2812",
|
|
64094
|
+
"\u281A",
|
|
64095
|
+
"\u2819",
|
|
64096
|
+
"\u2809",
|
|
64097
|
+
"\u2801"
|
|
64098
|
+
]
|
|
64099
|
+
},
|
|
64100
|
+
dots7: {
|
|
64101
|
+
interval: 80,
|
|
64102
|
+
frames: [
|
|
64103
|
+
"\u2808",
|
|
64104
|
+
"\u2809",
|
|
64105
|
+
"\u280B",
|
|
64106
|
+
"\u2813",
|
|
64107
|
+
"\u2812",
|
|
64108
|
+
"\u2810",
|
|
64109
|
+
"\u2810",
|
|
64110
|
+
"\u2812",
|
|
64111
|
+
"\u2816",
|
|
64112
|
+
"\u2826",
|
|
64113
|
+
"\u2824",
|
|
64114
|
+
"\u2820",
|
|
64115
|
+
"\u2820",
|
|
64116
|
+
"\u2824",
|
|
64117
|
+
"\u2826",
|
|
64118
|
+
"\u2816",
|
|
64119
|
+
"\u2812",
|
|
64120
|
+
"\u2810",
|
|
64121
|
+
"\u2810",
|
|
64122
|
+
"\u2812",
|
|
64123
|
+
"\u2813",
|
|
64124
|
+
"\u280B",
|
|
64125
|
+
"\u2809",
|
|
64126
|
+
"\u2808"
|
|
64127
|
+
]
|
|
64128
|
+
},
|
|
64129
|
+
dots8: {
|
|
64130
|
+
interval: 80,
|
|
64131
|
+
frames: [
|
|
64132
|
+
"\u2801",
|
|
64133
|
+
"\u2801",
|
|
64134
|
+
"\u2809",
|
|
64135
|
+
"\u2819",
|
|
64136
|
+
"\u281A",
|
|
64137
|
+
"\u2812",
|
|
64138
|
+
"\u2802",
|
|
64139
|
+
"\u2802",
|
|
64140
|
+
"\u2812",
|
|
64141
|
+
"\u2832",
|
|
64142
|
+
"\u2834",
|
|
64143
|
+
"\u2824",
|
|
64144
|
+
"\u2804",
|
|
64145
|
+
"\u2804",
|
|
64146
|
+
"\u2824",
|
|
64147
|
+
"\u2820",
|
|
64148
|
+
"\u2820",
|
|
64149
|
+
"\u2824",
|
|
64150
|
+
"\u2826",
|
|
64151
|
+
"\u2816",
|
|
64152
|
+
"\u2812",
|
|
64153
|
+
"\u2810",
|
|
64154
|
+
"\u2810",
|
|
64155
|
+
"\u2812",
|
|
64156
|
+
"\u2813",
|
|
64157
|
+
"\u280B",
|
|
64158
|
+
"\u2809",
|
|
64159
|
+
"\u2808",
|
|
64160
|
+
"\u2808"
|
|
64161
|
+
]
|
|
64162
|
+
},
|
|
64163
|
+
dots9: {
|
|
64164
|
+
interval: 80,
|
|
64165
|
+
frames: [
|
|
64166
|
+
"\u28B9",
|
|
64167
|
+
"\u28BA",
|
|
64168
|
+
"\u28BC",
|
|
64169
|
+
"\u28F8",
|
|
64170
|
+
"\u28C7",
|
|
64171
|
+
"\u2867",
|
|
64172
|
+
"\u2857",
|
|
64173
|
+
"\u284F"
|
|
64174
|
+
]
|
|
64175
|
+
},
|
|
64176
|
+
dots10: {
|
|
64177
|
+
interval: 80,
|
|
64178
|
+
frames: [
|
|
64179
|
+
"\u2884",
|
|
64180
|
+
"\u2882",
|
|
64181
|
+
"\u2881",
|
|
64182
|
+
"\u2841",
|
|
64183
|
+
"\u2848",
|
|
64184
|
+
"\u2850",
|
|
64185
|
+
"\u2860"
|
|
64186
|
+
]
|
|
64187
|
+
},
|
|
64188
|
+
dots11: {
|
|
64189
|
+
interval: 100,
|
|
64190
|
+
frames: [
|
|
64191
|
+
"\u2801",
|
|
64192
|
+
"\u2802",
|
|
64193
|
+
"\u2804",
|
|
64194
|
+
"\u2840",
|
|
64195
|
+
"\u2880",
|
|
64196
|
+
"\u2820",
|
|
64197
|
+
"\u2810",
|
|
64198
|
+
"\u2808"
|
|
64199
|
+
]
|
|
64200
|
+
},
|
|
64201
|
+
dots12: {
|
|
64202
|
+
interval: 80,
|
|
64203
|
+
frames: [
|
|
64204
|
+
"\u2880\u2800",
|
|
64205
|
+
"\u2840\u2800",
|
|
64206
|
+
"\u2804\u2800",
|
|
64207
|
+
"\u2882\u2800",
|
|
64208
|
+
"\u2842\u2800",
|
|
64209
|
+
"\u2805\u2800",
|
|
64210
|
+
"\u2883\u2800",
|
|
64211
|
+
"\u2843\u2800",
|
|
64212
|
+
"\u280D\u2800",
|
|
64213
|
+
"\u288B\u2800",
|
|
64214
|
+
"\u284B\u2800",
|
|
64215
|
+
"\u280D\u2801",
|
|
64216
|
+
"\u288B\u2801",
|
|
64217
|
+
"\u284B\u2801",
|
|
64218
|
+
"\u280D\u2809",
|
|
64219
|
+
"\u280B\u2809",
|
|
64220
|
+
"\u280B\u2809",
|
|
64221
|
+
"\u2809\u2819",
|
|
64222
|
+
"\u2809\u2819",
|
|
64223
|
+
"\u2809\u2829",
|
|
64224
|
+
"\u2808\u2899",
|
|
64225
|
+
"\u2808\u2859",
|
|
64226
|
+
"\u2888\u2829",
|
|
64227
|
+
"\u2840\u2899",
|
|
64228
|
+
"\u2804\u2859",
|
|
64229
|
+
"\u2882\u2829",
|
|
64230
|
+
"\u2842\u2898",
|
|
64231
|
+
"\u2805\u2858",
|
|
64232
|
+
"\u2883\u2828",
|
|
64233
|
+
"\u2843\u2890",
|
|
64234
|
+
"\u280D\u2850",
|
|
64235
|
+
"\u288B\u2820",
|
|
64236
|
+
"\u284B\u2880",
|
|
64237
|
+
"\u280D\u2841",
|
|
64238
|
+
"\u288B\u2801",
|
|
64239
|
+
"\u284B\u2801",
|
|
64240
|
+
"\u280D\u2809",
|
|
64241
|
+
"\u280B\u2809",
|
|
64242
|
+
"\u280B\u2809",
|
|
64243
|
+
"\u2809\u2819",
|
|
64244
|
+
"\u2809\u2819",
|
|
64245
|
+
"\u2809\u2829",
|
|
64246
|
+
"\u2808\u2899",
|
|
64247
|
+
"\u2808\u2859",
|
|
64248
|
+
"\u2808\u2829",
|
|
64249
|
+
"\u2800\u2899",
|
|
64250
|
+
"\u2800\u2859",
|
|
64251
|
+
"\u2800\u2829",
|
|
64252
|
+
"\u2800\u2898",
|
|
64253
|
+
"\u2800\u2858",
|
|
64254
|
+
"\u2800\u2828",
|
|
64255
|
+
"\u2800\u2890",
|
|
64256
|
+
"\u2800\u2850",
|
|
64257
|
+
"\u2800\u2820",
|
|
64258
|
+
"\u2800\u2880",
|
|
64259
|
+
"\u2800\u2840"
|
|
64260
|
+
]
|
|
64261
|
+
},
|
|
64262
|
+
dots13: {
|
|
64263
|
+
interval: 80,
|
|
64264
|
+
frames: [
|
|
64265
|
+
"\u28FC",
|
|
64266
|
+
"\u28F9",
|
|
64267
|
+
"\u28BB",
|
|
64268
|
+
"\u283F",
|
|
64269
|
+
"\u285F",
|
|
64270
|
+
"\u28CF",
|
|
64271
|
+
"\u28E7",
|
|
64272
|
+
"\u28F6"
|
|
64273
|
+
]
|
|
64274
|
+
},
|
|
64275
|
+
dots8Bit: {
|
|
64276
|
+
interval: 80,
|
|
64277
|
+
frames: [
|
|
64278
|
+
"\u2800",
|
|
64279
|
+
"\u2801",
|
|
64280
|
+
"\u2802",
|
|
64281
|
+
"\u2803",
|
|
64282
|
+
"\u2804",
|
|
64283
|
+
"\u2805",
|
|
64284
|
+
"\u2806",
|
|
64285
|
+
"\u2807",
|
|
64286
|
+
"\u2840",
|
|
64287
|
+
"\u2841",
|
|
64288
|
+
"\u2842",
|
|
64289
|
+
"\u2843",
|
|
64290
|
+
"\u2844",
|
|
64291
|
+
"\u2845",
|
|
64292
|
+
"\u2846",
|
|
64293
|
+
"\u2847",
|
|
64294
|
+
"\u2808",
|
|
64295
|
+
"\u2809",
|
|
64296
|
+
"\u280A",
|
|
64297
|
+
"\u280B",
|
|
64298
|
+
"\u280C",
|
|
64299
|
+
"\u280D",
|
|
64300
|
+
"\u280E",
|
|
64301
|
+
"\u280F",
|
|
64302
|
+
"\u2848",
|
|
64303
|
+
"\u2849",
|
|
64304
|
+
"\u284A",
|
|
64305
|
+
"\u284B",
|
|
64306
|
+
"\u284C",
|
|
64307
|
+
"\u284D",
|
|
64308
|
+
"\u284E",
|
|
64309
|
+
"\u284F",
|
|
64310
|
+
"\u2810",
|
|
64311
|
+
"\u2811",
|
|
64312
|
+
"\u2812",
|
|
64313
|
+
"\u2813",
|
|
64314
|
+
"\u2814",
|
|
64315
|
+
"\u2815",
|
|
64316
|
+
"\u2816",
|
|
64317
|
+
"\u2817",
|
|
64318
|
+
"\u2850",
|
|
64319
|
+
"\u2851",
|
|
64320
|
+
"\u2852",
|
|
64321
|
+
"\u2853",
|
|
64322
|
+
"\u2854",
|
|
64323
|
+
"\u2855",
|
|
64324
|
+
"\u2856",
|
|
64325
|
+
"\u2857",
|
|
64326
|
+
"\u2818",
|
|
64327
|
+
"\u2819",
|
|
64328
|
+
"\u281A",
|
|
64329
|
+
"\u281B",
|
|
64330
|
+
"\u281C",
|
|
64331
|
+
"\u281D",
|
|
64332
|
+
"\u281E",
|
|
64333
|
+
"\u281F",
|
|
64334
|
+
"\u2858",
|
|
64335
|
+
"\u2859",
|
|
64336
|
+
"\u285A",
|
|
64337
|
+
"\u285B",
|
|
64338
|
+
"\u285C",
|
|
64339
|
+
"\u285D",
|
|
64340
|
+
"\u285E",
|
|
64341
|
+
"\u285F",
|
|
64342
|
+
"\u2820",
|
|
64343
|
+
"\u2821",
|
|
64344
|
+
"\u2822",
|
|
64345
|
+
"\u2823",
|
|
64346
|
+
"\u2824",
|
|
64347
|
+
"\u2825",
|
|
64348
|
+
"\u2826",
|
|
64349
|
+
"\u2827",
|
|
64350
|
+
"\u2860",
|
|
64351
|
+
"\u2861",
|
|
64352
|
+
"\u2862",
|
|
64353
|
+
"\u2863",
|
|
64354
|
+
"\u2864",
|
|
64355
|
+
"\u2865",
|
|
64356
|
+
"\u2866",
|
|
64357
|
+
"\u2867",
|
|
64358
|
+
"\u2828",
|
|
64359
|
+
"\u2829",
|
|
64360
|
+
"\u282A",
|
|
64361
|
+
"\u282B",
|
|
64362
|
+
"\u282C",
|
|
64363
|
+
"\u282D",
|
|
64364
|
+
"\u282E",
|
|
64365
|
+
"\u282F",
|
|
64366
|
+
"\u2868",
|
|
64367
|
+
"\u2869",
|
|
64368
|
+
"\u286A",
|
|
64369
|
+
"\u286B",
|
|
64370
|
+
"\u286C",
|
|
64371
|
+
"\u286D",
|
|
64372
|
+
"\u286E",
|
|
64373
|
+
"\u286F",
|
|
64374
|
+
"\u2830",
|
|
64375
|
+
"\u2831",
|
|
64376
|
+
"\u2832",
|
|
64377
|
+
"\u2833",
|
|
64378
|
+
"\u2834",
|
|
64379
|
+
"\u2835",
|
|
64380
|
+
"\u2836",
|
|
64381
|
+
"\u2837",
|
|
64382
|
+
"\u2870",
|
|
64383
|
+
"\u2871",
|
|
64384
|
+
"\u2872",
|
|
64385
|
+
"\u2873",
|
|
64386
|
+
"\u2874",
|
|
64387
|
+
"\u2875",
|
|
64388
|
+
"\u2876",
|
|
64389
|
+
"\u2877",
|
|
64390
|
+
"\u2838",
|
|
64391
|
+
"\u2839",
|
|
64392
|
+
"\u283A",
|
|
64393
|
+
"\u283B",
|
|
64394
|
+
"\u283C",
|
|
64395
|
+
"\u283D",
|
|
64396
|
+
"\u283E",
|
|
64397
|
+
"\u283F",
|
|
64398
|
+
"\u2878",
|
|
64399
|
+
"\u2879",
|
|
64400
|
+
"\u287A",
|
|
64401
|
+
"\u287B",
|
|
64402
|
+
"\u287C",
|
|
64403
|
+
"\u287D",
|
|
64404
|
+
"\u287E",
|
|
64405
|
+
"\u287F",
|
|
64406
|
+
"\u2880",
|
|
64407
|
+
"\u2881",
|
|
64408
|
+
"\u2882",
|
|
64409
|
+
"\u2883",
|
|
64410
|
+
"\u2884",
|
|
64411
|
+
"\u2885",
|
|
64412
|
+
"\u2886",
|
|
64413
|
+
"\u2887",
|
|
64414
|
+
"\u28C0",
|
|
64415
|
+
"\u28C1",
|
|
64416
|
+
"\u28C2",
|
|
64417
|
+
"\u28C3",
|
|
64418
|
+
"\u28C4",
|
|
64419
|
+
"\u28C5",
|
|
64420
|
+
"\u28C6",
|
|
64421
|
+
"\u28C7",
|
|
64422
|
+
"\u2888",
|
|
64423
|
+
"\u2889",
|
|
64424
|
+
"\u288A",
|
|
64425
|
+
"\u288B",
|
|
64426
|
+
"\u288C",
|
|
64427
|
+
"\u288D",
|
|
64428
|
+
"\u288E",
|
|
64429
|
+
"\u288F",
|
|
64430
|
+
"\u28C8",
|
|
64431
|
+
"\u28C9",
|
|
64432
|
+
"\u28CA",
|
|
64433
|
+
"\u28CB",
|
|
64434
|
+
"\u28CC",
|
|
64435
|
+
"\u28CD",
|
|
64436
|
+
"\u28CE",
|
|
64437
|
+
"\u28CF",
|
|
64438
|
+
"\u2890",
|
|
64439
|
+
"\u2891",
|
|
64440
|
+
"\u2892",
|
|
64441
|
+
"\u2893",
|
|
64442
|
+
"\u2894",
|
|
64443
|
+
"\u2895",
|
|
64444
|
+
"\u2896",
|
|
64445
|
+
"\u2897",
|
|
64446
|
+
"\u28D0",
|
|
64447
|
+
"\u28D1",
|
|
64448
|
+
"\u28D2",
|
|
64449
|
+
"\u28D3",
|
|
64450
|
+
"\u28D4",
|
|
64451
|
+
"\u28D5",
|
|
64452
|
+
"\u28D6",
|
|
64453
|
+
"\u28D7",
|
|
64454
|
+
"\u2898",
|
|
64455
|
+
"\u2899",
|
|
64456
|
+
"\u289A",
|
|
64457
|
+
"\u289B",
|
|
64458
|
+
"\u289C",
|
|
64459
|
+
"\u289D",
|
|
64460
|
+
"\u289E",
|
|
64461
|
+
"\u289F",
|
|
64462
|
+
"\u28D8",
|
|
64463
|
+
"\u28D9",
|
|
64464
|
+
"\u28DA",
|
|
64465
|
+
"\u28DB",
|
|
64466
|
+
"\u28DC",
|
|
64467
|
+
"\u28DD",
|
|
64468
|
+
"\u28DE",
|
|
64469
|
+
"\u28DF",
|
|
64470
|
+
"\u28A0",
|
|
64471
|
+
"\u28A1",
|
|
64472
|
+
"\u28A2",
|
|
64473
|
+
"\u28A3",
|
|
64474
|
+
"\u28A4",
|
|
64475
|
+
"\u28A5",
|
|
64476
|
+
"\u28A6",
|
|
64477
|
+
"\u28A7",
|
|
64478
|
+
"\u28E0",
|
|
64479
|
+
"\u28E1",
|
|
64480
|
+
"\u28E2",
|
|
64481
|
+
"\u28E3",
|
|
64482
|
+
"\u28E4",
|
|
64483
|
+
"\u28E5",
|
|
64484
|
+
"\u28E6",
|
|
64485
|
+
"\u28E7",
|
|
64486
|
+
"\u28A8",
|
|
64487
|
+
"\u28A9",
|
|
64488
|
+
"\u28AA",
|
|
64489
|
+
"\u28AB",
|
|
64490
|
+
"\u28AC",
|
|
64491
|
+
"\u28AD",
|
|
64492
|
+
"\u28AE",
|
|
64493
|
+
"\u28AF",
|
|
64494
|
+
"\u28E8",
|
|
64495
|
+
"\u28E9",
|
|
64496
|
+
"\u28EA",
|
|
64497
|
+
"\u28EB",
|
|
64498
|
+
"\u28EC",
|
|
64499
|
+
"\u28ED",
|
|
64500
|
+
"\u28EE",
|
|
64501
|
+
"\u28EF",
|
|
64502
|
+
"\u28B0",
|
|
64503
|
+
"\u28B1",
|
|
64504
|
+
"\u28B2",
|
|
64505
|
+
"\u28B3",
|
|
64506
|
+
"\u28B4",
|
|
64507
|
+
"\u28B5",
|
|
64508
|
+
"\u28B6",
|
|
64509
|
+
"\u28B7",
|
|
64510
|
+
"\u28F0",
|
|
64511
|
+
"\u28F1",
|
|
64512
|
+
"\u28F2",
|
|
64513
|
+
"\u28F3",
|
|
64514
|
+
"\u28F4",
|
|
64515
|
+
"\u28F5",
|
|
64516
|
+
"\u28F6",
|
|
64517
|
+
"\u28F7",
|
|
64518
|
+
"\u28B8",
|
|
64519
|
+
"\u28B9",
|
|
64520
|
+
"\u28BA",
|
|
64521
|
+
"\u28BB",
|
|
64522
|
+
"\u28BC",
|
|
64523
|
+
"\u28BD",
|
|
64524
|
+
"\u28BE",
|
|
64525
|
+
"\u28BF",
|
|
64526
|
+
"\u28F8",
|
|
64527
|
+
"\u28F9",
|
|
64528
|
+
"\u28FA",
|
|
64529
|
+
"\u28FB",
|
|
64530
|
+
"\u28FC",
|
|
64531
|
+
"\u28FD",
|
|
64532
|
+
"\u28FE",
|
|
64533
|
+
"\u28FF"
|
|
64534
|
+
]
|
|
64535
|
+
},
|
|
64536
|
+
sand: {
|
|
64537
|
+
interval: 80,
|
|
64538
|
+
frames: [
|
|
64539
|
+
"\u2801",
|
|
64540
|
+
"\u2802",
|
|
64541
|
+
"\u2804",
|
|
64542
|
+
"\u2840",
|
|
64543
|
+
"\u2848",
|
|
64544
|
+
"\u2850",
|
|
64545
|
+
"\u2860",
|
|
64546
|
+
"\u28C0",
|
|
64547
|
+
"\u28C1",
|
|
64548
|
+
"\u28C2",
|
|
64549
|
+
"\u28C4",
|
|
64550
|
+
"\u28CC",
|
|
64551
|
+
"\u28D4",
|
|
64552
|
+
"\u28E4",
|
|
64553
|
+
"\u28E5",
|
|
64554
|
+
"\u28E6",
|
|
64555
|
+
"\u28EE",
|
|
64556
|
+
"\u28F6",
|
|
64557
|
+
"\u28F7",
|
|
64558
|
+
"\u28FF",
|
|
64559
|
+
"\u287F",
|
|
64560
|
+
"\u283F",
|
|
64561
|
+
"\u289F",
|
|
64562
|
+
"\u281F",
|
|
64563
|
+
"\u285B",
|
|
64564
|
+
"\u281B",
|
|
64565
|
+
"\u282B",
|
|
64566
|
+
"\u288B",
|
|
64567
|
+
"\u280B",
|
|
64568
|
+
"\u280D",
|
|
64569
|
+
"\u2849",
|
|
64570
|
+
"\u2809",
|
|
64571
|
+
"\u2811",
|
|
64572
|
+
"\u2821",
|
|
64573
|
+
"\u2881"
|
|
64574
|
+
]
|
|
64575
|
+
},
|
|
64576
|
+
line: {
|
|
64577
|
+
interval: 130,
|
|
64578
|
+
frames: [
|
|
64579
|
+
"-",
|
|
64580
|
+
"\\",
|
|
64581
|
+
"|",
|
|
64582
|
+
"/"
|
|
64583
|
+
]
|
|
64584
|
+
},
|
|
64585
|
+
line2: {
|
|
64586
|
+
interval: 100,
|
|
64587
|
+
frames: [
|
|
64588
|
+
"\u2802",
|
|
64589
|
+
"-",
|
|
64590
|
+
"\u2013",
|
|
64591
|
+
"\u2014",
|
|
64592
|
+
"\u2013",
|
|
64593
|
+
"-"
|
|
64594
|
+
]
|
|
64595
|
+
},
|
|
64596
|
+
pipe: {
|
|
64597
|
+
interval: 100,
|
|
64598
|
+
frames: [
|
|
64599
|
+
"\u2524",
|
|
64600
|
+
"\u2518",
|
|
64601
|
+
"\u2534",
|
|
64602
|
+
"\u2514",
|
|
64603
|
+
"\u251C",
|
|
64604
|
+
"\u250C",
|
|
64605
|
+
"\u252C",
|
|
64606
|
+
"\u2510"
|
|
64607
|
+
]
|
|
64608
|
+
},
|
|
64609
|
+
simpleDots: {
|
|
64610
|
+
interval: 400,
|
|
64611
|
+
frames: [
|
|
64612
|
+
". ",
|
|
64613
|
+
".. ",
|
|
64614
|
+
"...",
|
|
64615
|
+
" "
|
|
64616
|
+
]
|
|
64617
|
+
},
|
|
64618
|
+
simpleDotsScrolling: {
|
|
64619
|
+
interval: 200,
|
|
64620
|
+
frames: [
|
|
64621
|
+
". ",
|
|
64622
|
+
".. ",
|
|
64623
|
+
"...",
|
|
64624
|
+
" ..",
|
|
64625
|
+
" .",
|
|
64626
|
+
" "
|
|
64627
|
+
]
|
|
64628
|
+
},
|
|
64629
|
+
star: {
|
|
64630
|
+
interval: 70,
|
|
64631
|
+
frames: [
|
|
64632
|
+
"\u2736",
|
|
64633
|
+
"\u2738",
|
|
64634
|
+
"\u2739",
|
|
64635
|
+
"\u273A",
|
|
64636
|
+
"\u2739",
|
|
64637
|
+
"\u2737"
|
|
64638
|
+
]
|
|
64639
|
+
},
|
|
64640
|
+
star2: {
|
|
64641
|
+
interval: 80,
|
|
64642
|
+
frames: [
|
|
64643
|
+
"+",
|
|
64644
|
+
"x",
|
|
64645
|
+
"*"
|
|
64646
|
+
]
|
|
64647
|
+
},
|
|
64648
|
+
flip: {
|
|
64649
|
+
interval: 70,
|
|
64650
|
+
frames: [
|
|
64651
|
+
"_",
|
|
64652
|
+
"_",
|
|
64653
|
+
"_",
|
|
64654
|
+
"-",
|
|
64655
|
+
"`",
|
|
64656
|
+
"`",
|
|
64657
|
+
"'",
|
|
64658
|
+
"\xB4",
|
|
64659
|
+
"-",
|
|
64660
|
+
"_",
|
|
64661
|
+
"_",
|
|
64662
|
+
"_"
|
|
64663
|
+
]
|
|
64664
|
+
},
|
|
64665
|
+
hamburger: {
|
|
64666
|
+
interval: 100,
|
|
64667
|
+
frames: [
|
|
64668
|
+
"\u2631",
|
|
64669
|
+
"\u2632",
|
|
64670
|
+
"\u2634"
|
|
64671
|
+
]
|
|
64672
|
+
},
|
|
64673
|
+
growVertical: {
|
|
64674
|
+
interval: 120,
|
|
64675
|
+
frames: [
|
|
64676
|
+
"\u2581",
|
|
64677
|
+
"\u2583",
|
|
64678
|
+
"\u2584",
|
|
64679
|
+
"\u2585",
|
|
64680
|
+
"\u2586",
|
|
64681
|
+
"\u2587",
|
|
64682
|
+
"\u2586",
|
|
64683
|
+
"\u2585",
|
|
64684
|
+
"\u2584",
|
|
64685
|
+
"\u2583"
|
|
64686
|
+
]
|
|
64687
|
+
},
|
|
64688
|
+
growHorizontal: {
|
|
64689
|
+
interval: 120,
|
|
64690
|
+
frames: [
|
|
64691
|
+
"\u258F",
|
|
64692
|
+
"\u258E",
|
|
64693
|
+
"\u258D",
|
|
64694
|
+
"\u258C",
|
|
64695
|
+
"\u258B",
|
|
64696
|
+
"\u258A",
|
|
64697
|
+
"\u2589",
|
|
64698
|
+
"\u258A",
|
|
64699
|
+
"\u258B",
|
|
64700
|
+
"\u258C",
|
|
64701
|
+
"\u258D",
|
|
64702
|
+
"\u258E"
|
|
64703
|
+
]
|
|
64704
|
+
},
|
|
64705
|
+
balloon: {
|
|
64706
|
+
interval: 140,
|
|
64707
|
+
frames: [
|
|
64708
|
+
" ",
|
|
64709
|
+
".",
|
|
64710
|
+
"o",
|
|
64711
|
+
"O",
|
|
64712
|
+
"@",
|
|
64713
|
+
"*",
|
|
64714
|
+
" "
|
|
64715
|
+
]
|
|
64716
|
+
},
|
|
64717
|
+
balloon2: {
|
|
64718
|
+
interval: 120,
|
|
64719
|
+
frames: [
|
|
64720
|
+
".",
|
|
64721
|
+
"o",
|
|
64722
|
+
"O",
|
|
64723
|
+
"\xB0",
|
|
64724
|
+
"O",
|
|
64725
|
+
"o",
|
|
64726
|
+
"."
|
|
64727
|
+
]
|
|
64728
|
+
},
|
|
64729
|
+
noise: {
|
|
64730
|
+
interval: 100,
|
|
64731
|
+
frames: [
|
|
64732
|
+
"\u2593",
|
|
64733
|
+
"\u2592",
|
|
64734
|
+
"\u2591"
|
|
64735
|
+
]
|
|
64736
|
+
},
|
|
64737
|
+
bounce: {
|
|
64738
|
+
interval: 120,
|
|
64739
|
+
frames: [
|
|
64740
|
+
"\u2801",
|
|
64741
|
+
"\u2802",
|
|
64742
|
+
"\u2804",
|
|
64743
|
+
"\u2802"
|
|
64744
|
+
]
|
|
64745
|
+
},
|
|
64746
|
+
boxBounce: {
|
|
64747
|
+
interval: 120,
|
|
64748
|
+
frames: [
|
|
64749
|
+
"\u2596",
|
|
64750
|
+
"\u2598",
|
|
64751
|
+
"\u259D",
|
|
64752
|
+
"\u2597"
|
|
64753
|
+
]
|
|
64754
|
+
},
|
|
64755
|
+
boxBounce2: {
|
|
64756
|
+
interval: 100,
|
|
64757
|
+
frames: [
|
|
64758
|
+
"\u258C",
|
|
64759
|
+
"\u2580",
|
|
64760
|
+
"\u2590",
|
|
64761
|
+
"\u2584"
|
|
64762
|
+
]
|
|
64763
|
+
},
|
|
64764
|
+
triangle: {
|
|
64765
|
+
interval: 50,
|
|
64766
|
+
frames: [
|
|
64767
|
+
"\u25E2",
|
|
64768
|
+
"\u25E3",
|
|
64769
|
+
"\u25E4",
|
|
64770
|
+
"\u25E5"
|
|
64771
|
+
]
|
|
64772
|
+
},
|
|
64773
|
+
binary: {
|
|
64774
|
+
interval: 80,
|
|
64775
|
+
frames: [
|
|
64776
|
+
"010010",
|
|
64777
|
+
"001100",
|
|
64778
|
+
"100101",
|
|
64779
|
+
"111010",
|
|
64780
|
+
"111101",
|
|
64781
|
+
"010111",
|
|
64782
|
+
"101011",
|
|
64783
|
+
"111000",
|
|
64784
|
+
"110011",
|
|
64785
|
+
"110101"
|
|
64786
|
+
]
|
|
64787
|
+
},
|
|
64788
|
+
arc: {
|
|
64789
|
+
interval: 100,
|
|
64790
|
+
frames: [
|
|
64791
|
+
"\u25DC",
|
|
64792
|
+
"\u25E0",
|
|
64793
|
+
"\u25DD",
|
|
64794
|
+
"\u25DE",
|
|
64795
|
+
"\u25E1",
|
|
64796
|
+
"\u25DF"
|
|
64797
|
+
]
|
|
64798
|
+
},
|
|
64799
|
+
circle: {
|
|
64800
|
+
interval: 120,
|
|
64801
|
+
frames: [
|
|
64802
|
+
"\u25E1",
|
|
64803
|
+
"\u2299",
|
|
64804
|
+
"\u25E0"
|
|
64805
|
+
]
|
|
64806
|
+
},
|
|
64807
|
+
squareCorners: {
|
|
64808
|
+
interval: 180,
|
|
64809
|
+
frames: [
|
|
64810
|
+
"\u25F0",
|
|
64811
|
+
"\u25F3",
|
|
64812
|
+
"\u25F2",
|
|
64813
|
+
"\u25F1"
|
|
64814
|
+
]
|
|
64815
|
+
},
|
|
64816
|
+
circleQuarters: {
|
|
64817
|
+
interval: 120,
|
|
64818
|
+
frames: [
|
|
64819
|
+
"\u25F4",
|
|
64820
|
+
"\u25F7",
|
|
64821
|
+
"\u25F6",
|
|
64822
|
+
"\u25F5"
|
|
64823
|
+
]
|
|
64824
|
+
},
|
|
64825
|
+
circleHalves: {
|
|
64826
|
+
interval: 50,
|
|
64827
|
+
frames: [
|
|
64828
|
+
"\u25D0",
|
|
64829
|
+
"\u25D3",
|
|
64830
|
+
"\u25D1",
|
|
64831
|
+
"\u25D2"
|
|
64832
|
+
]
|
|
64833
|
+
},
|
|
64834
|
+
squish: {
|
|
64835
|
+
interval: 100,
|
|
64836
|
+
frames: [
|
|
64837
|
+
"\u256B",
|
|
64838
|
+
"\u256A"
|
|
64839
|
+
]
|
|
64840
|
+
},
|
|
64841
|
+
toggle: {
|
|
64842
|
+
interval: 250,
|
|
64843
|
+
frames: [
|
|
64844
|
+
"\u22B6",
|
|
64845
|
+
"\u22B7"
|
|
64846
|
+
]
|
|
64847
|
+
},
|
|
64848
|
+
toggle2: {
|
|
64849
|
+
interval: 80,
|
|
64850
|
+
frames: [
|
|
64851
|
+
"\u25AB",
|
|
64852
|
+
"\u25AA"
|
|
64853
|
+
]
|
|
64854
|
+
},
|
|
64855
|
+
toggle3: {
|
|
64856
|
+
interval: 120,
|
|
64857
|
+
frames: [
|
|
64858
|
+
"\u25A1",
|
|
64859
|
+
"\u25A0"
|
|
64860
|
+
]
|
|
64861
|
+
},
|
|
64862
|
+
toggle4: {
|
|
64863
|
+
interval: 100,
|
|
64864
|
+
frames: [
|
|
64865
|
+
"\u25A0",
|
|
64866
|
+
"\u25A1",
|
|
64867
|
+
"\u25AA",
|
|
64868
|
+
"\u25AB"
|
|
64869
|
+
]
|
|
64870
|
+
},
|
|
64871
|
+
toggle5: {
|
|
64872
|
+
interval: 100,
|
|
64873
|
+
frames: [
|
|
64874
|
+
"\u25AE",
|
|
64875
|
+
"\u25AF"
|
|
64876
|
+
]
|
|
64877
|
+
},
|
|
64878
|
+
toggle6: {
|
|
64879
|
+
interval: 300,
|
|
64880
|
+
frames: [
|
|
64881
|
+
"\u101D",
|
|
64882
|
+
"\u1040"
|
|
64883
|
+
]
|
|
64884
|
+
},
|
|
64885
|
+
toggle7: {
|
|
64886
|
+
interval: 80,
|
|
64887
|
+
frames: [
|
|
64888
|
+
"\u29BE",
|
|
64889
|
+
"\u29BF"
|
|
64890
|
+
]
|
|
64891
|
+
},
|
|
64892
|
+
toggle8: {
|
|
64893
|
+
interval: 100,
|
|
64894
|
+
frames: [
|
|
64895
|
+
"\u25CD",
|
|
64896
|
+
"\u25CC"
|
|
64897
|
+
]
|
|
64898
|
+
},
|
|
64899
|
+
toggle9: {
|
|
64900
|
+
interval: 100,
|
|
64901
|
+
frames: [
|
|
64902
|
+
"\u25C9",
|
|
64903
|
+
"\u25CE"
|
|
64904
|
+
]
|
|
64905
|
+
},
|
|
64906
|
+
toggle10: {
|
|
64907
|
+
interval: 100,
|
|
64908
|
+
frames: [
|
|
64909
|
+
"\u3282",
|
|
64910
|
+
"\u3280",
|
|
64911
|
+
"\u3281"
|
|
64912
|
+
]
|
|
64913
|
+
},
|
|
64914
|
+
toggle11: {
|
|
64915
|
+
interval: 50,
|
|
64916
|
+
frames: [
|
|
64917
|
+
"\u29C7",
|
|
64918
|
+
"\u29C6"
|
|
64919
|
+
]
|
|
64920
|
+
},
|
|
64921
|
+
toggle12: {
|
|
64922
|
+
interval: 120,
|
|
64923
|
+
frames: [
|
|
64924
|
+
"\u2617",
|
|
64925
|
+
"\u2616"
|
|
64926
|
+
]
|
|
64927
|
+
},
|
|
64928
|
+
toggle13: {
|
|
64929
|
+
interval: 80,
|
|
64930
|
+
frames: [
|
|
64931
|
+
"=",
|
|
64932
|
+
"*",
|
|
64933
|
+
"-"
|
|
64934
|
+
]
|
|
64935
|
+
},
|
|
64936
|
+
arrow: {
|
|
64937
|
+
interval: 100,
|
|
64938
|
+
frames: [
|
|
64939
|
+
"\u2190",
|
|
64940
|
+
"\u2196",
|
|
64941
|
+
"\u2191",
|
|
64942
|
+
"\u2197",
|
|
64943
|
+
"\u2192",
|
|
64944
|
+
"\u2198",
|
|
64945
|
+
"\u2193",
|
|
64946
|
+
"\u2199"
|
|
64947
|
+
]
|
|
64948
|
+
},
|
|
64949
|
+
arrow2: {
|
|
64950
|
+
interval: 80,
|
|
64951
|
+
frames: [
|
|
64952
|
+
"\u2B06\uFE0F ",
|
|
64953
|
+
"\u2197\uFE0F ",
|
|
64954
|
+
"\u27A1\uFE0F ",
|
|
64955
|
+
"\u2198\uFE0F ",
|
|
64956
|
+
"\u2B07\uFE0F ",
|
|
64957
|
+
"\u2199\uFE0F ",
|
|
64958
|
+
"\u2B05\uFE0F ",
|
|
64959
|
+
"\u2196\uFE0F "
|
|
64960
|
+
]
|
|
64961
|
+
},
|
|
64962
|
+
arrow3: {
|
|
64963
|
+
interval: 120,
|
|
64964
|
+
frames: [
|
|
64965
|
+
"\u25B9\u25B9\u25B9\u25B9\u25B9",
|
|
64966
|
+
"\u25B8\u25B9\u25B9\u25B9\u25B9",
|
|
64967
|
+
"\u25B9\u25B8\u25B9\u25B9\u25B9",
|
|
64968
|
+
"\u25B9\u25B9\u25B8\u25B9\u25B9",
|
|
64969
|
+
"\u25B9\u25B9\u25B9\u25B8\u25B9",
|
|
64970
|
+
"\u25B9\u25B9\u25B9\u25B9\u25B8"
|
|
64971
|
+
]
|
|
64972
|
+
},
|
|
64973
|
+
bouncingBar: {
|
|
64974
|
+
interval: 80,
|
|
64975
|
+
frames: [
|
|
64976
|
+
"[ ]",
|
|
64977
|
+
"[= ]",
|
|
64978
|
+
"[== ]",
|
|
64979
|
+
"[=== ]",
|
|
64980
|
+
"[====]",
|
|
64981
|
+
"[ ===]",
|
|
64982
|
+
"[ ==]",
|
|
64983
|
+
"[ =]",
|
|
64984
|
+
"[ ]",
|
|
64985
|
+
"[ =]",
|
|
64986
|
+
"[ ==]",
|
|
64987
|
+
"[ ===]",
|
|
64988
|
+
"[====]",
|
|
64989
|
+
"[=== ]",
|
|
64990
|
+
"[== ]",
|
|
64991
|
+
"[= ]"
|
|
64992
|
+
]
|
|
64993
|
+
},
|
|
64994
|
+
bouncingBall: {
|
|
64995
|
+
interval: 80,
|
|
64996
|
+
frames: [
|
|
64997
|
+
"( \u25CF )",
|
|
64998
|
+
"( \u25CF )",
|
|
64999
|
+
"( \u25CF )",
|
|
65000
|
+
"( \u25CF )",
|
|
65001
|
+
"( \u25CF)",
|
|
65002
|
+
"( \u25CF )",
|
|
65003
|
+
"( \u25CF )",
|
|
65004
|
+
"( \u25CF )",
|
|
65005
|
+
"( \u25CF )",
|
|
65006
|
+
"(\u25CF )"
|
|
65007
|
+
]
|
|
65008
|
+
},
|
|
65009
|
+
smiley: {
|
|
65010
|
+
interval: 200,
|
|
65011
|
+
frames: [
|
|
65012
|
+
"\u{1F604} ",
|
|
65013
|
+
"\u{1F61D} "
|
|
65014
|
+
]
|
|
65015
|
+
},
|
|
65016
|
+
monkey: {
|
|
65017
|
+
interval: 300,
|
|
65018
|
+
frames: [
|
|
65019
|
+
"\u{1F648} ",
|
|
65020
|
+
"\u{1F648} ",
|
|
65021
|
+
"\u{1F649} ",
|
|
65022
|
+
"\u{1F64A} "
|
|
65023
|
+
]
|
|
65024
|
+
},
|
|
65025
|
+
hearts: {
|
|
65026
|
+
interval: 100,
|
|
65027
|
+
frames: [
|
|
65028
|
+
"\u{1F49B} ",
|
|
65029
|
+
"\u{1F499} ",
|
|
65030
|
+
"\u{1F49C} ",
|
|
65031
|
+
"\u{1F49A} ",
|
|
65032
|
+
"\u2764\uFE0F "
|
|
65033
|
+
]
|
|
65034
|
+
},
|
|
65035
|
+
clock: {
|
|
65036
|
+
interval: 100,
|
|
65037
|
+
frames: [
|
|
65038
|
+
"\u{1F55B} ",
|
|
65039
|
+
"\u{1F550} ",
|
|
65040
|
+
"\u{1F551} ",
|
|
65041
|
+
"\u{1F552} ",
|
|
65042
|
+
"\u{1F553} ",
|
|
65043
|
+
"\u{1F554} ",
|
|
65044
|
+
"\u{1F555} ",
|
|
65045
|
+
"\u{1F556} ",
|
|
65046
|
+
"\u{1F557} ",
|
|
65047
|
+
"\u{1F558} ",
|
|
65048
|
+
"\u{1F559} ",
|
|
65049
|
+
"\u{1F55A} "
|
|
65050
|
+
]
|
|
65051
|
+
},
|
|
65052
|
+
earth: {
|
|
65053
|
+
interval: 180,
|
|
65054
|
+
frames: [
|
|
65055
|
+
"\u{1F30D} ",
|
|
65056
|
+
"\u{1F30E} ",
|
|
65057
|
+
"\u{1F30F} "
|
|
65058
|
+
]
|
|
65059
|
+
},
|
|
65060
|
+
material: {
|
|
65061
|
+
interval: 17,
|
|
65062
|
+
frames: [
|
|
65063
|
+
"\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
|
|
65064
|
+
"\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
|
|
65065
|
+
"\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
|
|
65066
|
+
"\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
|
|
65067
|
+
"\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
|
|
65068
|
+
"\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
|
|
65069
|
+
"\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
|
|
65070
|
+
"\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
|
|
65071
|
+
"\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
|
|
65072
|
+
"\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
|
|
65073
|
+
"\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
|
|
65074
|
+
"\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
|
|
65075
|
+
"\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
|
|
65076
|
+
"\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581",
|
|
65077
|
+
"\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581",
|
|
65078
|
+
"\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581",
|
|
65079
|
+
"\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581",
|
|
65080
|
+
"\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581",
|
|
65081
|
+
"\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581",
|
|
65082
|
+
"\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581",
|
|
65083
|
+
"\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581",
|
|
65084
|
+
"\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581",
|
|
65085
|
+
"\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581",
|
|
65086
|
+
"\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581",
|
|
65087
|
+
"\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581",
|
|
65088
|
+
"\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581",
|
|
65089
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
|
|
65090
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
|
|
65091
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
|
|
65092
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
|
|
65093
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
|
|
65094
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
|
|
65095
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
|
|
65096
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
|
|
65097
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
|
|
65098
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
|
|
65099
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
|
|
65100
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
|
|
65101
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588",
|
|
65102
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588",
|
|
65103
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588",
|
|
65104
|
+
"\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588",
|
|
65105
|
+
"\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588",
|
|
65106
|
+
"\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588",
|
|
65107
|
+
"\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588",
|
|
65108
|
+
"\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588",
|
|
65109
|
+
"\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588",
|
|
65110
|
+
"\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588",
|
|
65111
|
+
"\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588",
|
|
65112
|
+
"\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
|
|
65113
|
+
"\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
|
|
65114
|
+
"\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
|
|
65115
|
+
"\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
|
|
65116
|
+
"\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
|
|
65117
|
+
"\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
|
|
65118
|
+
"\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
|
|
65119
|
+
"\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
|
|
65120
|
+
"\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581",
|
|
65121
|
+
"\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581\u2581",
|
|
65122
|
+
"\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581",
|
|
65123
|
+
"\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581\u2581",
|
|
65124
|
+
"\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581\u2581",
|
|
65125
|
+
"\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581",
|
|
65126
|
+
"\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581",
|
|
65127
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581",
|
|
65128
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581",
|
|
65129
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581\u2581",
|
|
65130
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581",
|
|
65131
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581\u2581",
|
|
65132
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581",
|
|
65133
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581",
|
|
65134
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581",
|
|
65135
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581",
|
|
65136
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2581",
|
|
65137
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
|
|
65138
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588\u2588\u2588",
|
|
65139
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588\u2588",
|
|
65140
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588",
|
|
65141
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588",
|
|
65142
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588\u2588",
|
|
65143
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588",
|
|
65144
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588\u2588",
|
|
65145
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588",
|
|
65146
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588",
|
|
65147
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588\u2588",
|
|
65148
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588",
|
|
65149
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588",
|
|
65150
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2588",
|
|
65151
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
|
|
65152
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
|
|
65153
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581",
|
|
65154
|
+
"\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581\u2581"
|
|
65155
|
+
]
|
|
65156
|
+
},
|
|
65157
|
+
moon: {
|
|
65158
|
+
interval: 80,
|
|
65159
|
+
frames: [
|
|
65160
|
+
"\u{1F311} ",
|
|
65161
|
+
"\u{1F312} ",
|
|
65162
|
+
"\u{1F313} ",
|
|
65163
|
+
"\u{1F314} ",
|
|
65164
|
+
"\u{1F315} ",
|
|
65165
|
+
"\u{1F316} ",
|
|
65166
|
+
"\u{1F317} ",
|
|
65167
|
+
"\u{1F318} "
|
|
65168
|
+
]
|
|
65169
|
+
},
|
|
65170
|
+
runner: {
|
|
65171
|
+
interval: 140,
|
|
65172
|
+
frames: [
|
|
65173
|
+
"\u{1F6B6} ",
|
|
65174
|
+
"\u{1F3C3} "
|
|
65175
|
+
]
|
|
65176
|
+
},
|
|
65177
|
+
pong: {
|
|
65178
|
+
interval: 80,
|
|
65179
|
+
frames: [
|
|
65180
|
+
"\u2590\u2802 \u258C",
|
|
65181
|
+
"\u2590\u2808 \u258C",
|
|
65182
|
+
"\u2590 \u2802 \u258C",
|
|
65183
|
+
"\u2590 \u2820 \u258C",
|
|
65184
|
+
"\u2590 \u2840 \u258C",
|
|
65185
|
+
"\u2590 \u2820 \u258C",
|
|
65186
|
+
"\u2590 \u2802 \u258C",
|
|
65187
|
+
"\u2590 \u2808 \u258C",
|
|
65188
|
+
"\u2590 \u2802 \u258C",
|
|
65189
|
+
"\u2590 \u2820 \u258C",
|
|
65190
|
+
"\u2590 \u2840 \u258C",
|
|
65191
|
+
"\u2590 \u2820 \u258C",
|
|
65192
|
+
"\u2590 \u2802 \u258C",
|
|
65193
|
+
"\u2590 \u2808 \u258C",
|
|
65194
|
+
"\u2590 \u2802\u258C",
|
|
65195
|
+
"\u2590 \u2820\u258C",
|
|
65196
|
+
"\u2590 \u2840\u258C",
|
|
65197
|
+
"\u2590 \u2820 \u258C",
|
|
65198
|
+
"\u2590 \u2802 \u258C",
|
|
65199
|
+
"\u2590 \u2808 \u258C",
|
|
65200
|
+
"\u2590 \u2802 \u258C",
|
|
65201
|
+
"\u2590 \u2820 \u258C",
|
|
65202
|
+
"\u2590 \u2840 \u258C",
|
|
65203
|
+
"\u2590 \u2820 \u258C",
|
|
65204
|
+
"\u2590 \u2802 \u258C",
|
|
65205
|
+
"\u2590 \u2808 \u258C",
|
|
65206
|
+
"\u2590 \u2802 \u258C",
|
|
65207
|
+
"\u2590 \u2820 \u258C",
|
|
65208
|
+
"\u2590 \u2840 \u258C",
|
|
65209
|
+
"\u2590\u2820 \u258C"
|
|
65210
|
+
]
|
|
65211
|
+
},
|
|
65212
|
+
shark: {
|
|
65213
|
+
interval: 120,
|
|
65214
|
+
frames: [
|
|
65215
|
+
"\u2590|\\____________\u258C",
|
|
65216
|
+
"\u2590_|\\___________\u258C",
|
|
65217
|
+
"\u2590__|\\__________\u258C",
|
|
65218
|
+
"\u2590___|\\_________\u258C",
|
|
65219
|
+
"\u2590____|\\________\u258C",
|
|
65220
|
+
"\u2590_____|\\_______\u258C",
|
|
65221
|
+
"\u2590______|\\______\u258C",
|
|
65222
|
+
"\u2590_______|\\_____\u258C",
|
|
65223
|
+
"\u2590________|\\____\u258C",
|
|
65224
|
+
"\u2590_________|\\___\u258C",
|
|
65225
|
+
"\u2590__________|\\__\u258C",
|
|
65226
|
+
"\u2590___________|\\_\u258C",
|
|
65227
|
+
"\u2590____________|\\\u258C",
|
|
65228
|
+
"\u2590____________/|\u258C",
|
|
65229
|
+
"\u2590___________/|_\u258C",
|
|
65230
|
+
"\u2590__________/|__\u258C",
|
|
65231
|
+
"\u2590_________/|___\u258C",
|
|
65232
|
+
"\u2590________/|____\u258C",
|
|
65233
|
+
"\u2590_______/|_____\u258C",
|
|
65234
|
+
"\u2590______/|______\u258C",
|
|
65235
|
+
"\u2590_____/|_______\u258C",
|
|
65236
|
+
"\u2590____/|________\u258C",
|
|
65237
|
+
"\u2590___/|_________\u258C",
|
|
65238
|
+
"\u2590__/|__________\u258C",
|
|
65239
|
+
"\u2590_/|___________\u258C",
|
|
65240
|
+
"\u2590/|____________\u258C"
|
|
65241
|
+
]
|
|
65242
|
+
},
|
|
65243
|
+
dqpb: {
|
|
65244
|
+
interval: 100,
|
|
65245
|
+
frames: [
|
|
65246
|
+
"d",
|
|
65247
|
+
"q",
|
|
65248
|
+
"p",
|
|
65249
|
+
"b"
|
|
65250
|
+
]
|
|
65251
|
+
},
|
|
65252
|
+
weather: {
|
|
65253
|
+
interval: 100,
|
|
65254
|
+
frames: [
|
|
65255
|
+
"\u2600\uFE0F ",
|
|
65256
|
+
"\u2600\uFE0F ",
|
|
65257
|
+
"\u2600\uFE0F ",
|
|
65258
|
+
"\u{1F324} ",
|
|
65259
|
+
"\u26C5\uFE0F ",
|
|
65260
|
+
"\u{1F325} ",
|
|
65261
|
+
"\u2601\uFE0F ",
|
|
65262
|
+
"\u{1F327} ",
|
|
65263
|
+
"\u{1F328} ",
|
|
65264
|
+
"\u{1F327} ",
|
|
65265
|
+
"\u{1F328} ",
|
|
65266
|
+
"\u{1F327} ",
|
|
65267
|
+
"\u{1F328} ",
|
|
65268
|
+
"\u26C8 ",
|
|
65269
|
+
"\u{1F328} ",
|
|
65270
|
+
"\u{1F327} ",
|
|
65271
|
+
"\u{1F328} ",
|
|
65272
|
+
"\u2601\uFE0F ",
|
|
65273
|
+
"\u{1F325} ",
|
|
65274
|
+
"\u26C5\uFE0F ",
|
|
65275
|
+
"\u{1F324} ",
|
|
65276
|
+
"\u2600\uFE0F ",
|
|
65277
|
+
"\u2600\uFE0F "
|
|
65278
|
+
]
|
|
65279
|
+
},
|
|
65280
|
+
christmas: {
|
|
65281
|
+
interval: 400,
|
|
65282
|
+
frames: [
|
|
65283
|
+
"\u{1F332}",
|
|
65284
|
+
"\u{1F384}"
|
|
65285
|
+
]
|
|
65286
|
+
},
|
|
65287
|
+
grenade: {
|
|
65288
|
+
interval: 80,
|
|
65289
|
+
frames: [
|
|
65290
|
+
"\u060C ",
|
|
65291
|
+
"\u2032 ",
|
|
65292
|
+
" \xB4 ",
|
|
65293
|
+
" \u203E ",
|
|
65294
|
+
" \u2E0C",
|
|
65295
|
+
" \u2E0A",
|
|
65296
|
+
" |",
|
|
65297
|
+
" \u204E",
|
|
65298
|
+
" \u2055",
|
|
65299
|
+
" \u0DF4 ",
|
|
65300
|
+
" \u2053",
|
|
65301
|
+
" ",
|
|
65302
|
+
" ",
|
|
65303
|
+
" "
|
|
65304
|
+
]
|
|
65305
|
+
},
|
|
65306
|
+
point: {
|
|
65307
|
+
interval: 125,
|
|
65308
|
+
frames: [
|
|
65309
|
+
"\u2219\u2219\u2219",
|
|
65310
|
+
"\u25CF\u2219\u2219",
|
|
65311
|
+
"\u2219\u25CF\u2219",
|
|
65312
|
+
"\u2219\u2219\u25CF",
|
|
65313
|
+
"\u2219\u2219\u2219"
|
|
65314
|
+
]
|
|
65315
|
+
},
|
|
65316
|
+
layer: {
|
|
65317
|
+
interval: 150,
|
|
65318
|
+
frames: [
|
|
65319
|
+
"-",
|
|
65320
|
+
"=",
|
|
65321
|
+
"\u2261"
|
|
65322
|
+
]
|
|
65323
|
+
},
|
|
65324
|
+
betaWave: {
|
|
65325
|
+
interval: 80,
|
|
65326
|
+
frames: [
|
|
65327
|
+
"\u03C1\u03B2\u03B2\u03B2\u03B2\u03B2\u03B2",
|
|
65328
|
+
"\u03B2\u03C1\u03B2\u03B2\u03B2\u03B2\u03B2",
|
|
65329
|
+
"\u03B2\u03B2\u03C1\u03B2\u03B2\u03B2\u03B2",
|
|
65330
|
+
"\u03B2\u03B2\u03B2\u03C1\u03B2\u03B2\u03B2",
|
|
65331
|
+
"\u03B2\u03B2\u03B2\u03B2\u03C1\u03B2\u03B2",
|
|
65332
|
+
"\u03B2\u03B2\u03B2\u03B2\u03B2\u03C1\u03B2",
|
|
65333
|
+
"\u03B2\u03B2\u03B2\u03B2\u03B2\u03B2\u03C1"
|
|
65334
|
+
]
|
|
65335
|
+
},
|
|
65336
|
+
fingerDance: {
|
|
65337
|
+
interval: 160,
|
|
65338
|
+
frames: [
|
|
65339
|
+
"\u{1F918} ",
|
|
65340
|
+
"\u{1F91F} ",
|
|
65341
|
+
"\u{1F596} ",
|
|
65342
|
+
"\u270B ",
|
|
65343
|
+
"\u{1F91A} ",
|
|
65344
|
+
"\u{1F446} "
|
|
65345
|
+
]
|
|
65346
|
+
},
|
|
65347
|
+
fistBump: {
|
|
65348
|
+
interval: 80,
|
|
65349
|
+
frames: [
|
|
65350
|
+
"\u{1F91C}\u3000\u3000\u3000\u3000\u{1F91B} ",
|
|
65351
|
+
"\u{1F91C}\u3000\u3000\u3000\u3000\u{1F91B} ",
|
|
65352
|
+
"\u{1F91C}\u3000\u3000\u3000\u3000\u{1F91B} ",
|
|
65353
|
+
"\u3000\u{1F91C}\u3000\u3000\u{1F91B}\u3000 ",
|
|
65354
|
+
"\u3000\u3000\u{1F91C}\u{1F91B}\u3000\u3000 ",
|
|
65355
|
+
"\u3000\u{1F91C}\u2728\u{1F91B}\u3000\u3000 ",
|
|
65356
|
+
"\u{1F91C}\u3000\u2728\u3000\u{1F91B}\u3000 "
|
|
65357
|
+
]
|
|
65358
|
+
},
|
|
65359
|
+
soccerHeader: {
|
|
65360
|
+
interval: 80,
|
|
65361
|
+
frames: [
|
|
65362
|
+
" \u{1F9D1}\u26BD\uFE0F \u{1F9D1} ",
|
|
65363
|
+
"\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ",
|
|
65364
|
+
"\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ",
|
|
65365
|
+
"\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ",
|
|
65366
|
+
"\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ",
|
|
65367
|
+
"\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ",
|
|
65368
|
+
"\u{1F9D1} \u26BD\uFE0F\u{1F9D1} ",
|
|
65369
|
+
"\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ",
|
|
65370
|
+
"\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ",
|
|
65371
|
+
"\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ",
|
|
65372
|
+
"\u{1F9D1} \u26BD\uFE0F \u{1F9D1} ",
|
|
65373
|
+
"\u{1F9D1} \u26BD\uFE0F \u{1F9D1} "
|
|
65374
|
+
]
|
|
65375
|
+
},
|
|
65376
|
+
mindblown: {
|
|
65377
|
+
interval: 160,
|
|
65378
|
+
frames: [
|
|
65379
|
+
"\u{1F610} ",
|
|
65380
|
+
"\u{1F610} ",
|
|
65381
|
+
"\u{1F62E} ",
|
|
65382
|
+
"\u{1F62E} ",
|
|
65383
|
+
"\u{1F626} ",
|
|
65384
|
+
"\u{1F626} ",
|
|
65385
|
+
"\u{1F627} ",
|
|
65386
|
+
"\u{1F627} ",
|
|
65387
|
+
"\u{1F92F} ",
|
|
65388
|
+
"\u{1F4A5} ",
|
|
65389
|
+
"\u2728 ",
|
|
65390
|
+
"\u3000 ",
|
|
65391
|
+
"\u3000 ",
|
|
65392
|
+
"\u3000 "
|
|
65393
|
+
]
|
|
65394
|
+
},
|
|
65395
|
+
speaker: {
|
|
65396
|
+
interval: 160,
|
|
65397
|
+
frames: [
|
|
65398
|
+
"\u{1F508} ",
|
|
65399
|
+
"\u{1F509} ",
|
|
65400
|
+
"\u{1F50A} ",
|
|
65401
|
+
"\u{1F509} "
|
|
65402
|
+
]
|
|
65403
|
+
},
|
|
65404
|
+
orangePulse: {
|
|
65405
|
+
interval: 100,
|
|
65406
|
+
frames: [
|
|
65407
|
+
"\u{1F538} ",
|
|
65408
|
+
"\u{1F536} ",
|
|
65409
|
+
"\u{1F7E0} ",
|
|
65410
|
+
"\u{1F7E0} ",
|
|
65411
|
+
"\u{1F536} "
|
|
65412
|
+
]
|
|
65413
|
+
},
|
|
65414
|
+
bluePulse: {
|
|
65415
|
+
interval: 100,
|
|
65416
|
+
frames: [
|
|
65417
|
+
"\u{1F539} ",
|
|
65418
|
+
"\u{1F537} ",
|
|
65419
|
+
"\u{1F535} ",
|
|
65420
|
+
"\u{1F535} ",
|
|
65421
|
+
"\u{1F537} "
|
|
65422
|
+
]
|
|
65423
|
+
},
|
|
65424
|
+
orangeBluePulse: {
|
|
65425
|
+
interval: 100,
|
|
65426
|
+
frames: [
|
|
65427
|
+
"\u{1F538} ",
|
|
65428
|
+
"\u{1F536} ",
|
|
65429
|
+
"\u{1F7E0} ",
|
|
65430
|
+
"\u{1F7E0} ",
|
|
65431
|
+
"\u{1F536} ",
|
|
65432
|
+
"\u{1F539} ",
|
|
65433
|
+
"\u{1F537} ",
|
|
65434
|
+
"\u{1F535} ",
|
|
65435
|
+
"\u{1F535} ",
|
|
65436
|
+
"\u{1F537} "
|
|
65437
|
+
]
|
|
65438
|
+
},
|
|
65439
|
+
timeTravel: {
|
|
65440
|
+
interval: 100,
|
|
65441
|
+
frames: [
|
|
65442
|
+
"\u{1F55B} ",
|
|
65443
|
+
"\u{1F55A} ",
|
|
65444
|
+
"\u{1F559} ",
|
|
65445
|
+
"\u{1F558} ",
|
|
65446
|
+
"\u{1F557} ",
|
|
65447
|
+
"\u{1F556} ",
|
|
65448
|
+
"\u{1F555} ",
|
|
65449
|
+
"\u{1F554} ",
|
|
65450
|
+
"\u{1F553} ",
|
|
65451
|
+
"\u{1F552} ",
|
|
65452
|
+
"\u{1F551} ",
|
|
65453
|
+
"\u{1F550} "
|
|
65454
|
+
]
|
|
65455
|
+
},
|
|
65456
|
+
aesthetic: {
|
|
65457
|
+
interval: 80,
|
|
65458
|
+
frames: [
|
|
65459
|
+
"\u25B0\u25B1\u25B1\u25B1\u25B1\u25B1\u25B1",
|
|
65460
|
+
"\u25B0\u25B0\u25B1\u25B1\u25B1\u25B1\u25B1",
|
|
65461
|
+
"\u25B0\u25B0\u25B0\u25B1\u25B1\u25B1\u25B1",
|
|
65462
|
+
"\u25B0\u25B0\u25B0\u25B0\u25B1\u25B1\u25B1",
|
|
65463
|
+
"\u25B0\u25B0\u25B0\u25B0\u25B0\u25B1\u25B1",
|
|
65464
|
+
"\u25B0\u25B0\u25B0\u25B0\u25B0\u25B0\u25B1",
|
|
65465
|
+
"\u25B0\u25B0\u25B0\u25B0\u25B0\u25B0\u25B0",
|
|
65466
|
+
"\u25B0\u25B1\u25B1\u25B1\u25B1\u25B1\u25B1"
|
|
65467
|
+
]
|
|
65468
|
+
},
|
|
65469
|
+
dwarfFortress: {
|
|
65470
|
+
interval: 80,
|
|
65471
|
+
frames: [
|
|
65472
|
+
" \u2588\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65473
|
+
"\u263A\u2588\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65474
|
+
"\u263A\u2588\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65475
|
+
"\u263A\u2593\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65476
|
+
"\u263A\u2593\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65477
|
+
"\u263A\u2592\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65478
|
+
"\u263A\u2592\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65479
|
+
"\u263A\u2591\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65480
|
+
"\u263A\u2591\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65481
|
+
"\u263A \u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65482
|
+
" \u263A\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65483
|
+
" \u263A\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65484
|
+
" \u263A\u2593\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65485
|
+
" \u263A\u2593\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65486
|
+
" \u263A\u2592\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65487
|
+
" \u263A\u2592\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65488
|
+
" \u263A\u2591\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65489
|
+
" \u263A\u2591\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65490
|
+
" \u263A \u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65491
|
+
" \u263A\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65492
|
+
" \u263A\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65493
|
+
" \u263A\u2593\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65494
|
+
" \u263A\u2593\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65495
|
+
" \u263A\u2592\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65496
|
+
" \u263A\u2592\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65497
|
+
" \u263A\u2591\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65498
|
+
" \u263A\u2591\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65499
|
+
" \u263A \u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65500
|
+
" \u263A\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65501
|
+
" \u263A\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65502
|
+
" \u263A\u2593\u2588\u2588\xA3\xA3\xA3 ",
|
|
65503
|
+
" \u263A\u2593\u2588\u2588\xA3\xA3\xA3 ",
|
|
65504
|
+
" \u263A\u2592\u2588\u2588\xA3\xA3\xA3 ",
|
|
65505
|
+
" \u263A\u2592\u2588\u2588\xA3\xA3\xA3 ",
|
|
65506
|
+
" \u263A\u2591\u2588\u2588\xA3\xA3\xA3 ",
|
|
65507
|
+
" \u263A\u2591\u2588\u2588\xA3\xA3\xA3 ",
|
|
65508
|
+
" \u263A \u2588\u2588\xA3\xA3\xA3 ",
|
|
65509
|
+
" \u263A\u2588\u2588\xA3\xA3\xA3 ",
|
|
65510
|
+
" \u263A\u2588\u2588\xA3\xA3\xA3 ",
|
|
65511
|
+
" \u263A\u2593\u2588\xA3\xA3\xA3 ",
|
|
65512
|
+
" \u263A\u2593\u2588\xA3\xA3\xA3 ",
|
|
65513
|
+
" \u263A\u2592\u2588\xA3\xA3\xA3 ",
|
|
65514
|
+
" \u263A\u2592\u2588\xA3\xA3\xA3 ",
|
|
65515
|
+
" \u263A\u2591\u2588\xA3\xA3\xA3 ",
|
|
65516
|
+
" \u263A\u2591\u2588\xA3\xA3\xA3 ",
|
|
65517
|
+
" \u263A \u2588\xA3\xA3\xA3 ",
|
|
65518
|
+
" \u263A\u2588\xA3\xA3\xA3 ",
|
|
65519
|
+
" \u263A\u2588\xA3\xA3\xA3 ",
|
|
65520
|
+
" \u263A\u2593\xA3\xA3\xA3 ",
|
|
65521
|
+
" \u263A\u2593\xA3\xA3\xA3 ",
|
|
65522
|
+
" \u263A\u2592\xA3\xA3\xA3 ",
|
|
65523
|
+
" \u263A\u2592\xA3\xA3\xA3 ",
|
|
65524
|
+
" \u263A\u2591\xA3\xA3\xA3 ",
|
|
65525
|
+
" \u263A\u2591\xA3\xA3\xA3 ",
|
|
65526
|
+
" \u263A \xA3\xA3\xA3 ",
|
|
65527
|
+
" \u263A\xA3\xA3\xA3 ",
|
|
65528
|
+
" \u263A\xA3\xA3\xA3 ",
|
|
65529
|
+
" \u263A\u2593\xA3\xA3 ",
|
|
65530
|
+
" \u263A\u2593\xA3\xA3 ",
|
|
65531
|
+
" \u263A\u2592\xA3\xA3 ",
|
|
65532
|
+
" \u263A\u2592\xA3\xA3 ",
|
|
65533
|
+
" \u263A\u2591\xA3\xA3 ",
|
|
65534
|
+
" \u263A\u2591\xA3\xA3 ",
|
|
65535
|
+
" \u263A \xA3\xA3 ",
|
|
65536
|
+
" \u263A\xA3\xA3 ",
|
|
65537
|
+
" \u263A\xA3\xA3 ",
|
|
65538
|
+
" \u263A\u2593\xA3 ",
|
|
65539
|
+
" \u263A\u2593\xA3 ",
|
|
65540
|
+
" \u263A\u2592\xA3 ",
|
|
65541
|
+
" \u263A\u2592\xA3 ",
|
|
65542
|
+
" \u263A\u2591\xA3 ",
|
|
65543
|
+
" \u263A\u2591\xA3 ",
|
|
65544
|
+
" \u263A \xA3 ",
|
|
65545
|
+
" \u263A\xA3 ",
|
|
65546
|
+
" \u263A\xA3 ",
|
|
65547
|
+
" \u263A\u2593 ",
|
|
65548
|
+
" \u263A\u2593 ",
|
|
65549
|
+
" \u263A\u2592 ",
|
|
65550
|
+
" \u263A\u2592 ",
|
|
65551
|
+
" \u263A\u2591 ",
|
|
65552
|
+
" \u263A\u2591 ",
|
|
65553
|
+
" \u263A ",
|
|
65554
|
+
" \u263A &",
|
|
65555
|
+
" \u263A \u263C&",
|
|
65556
|
+
" \u263A \u263C &",
|
|
65557
|
+
" \u263A\u263C &",
|
|
65558
|
+
" \u263A\u263C & ",
|
|
65559
|
+
" \u203C & ",
|
|
65560
|
+
" \u263A & ",
|
|
65561
|
+
" \u203C & ",
|
|
65562
|
+
" \u263A & ",
|
|
65563
|
+
" \u203C & ",
|
|
65564
|
+
" \u263A & ",
|
|
65565
|
+
"\u203C & ",
|
|
65566
|
+
" & ",
|
|
65567
|
+
" & ",
|
|
65568
|
+
" & \u2591 ",
|
|
65569
|
+
" & \u2592 ",
|
|
65570
|
+
" & \u2593 ",
|
|
65571
|
+
" & \xA3 ",
|
|
65572
|
+
" & \u2591\xA3 ",
|
|
65573
|
+
" & \u2592\xA3 ",
|
|
65574
|
+
" & \u2593\xA3 ",
|
|
65575
|
+
" & \xA3\xA3 ",
|
|
65576
|
+
" & \u2591\xA3\xA3 ",
|
|
65577
|
+
" & \u2592\xA3\xA3 ",
|
|
65578
|
+
"& \u2593\xA3\xA3 ",
|
|
65579
|
+
"& \xA3\xA3\xA3 ",
|
|
65580
|
+
" \u2591\xA3\xA3\xA3 ",
|
|
65581
|
+
" \u2592\xA3\xA3\xA3 ",
|
|
65582
|
+
" \u2593\xA3\xA3\xA3 ",
|
|
65583
|
+
" \u2588\xA3\xA3\xA3 ",
|
|
65584
|
+
" \u2591\u2588\xA3\xA3\xA3 ",
|
|
65585
|
+
" \u2592\u2588\xA3\xA3\xA3 ",
|
|
65586
|
+
" \u2593\u2588\xA3\xA3\xA3 ",
|
|
65587
|
+
" \u2588\u2588\xA3\xA3\xA3 ",
|
|
65588
|
+
" \u2591\u2588\u2588\xA3\xA3\xA3 ",
|
|
65589
|
+
" \u2592\u2588\u2588\xA3\xA3\xA3 ",
|
|
65590
|
+
" \u2593\u2588\u2588\xA3\xA3\xA3 ",
|
|
65591
|
+
" \u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65592
|
+
" \u2591\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65593
|
+
" \u2592\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65594
|
+
" \u2593\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65595
|
+
" \u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65596
|
+
" \u2591\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65597
|
+
" \u2592\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65598
|
+
" \u2593\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65599
|
+
" \u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65600
|
+
" \u2591\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65601
|
+
" \u2592\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65602
|
+
" \u2593\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65603
|
+
" \u2588\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 ",
|
|
65604
|
+
" \u2588\u2588\u2588\u2588\u2588\u2588\xA3\xA3\xA3 "
|
|
65605
|
+
]
|
|
65606
|
+
}
|
|
65607
|
+
};
|
|
65608
|
+
}
|
|
65609
|
+
});
|
|
65610
|
+
|
|
65611
|
+
// ../node_modules/cli-spinners/index.js
|
|
65612
|
+
var require_cli_spinners = __commonJS({
|
|
65613
|
+
"../node_modules/cli-spinners/index.js"(exports2, module2) {
|
|
65614
|
+
"use strict";
|
|
65615
|
+
var spinners = Object.assign({}, require_spinners());
|
|
65616
|
+
var spinnersList = Object.keys(spinners);
|
|
65617
|
+
Object.defineProperty(spinners, "random", {
|
|
65618
|
+
get() {
|
|
65619
|
+
const randomIndex = Math.floor(Math.random() * spinnersList.length);
|
|
65620
|
+
const spinnerName = spinnersList[randomIndex];
|
|
65621
|
+
return spinners[spinnerName];
|
|
65622
|
+
}
|
|
65623
|
+
});
|
|
65624
|
+
module2.exports = spinners;
|
|
65625
|
+
}
|
|
65626
|
+
});
|
|
65627
|
+
|
|
65628
|
+
// ../node_modules/ora/node_modules/emoji-regex/index.js
|
|
65629
|
+
var require_emoji_regex2 = __commonJS({
|
|
65630
|
+
"../node_modules/ora/node_modules/emoji-regex/index.js"(exports2, module2) {
|
|
65631
|
+
module2.exports = () => {
|
|
65632
|
+
return /[#*0-9]\uFE0F?\u20E3|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26AA\u26B0\u26B1\u26BD\u26BE\u26C4\u26C8\u26CF\u26D1\u26E9\u26F0-\u26F5\u26F7\u26F8\u26FA\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2757\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B55\u3030\u303D\u3297\u3299]\uFE0F?|[\u261D\u270C\u270D](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?|[\u270A\u270B](?:\uD83C[\uDFFB-\uDFFF])?|[\u23E9-\u23EC\u23F0\u23F3\u25FD\u2693\u26A1\u26AB\u26C5\u26CE\u26D4\u26EA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2795-\u2797\u27B0\u27BF\u2B50]|\u26D3\uFE0F?(?:\u200D\uD83D\uDCA5)?|\u26F9(?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|\u2764\uFE0F?(?:\u200D(?:\uD83D\uDD25|\uD83E\uDE79))?|\uD83C(?:[\uDC04\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]\uFE0F?|[\uDF85\uDFC2\uDFC7](?:\uD83C[\uDFFB-\uDFFF])?|[\uDFC4\uDFCA](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDFCB\uDFCC](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF43\uDF45-\uDF4A\uDF4C-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uDDE6\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF]|\uDDE7\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF]|\uDDE8\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF7\uDDFA-\uDDFF]|\uDDE9\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF]|\uDDEA\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA]|\uDDEB\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7]|\uDDEC\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE]|\uDDED\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA]|\uDDEE\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9]|\uDDEF\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5]|\uDDF0\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF]|\uDDF1\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE]|\uDDF2\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF]|\uDDF3\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF]|\uDDF4\uD83C\uDDF2|\uDDF5\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE]|\uDDF6\uD83C\uDDE6|\uDDF7\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC]|\uDDF8\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF]|\uDDF9\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF]|\uDDFA\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF]|\uDDFB\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA]|\uDDFC\uD83C[\uDDEB\uDDF8]|\uDDFD\uD83C\uDDF0|\uDDFE\uD83C[\uDDEA\uDDF9]|\uDDFF\uD83C[\uDDE6\uDDF2\uDDFC]|\uDF44(?:\u200D\uD83D\uDFEB)?|\uDF4B(?:\u200D\uD83D\uDFE9)?|\uDFC3(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDFF3\uFE0F?(?:\u200D(?:\u26A7\uFE0F?|\uD83C\uDF08))?|\uDFF4(?:\u200D\u2620\uFE0F?|\uDB40\uDC67\uDB40\uDC62\uDB40(?:\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDC73\uDB40\uDC63\uDB40\uDC74|\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F)?)|\uD83D(?:[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3]\uFE0F?|[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC](?:\uD83C[\uDFFB-\uDFFF])?|[\uDC6E-\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4\uDEB5](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD74\uDD90](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?|[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC25\uDC27-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE41\uDE43\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED8\uDEDC-\uDEDF\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB\uDFF0]|\uDC08(?:\u200D\u2B1B)?|\uDC15(?:\u200D\uD83E\uDDBA)?|\uDC26(?:\u200D(?:\u2B1B|\uD83D\uDD25))?|\uDC3B(?:\u200D\u2744\uFE0F?)?|\uDC41\uFE0F?(?:\u200D\uD83D\uDDE8\uFE0F?)?|\uDC68(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDC68\uDC69]\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFC-\uDFFF])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFC-\uDFFF]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFD-\uDFFF]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFD\uDFFF]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFE])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFE]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?))?|\uDC69(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?[\uDC68\uDC69]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?|\uDC69\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?))|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFC-\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFC-\uDFFF]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFD-\uDFFF]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFD\uDFFF]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFB-\uDFFE])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFE]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFB-\uDFFE])))?))?|\uDD75(?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDE2E(?:\u200D\uD83D\uDCA8)?|\uDE35(?:\u200D\uD83D\uDCAB)?|\uDE36(?:\u200D\uD83C\uDF2B\uFE0F?)?|\uDE42(?:\u200D[\u2194\u2195]\uFE0F?)?|\uDEB6(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?)|\uD83E(?:[\uDD0C\uDD0F\uDD18-\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5\uDEC3-\uDEC5\uDEF0\uDEF2-\uDEF8](?:\uD83C[\uDFFB-\uDFFF])?|[\uDD26\uDD35\uDD37-\uDD39\uDD3C-\uDD3E\uDDB8\uDDB9\uDDCD\uDDCF\uDDD4\uDDD6-\uDDDD](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDDDE\uDDDF](?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD0D\uDD0E\uDD10-\uDD17\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCC\uDDD0\uDDE0-\uDDFF\uDE70-\uDE7C\uDE80-\uDE8A\uDE8E-\uDEC2\uDEC6\uDEC8\uDECD-\uDEDC\uDEDF-\uDEEA\uDEEF]|\uDDCE(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDDD1(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1|\uDDD1\u200D\uD83E\uDDD2(?:\u200D\uD83E\uDDD2)?|\uDDD2(?:\u200D\uD83E\uDDD2)?))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE])))?))?|\uDEF1(?:\uD83C(?:\uDFFB(?:\u200D\uD83E\uDEF2\uD83C[\uDFFC-\uDFFF])?|\uDFFC(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFD-\uDFFF])?|\uDFFD(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])?|\uDFFE(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFD\uDFFF])?|\uDFFF(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFE])?))?)/g;
|
|
65633
|
+
};
|
|
65634
|
+
}
|
|
65635
|
+
});
|
|
65636
|
+
|
|
63983
65637
|
// ../node_modules/commander/esm.mjs
|
|
63984
65638
|
var import_index = __toESM(require_commander(), 1);
|
|
63985
65639
|
var {
|
|
@@ -64246,8 +65900,8 @@ function escape$1(html2, encode) {
|
|
|
64246
65900
|
return html2;
|
|
64247
65901
|
}
|
|
64248
65902
|
var caret = /(^|[^\[])\^/g;
|
|
64249
|
-
function edit(
|
|
64250
|
-
let source = typeof
|
|
65903
|
+
function edit(regex2, opt) {
|
|
65904
|
+
let source = typeof regex2 === "string" ? regex2 : regex2.source;
|
|
64251
65905
|
opt = opt || "";
|
|
64252
65906
|
const obj = {
|
|
64253
65907
|
replace: (name, val) => {
|
|
@@ -67411,11 +69065,11 @@ var BULLET_POINT_REGEX = "\\*";
|
|
|
67411
69065
|
var NUMBERED_POINT_REGEX = "\\d+\\.";
|
|
67412
69066
|
var POINT_REGEX = "(?:" + [BULLET_POINT_REGEX, NUMBERED_POINT_REGEX].join("|") + ")";
|
|
67413
69067
|
function fixNestedLists(body, indent) {
|
|
67414
|
-
var
|
|
69068
|
+
var regex2 = new RegExp(
|
|
67415
69069
|
"(\\S(?: | )?)((?:" + indent + ")+)(" + POINT_REGEX + "(?:.*)+)$",
|
|
67416
69070
|
"gm"
|
|
67417
69071
|
);
|
|
67418
|
-
return body.replace(
|
|
69072
|
+
return body.replace(regex2, "$1\n" + indent + "$2$3");
|
|
67419
69073
|
}
|
|
67420
69074
|
var isPointedLine = function(line, indent) {
|
|
67421
69075
|
return line.match("^(?:" + indent + ")*" + POINT_REGEX);
|
|
@@ -67530,6 +69184,917 @@ function sanitizeTab(tab, fallbackTab) {
|
|
|
67530
69184
|
}
|
|
67531
69185
|
}
|
|
67532
69186
|
|
|
69187
|
+
// ../node_modules/ora/index.js
|
|
69188
|
+
var import_node_process8 = __toESM(require("node:process"), 1);
|
|
69189
|
+
|
|
69190
|
+
// ../node_modules/cli-cursor/index.js
|
|
69191
|
+
var import_node_process4 = __toESM(require("node:process"), 1);
|
|
69192
|
+
|
|
69193
|
+
// ../node_modules/restore-cursor/index.js
|
|
69194
|
+
var import_node_process3 = __toESM(require("node:process"), 1);
|
|
69195
|
+
|
|
69196
|
+
// ../node_modules/mimic-function/index.js
|
|
69197
|
+
var copyProperty = (to, from, property, ignoreNonConfigurable) => {
|
|
69198
|
+
if (property === "length" || property === "prototype") {
|
|
69199
|
+
return;
|
|
69200
|
+
}
|
|
69201
|
+
if (property === "arguments" || property === "caller") {
|
|
69202
|
+
return;
|
|
69203
|
+
}
|
|
69204
|
+
const toDescriptor = Object.getOwnPropertyDescriptor(to, property);
|
|
69205
|
+
const fromDescriptor = Object.getOwnPropertyDescriptor(from, property);
|
|
69206
|
+
if (!canCopyProperty(toDescriptor, fromDescriptor) && ignoreNonConfigurable) {
|
|
69207
|
+
return;
|
|
69208
|
+
}
|
|
69209
|
+
Object.defineProperty(to, property, fromDescriptor);
|
|
69210
|
+
};
|
|
69211
|
+
var canCopyProperty = function(toDescriptor, fromDescriptor) {
|
|
69212
|
+
return toDescriptor === void 0 || toDescriptor.configurable || toDescriptor.writable === fromDescriptor.writable && toDescriptor.enumerable === fromDescriptor.enumerable && toDescriptor.configurable === fromDescriptor.configurable && (toDescriptor.writable || toDescriptor.value === fromDescriptor.value);
|
|
69213
|
+
};
|
|
69214
|
+
var changePrototype = (to, from) => {
|
|
69215
|
+
const fromPrototype = Object.getPrototypeOf(from);
|
|
69216
|
+
if (fromPrototype === Object.getPrototypeOf(to)) {
|
|
69217
|
+
return;
|
|
69218
|
+
}
|
|
69219
|
+
Object.setPrototypeOf(to, fromPrototype);
|
|
69220
|
+
};
|
|
69221
|
+
var wrappedToString = (withName, fromBody) => `/* Wrapped ${withName}*/
|
|
69222
|
+
${fromBody}`;
|
|
69223
|
+
var toStringDescriptor = Object.getOwnPropertyDescriptor(Function.prototype, "toString");
|
|
69224
|
+
var toStringName = Object.getOwnPropertyDescriptor(Function.prototype.toString, "name");
|
|
69225
|
+
var changeToString = (to, from, name) => {
|
|
69226
|
+
const withName = name === "" ? "" : `with ${name.trim()}() `;
|
|
69227
|
+
const newToString = wrappedToString.bind(null, withName, from.toString());
|
|
69228
|
+
Object.defineProperty(newToString, "name", toStringName);
|
|
69229
|
+
const { writable, enumerable, configurable } = toStringDescriptor;
|
|
69230
|
+
Object.defineProperty(to, "toString", { value: newToString, writable, enumerable, configurable });
|
|
69231
|
+
};
|
|
69232
|
+
function mimicFunction(to, from, { ignoreNonConfigurable = false } = {}) {
|
|
69233
|
+
const { name } = to;
|
|
69234
|
+
for (const property of Reflect.ownKeys(from)) {
|
|
69235
|
+
copyProperty(to, from, property, ignoreNonConfigurable);
|
|
69236
|
+
}
|
|
69237
|
+
changePrototype(to, from);
|
|
69238
|
+
changeToString(to, from, name);
|
|
69239
|
+
return to;
|
|
69240
|
+
}
|
|
69241
|
+
|
|
69242
|
+
// ../node_modules/onetime/index.js
|
|
69243
|
+
var calledFunctions = /* @__PURE__ */ new WeakMap();
|
|
69244
|
+
var onetime = (function_, options2 = {}) => {
|
|
69245
|
+
if (typeof function_ !== "function") {
|
|
69246
|
+
throw new TypeError("Expected a function");
|
|
69247
|
+
}
|
|
69248
|
+
let returnValue;
|
|
69249
|
+
let callCount = 0;
|
|
69250
|
+
const functionName = function_.displayName || function_.name || "<anonymous>";
|
|
69251
|
+
const onetime2 = function(...arguments_) {
|
|
69252
|
+
calledFunctions.set(onetime2, ++callCount);
|
|
69253
|
+
if (callCount === 1) {
|
|
69254
|
+
returnValue = function_.apply(this, arguments_);
|
|
69255
|
+
function_ = void 0;
|
|
69256
|
+
} else if (options2.throw === true) {
|
|
69257
|
+
throw new Error(`Function \`${functionName}\` can only be called once`);
|
|
69258
|
+
}
|
|
69259
|
+
return returnValue;
|
|
69260
|
+
};
|
|
69261
|
+
mimicFunction(onetime2, function_);
|
|
69262
|
+
calledFunctions.set(onetime2, callCount);
|
|
69263
|
+
return onetime2;
|
|
69264
|
+
};
|
|
69265
|
+
onetime.callCount = (function_) => {
|
|
69266
|
+
if (!calledFunctions.has(function_)) {
|
|
69267
|
+
throw new Error(`The given function \`${function_.name}\` is not wrapped by the \`onetime\` package`);
|
|
69268
|
+
}
|
|
69269
|
+
return calledFunctions.get(function_);
|
|
69270
|
+
};
|
|
69271
|
+
var onetime_default = onetime;
|
|
69272
|
+
|
|
69273
|
+
// ../node_modules/signal-exit/dist/mjs/signals.js
|
|
69274
|
+
var signals = [];
|
|
69275
|
+
signals.push("SIGHUP", "SIGINT", "SIGTERM");
|
|
69276
|
+
if (process.platform !== "win32") {
|
|
69277
|
+
signals.push(
|
|
69278
|
+
"SIGALRM",
|
|
69279
|
+
"SIGABRT",
|
|
69280
|
+
"SIGVTALRM",
|
|
69281
|
+
"SIGXCPU",
|
|
69282
|
+
"SIGXFSZ",
|
|
69283
|
+
"SIGUSR2",
|
|
69284
|
+
"SIGTRAP",
|
|
69285
|
+
"SIGSYS",
|
|
69286
|
+
"SIGQUIT",
|
|
69287
|
+
"SIGIOT"
|
|
69288
|
+
// should detect profiler and enable/disable accordingly.
|
|
69289
|
+
// see #21
|
|
69290
|
+
// 'SIGPROF'
|
|
69291
|
+
);
|
|
69292
|
+
}
|
|
69293
|
+
if (process.platform === "linux") {
|
|
69294
|
+
signals.push("SIGIO", "SIGPOLL", "SIGPWR", "SIGSTKFLT");
|
|
69295
|
+
}
|
|
69296
|
+
|
|
69297
|
+
// ../node_modules/signal-exit/dist/mjs/index.js
|
|
69298
|
+
var processOk = (process11) => !!process11 && typeof process11 === "object" && typeof process11.removeListener === "function" && typeof process11.emit === "function" && typeof process11.reallyExit === "function" && typeof process11.listeners === "function" && typeof process11.kill === "function" && typeof process11.pid === "number" && typeof process11.on === "function";
|
|
69299
|
+
var kExitEmitter = Symbol.for("signal-exit emitter");
|
|
69300
|
+
var global = globalThis;
|
|
69301
|
+
var ObjectDefineProperty = Object.defineProperty.bind(Object);
|
|
69302
|
+
var Emitter = class {
|
|
69303
|
+
emitted = {
|
|
69304
|
+
afterExit: false,
|
|
69305
|
+
exit: false
|
|
69306
|
+
};
|
|
69307
|
+
listeners = {
|
|
69308
|
+
afterExit: [],
|
|
69309
|
+
exit: []
|
|
69310
|
+
};
|
|
69311
|
+
count = 0;
|
|
69312
|
+
id = Math.random();
|
|
69313
|
+
constructor() {
|
|
69314
|
+
if (global[kExitEmitter]) {
|
|
69315
|
+
return global[kExitEmitter];
|
|
69316
|
+
}
|
|
69317
|
+
ObjectDefineProperty(global, kExitEmitter, {
|
|
69318
|
+
value: this,
|
|
69319
|
+
writable: false,
|
|
69320
|
+
enumerable: false,
|
|
69321
|
+
configurable: false
|
|
69322
|
+
});
|
|
69323
|
+
}
|
|
69324
|
+
on(ev, fn) {
|
|
69325
|
+
this.listeners[ev].push(fn);
|
|
69326
|
+
}
|
|
69327
|
+
removeListener(ev, fn) {
|
|
69328
|
+
const list3 = this.listeners[ev];
|
|
69329
|
+
const i = list3.indexOf(fn);
|
|
69330
|
+
if (i === -1) {
|
|
69331
|
+
return;
|
|
69332
|
+
}
|
|
69333
|
+
if (i === 0 && list3.length === 1) {
|
|
69334
|
+
list3.length = 0;
|
|
69335
|
+
} else {
|
|
69336
|
+
list3.splice(i, 1);
|
|
69337
|
+
}
|
|
69338
|
+
}
|
|
69339
|
+
emit(ev, code, signal) {
|
|
69340
|
+
if (this.emitted[ev]) {
|
|
69341
|
+
return false;
|
|
69342
|
+
}
|
|
69343
|
+
this.emitted[ev] = true;
|
|
69344
|
+
let ret = false;
|
|
69345
|
+
for (const fn of this.listeners[ev]) {
|
|
69346
|
+
ret = fn(code, signal) === true || ret;
|
|
69347
|
+
}
|
|
69348
|
+
if (ev === "exit") {
|
|
69349
|
+
ret = this.emit("afterExit", code, signal) || ret;
|
|
69350
|
+
}
|
|
69351
|
+
return ret;
|
|
69352
|
+
}
|
|
69353
|
+
};
|
|
69354
|
+
var SignalExitBase = class {
|
|
69355
|
+
};
|
|
69356
|
+
var signalExitWrap = (handler) => {
|
|
69357
|
+
return {
|
|
69358
|
+
onExit(cb, opts) {
|
|
69359
|
+
return handler.onExit(cb, opts);
|
|
69360
|
+
},
|
|
69361
|
+
load() {
|
|
69362
|
+
return handler.load();
|
|
69363
|
+
},
|
|
69364
|
+
unload() {
|
|
69365
|
+
return handler.unload();
|
|
69366
|
+
}
|
|
69367
|
+
};
|
|
69368
|
+
};
|
|
69369
|
+
var SignalExitFallback = class extends SignalExitBase {
|
|
69370
|
+
onExit() {
|
|
69371
|
+
return () => {
|
|
69372
|
+
};
|
|
69373
|
+
}
|
|
69374
|
+
load() {
|
|
69375
|
+
}
|
|
69376
|
+
unload() {
|
|
69377
|
+
}
|
|
69378
|
+
};
|
|
69379
|
+
var SignalExit = class extends SignalExitBase {
|
|
69380
|
+
// "SIGHUP" throws an `ENOSYS` error on Windows,
|
|
69381
|
+
// so use a supported signal instead
|
|
69382
|
+
/* c8 ignore start */
|
|
69383
|
+
#hupSig = process4.platform === "win32" ? "SIGINT" : "SIGHUP";
|
|
69384
|
+
/* c8 ignore stop */
|
|
69385
|
+
#emitter = new Emitter();
|
|
69386
|
+
#process;
|
|
69387
|
+
#originalProcessEmit;
|
|
69388
|
+
#originalProcessReallyExit;
|
|
69389
|
+
#sigListeners = {};
|
|
69390
|
+
#loaded = false;
|
|
69391
|
+
constructor(process11) {
|
|
69392
|
+
super();
|
|
69393
|
+
this.#process = process11;
|
|
69394
|
+
this.#sigListeners = {};
|
|
69395
|
+
for (const sig of signals) {
|
|
69396
|
+
this.#sigListeners[sig] = () => {
|
|
69397
|
+
const listeners = this.#process.listeners(sig);
|
|
69398
|
+
let { count } = this.#emitter;
|
|
69399
|
+
const p = process11;
|
|
69400
|
+
if (typeof p.__signal_exit_emitter__ === "object" && typeof p.__signal_exit_emitter__.count === "number") {
|
|
69401
|
+
count += p.__signal_exit_emitter__.count;
|
|
69402
|
+
}
|
|
69403
|
+
if (listeners.length === count) {
|
|
69404
|
+
this.unload();
|
|
69405
|
+
const ret = this.#emitter.emit("exit", null, sig);
|
|
69406
|
+
const s = sig === "SIGHUP" ? this.#hupSig : sig;
|
|
69407
|
+
if (!ret)
|
|
69408
|
+
process11.kill(process11.pid, s);
|
|
69409
|
+
}
|
|
69410
|
+
};
|
|
69411
|
+
}
|
|
69412
|
+
this.#originalProcessReallyExit = process11.reallyExit;
|
|
69413
|
+
this.#originalProcessEmit = process11.emit;
|
|
69414
|
+
}
|
|
69415
|
+
onExit(cb, opts) {
|
|
69416
|
+
if (!processOk(this.#process)) {
|
|
69417
|
+
return () => {
|
|
69418
|
+
};
|
|
69419
|
+
}
|
|
69420
|
+
if (this.#loaded === false) {
|
|
69421
|
+
this.load();
|
|
69422
|
+
}
|
|
69423
|
+
const ev = opts?.alwaysLast ? "afterExit" : "exit";
|
|
69424
|
+
this.#emitter.on(ev, cb);
|
|
69425
|
+
return () => {
|
|
69426
|
+
this.#emitter.removeListener(ev, cb);
|
|
69427
|
+
if (this.#emitter.listeners["exit"].length === 0 && this.#emitter.listeners["afterExit"].length === 0) {
|
|
69428
|
+
this.unload();
|
|
69429
|
+
}
|
|
69430
|
+
};
|
|
69431
|
+
}
|
|
69432
|
+
load() {
|
|
69433
|
+
if (this.#loaded) {
|
|
69434
|
+
return;
|
|
69435
|
+
}
|
|
69436
|
+
this.#loaded = true;
|
|
69437
|
+
this.#emitter.count += 1;
|
|
69438
|
+
for (const sig of signals) {
|
|
69439
|
+
try {
|
|
69440
|
+
const fn = this.#sigListeners[sig];
|
|
69441
|
+
if (fn)
|
|
69442
|
+
this.#process.on(sig, fn);
|
|
69443
|
+
} catch (_) {
|
|
69444
|
+
}
|
|
69445
|
+
}
|
|
69446
|
+
this.#process.emit = (ev, ...a) => {
|
|
69447
|
+
return this.#processEmit(ev, ...a);
|
|
69448
|
+
};
|
|
69449
|
+
this.#process.reallyExit = (code) => {
|
|
69450
|
+
return this.#processReallyExit(code);
|
|
69451
|
+
};
|
|
69452
|
+
}
|
|
69453
|
+
unload() {
|
|
69454
|
+
if (!this.#loaded) {
|
|
69455
|
+
return;
|
|
69456
|
+
}
|
|
69457
|
+
this.#loaded = false;
|
|
69458
|
+
signals.forEach((sig) => {
|
|
69459
|
+
const listener = this.#sigListeners[sig];
|
|
69460
|
+
if (!listener) {
|
|
69461
|
+
throw new Error("Listener not defined for signal: " + sig);
|
|
69462
|
+
}
|
|
69463
|
+
try {
|
|
69464
|
+
this.#process.removeListener(sig, listener);
|
|
69465
|
+
} catch (_) {
|
|
69466
|
+
}
|
|
69467
|
+
});
|
|
69468
|
+
this.#process.emit = this.#originalProcessEmit;
|
|
69469
|
+
this.#process.reallyExit = this.#originalProcessReallyExit;
|
|
69470
|
+
this.#emitter.count -= 1;
|
|
69471
|
+
}
|
|
69472
|
+
#processReallyExit(code) {
|
|
69473
|
+
if (!processOk(this.#process)) {
|
|
69474
|
+
return 0;
|
|
69475
|
+
}
|
|
69476
|
+
this.#process.exitCode = code || 0;
|
|
69477
|
+
this.#emitter.emit("exit", this.#process.exitCode, null);
|
|
69478
|
+
return this.#originalProcessReallyExit.call(this.#process, this.#process.exitCode);
|
|
69479
|
+
}
|
|
69480
|
+
#processEmit(ev, ...args) {
|
|
69481
|
+
const og = this.#originalProcessEmit;
|
|
69482
|
+
if (ev === "exit" && processOk(this.#process)) {
|
|
69483
|
+
if (typeof args[0] === "number") {
|
|
69484
|
+
this.#process.exitCode = args[0];
|
|
69485
|
+
}
|
|
69486
|
+
const ret = og.call(this.#process, ev, ...args);
|
|
69487
|
+
this.#emitter.emit("exit", this.#process.exitCode, null);
|
|
69488
|
+
return ret;
|
|
69489
|
+
} else {
|
|
69490
|
+
return og.call(this.#process, ev, ...args);
|
|
69491
|
+
}
|
|
69492
|
+
}
|
|
69493
|
+
};
|
|
69494
|
+
var process4 = globalThis.process;
|
|
69495
|
+
var {
|
|
69496
|
+
/**
|
|
69497
|
+
* Called when the process is exiting, whether via signal, explicit
|
|
69498
|
+
* exit, or running out of stuff to do.
|
|
69499
|
+
*
|
|
69500
|
+
* If the global process object is not suitable for instrumentation,
|
|
69501
|
+
* then this will be a no-op.
|
|
69502
|
+
*
|
|
69503
|
+
* Returns a function that may be used to unload signal-exit.
|
|
69504
|
+
*/
|
|
69505
|
+
onExit,
|
|
69506
|
+
/**
|
|
69507
|
+
* Load the listeners. Likely you never need to call this, unless
|
|
69508
|
+
* doing a rather deep integration with signal-exit functionality.
|
|
69509
|
+
* Mostly exposed for the benefit of testing.
|
|
69510
|
+
*
|
|
69511
|
+
* @internal
|
|
69512
|
+
*/
|
|
69513
|
+
load,
|
|
69514
|
+
/**
|
|
69515
|
+
* Unload the listeners. Likely you never need to call this, unless
|
|
69516
|
+
* doing a rather deep integration with signal-exit functionality.
|
|
69517
|
+
* Mostly exposed for the benefit of testing.
|
|
69518
|
+
*
|
|
69519
|
+
* @internal
|
|
69520
|
+
*/
|
|
69521
|
+
unload
|
|
69522
|
+
} = signalExitWrap(processOk(process4) ? new SignalExit(process4) : new SignalExitFallback());
|
|
69523
|
+
|
|
69524
|
+
// ../node_modules/restore-cursor/index.js
|
|
69525
|
+
var terminal = import_node_process3.default.stderr.isTTY ? import_node_process3.default.stderr : import_node_process3.default.stdout.isTTY ? import_node_process3.default.stdout : void 0;
|
|
69526
|
+
var restoreCursor = terminal ? onetime_default(() => {
|
|
69527
|
+
onExit(() => {
|
|
69528
|
+
terminal.write("\x1B[?25h");
|
|
69529
|
+
}, { alwaysLast: true });
|
|
69530
|
+
}) : () => {
|
|
69531
|
+
};
|
|
69532
|
+
var restore_cursor_default = restoreCursor;
|
|
69533
|
+
|
|
69534
|
+
// ../node_modules/cli-cursor/index.js
|
|
69535
|
+
var isHidden = false;
|
|
69536
|
+
var cliCursor = {};
|
|
69537
|
+
cliCursor.show = (writableStream = import_node_process4.default.stderr) => {
|
|
69538
|
+
if (!writableStream.isTTY) {
|
|
69539
|
+
return;
|
|
69540
|
+
}
|
|
69541
|
+
isHidden = false;
|
|
69542
|
+
writableStream.write("\x1B[?25h");
|
|
69543
|
+
};
|
|
69544
|
+
cliCursor.hide = (writableStream = import_node_process4.default.stderr) => {
|
|
69545
|
+
if (!writableStream.isTTY) {
|
|
69546
|
+
return;
|
|
69547
|
+
}
|
|
69548
|
+
restore_cursor_default();
|
|
69549
|
+
isHidden = true;
|
|
69550
|
+
writableStream.write("\x1B[?25l");
|
|
69551
|
+
};
|
|
69552
|
+
cliCursor.toggle = (force, writableStream) => {
|
|
69553
|
+
if (force !== void 0) {
|
|
69554
|
+
isHidden = force;
|
|
69555
|
+
}
|
|
69556
|
+
if (isHidden) {
|
|
69557
|
+
cliCursor.show(writableStream);
|
|
69558
|
+
} else {
|
|
69559
|
+
cliCursor.hide(writableStream);
|
|
69560
|
+
}
|
|
69561
|
+
};
|
|
69562
|
+
var cli_cursor_default = cliCursor;
|
|
69563
|
+
|
|
69564
|
+
// ../node_modules/ora/index.js
|
|
69565
|
+
var import_cli_spinners = __toESM(require_cli_spinners(), 1);
|
|
69566
|
+
|
|
69567
|
+
// ../node_modules/log-symbols/node_modules/is-unicode-supported/index.js
|
|
69568
|
+
var import_node_process5 = __toESM(require("node:process"), 1);
|
|
69569
|
+
function isUnicodeSupported() {
|
|
69570
|
+
if (import_node_process5.default.platform !== "win32") {
|
|
69571
|
+
return import_node_process5.default.env.TERM !== "linux";
|
|
69572
|
+
}
|
|
69573
|
+
return Boolean(import_node_process5.default.env.CI) || Boolean(import_node_process5.default.env.WT_SESSION) || Boolean(import_node_process5.default.env.TERMINUS_SUBLIME) || import_node_process5.default.env.ConEmuTask === "{cmd::Cmder}" || import_node_process5.default.env.TERM_PROGRAM === "Terminus-Sublime" || import_node_process5.default.env.TERM_PROGRAM === "vscode" || import_node_process5.default.env.TERM === "xterm-256color" || import_node_process5.default.env.TERM === "alacritty" || import_node_process5.default.env.TERMINAL_EMULATOR === "JetBrains-JediTerm";
|
|
69574
|
+
}
|
|
69575
|
+
|
|
69576
|
+
// ../node_modules/log-symbols/index.js
|
|
69577
|
+
var main = {
|
|
69578
|
+
info: source_default.blue("\u2139"),
|
|
69579
|
+
success: source_default.green("\u2714"),
|
|
69580
|
+
warning: source_default.yellow("\u26A0"),
|
|
69581
|
+
error: source_default.red("\u2716")
|
|
69582
|
+
};
|
|
69583
|
+
var fallback = {
|
|
69584
|
+
info: source_default.blue("i"),
|
|
69585
|
+
success: source_default.green("\u221A"),
|
|
69586
|
+
warning: source_default.yellow("\u203C"),
|
|
69587
|
+
error: source_default.red("\xD7")
|
|
69588
|
+
};
|
|
69589
|
+
var logSymbols = isUnicodeSupported() ? main : fallback;
|
|
69590
|
+
var log_symbols_default = logSymbols;
|
|
69591
|
+
|
|
69592
|
+
// ../node_modules/ora/node_modules/strip-ansi/index.js
|
|
69593
|
+
var regex = ansiRegex();
|
|
69594
|
+
function stripAnsi(string) {
|
|
69595
|
+
if (typeof string !== "string") {
|
|
69596
|
+
throw new TypeError(`Expected a \`string\`, got \`${typeof string}\``);
|
|
69597
|
+
}
|
|
69598
|
+
if (!string.includes("\x1B") && !string.includes("\x9B")) {
|
|
69599
|
+
return string;
|
|
69600
|
+
}
|
|
69601
|
+
return string.replace(regex, "");
|
|
69602
|
+
}
|
|
69603
|
+
|
|
69604
|
+
// ../node_modules/get-east-asian-width/lookup-data.js
|
|
69605
|
+
var ambiguousRanges = [161, 161, 164, 164, 167, 168, 170, 170, 173, 174, 176, 180, 182, 186, 188, 191, 198, 198, 208, 208, 215, 216, 222, 225, 230, 230, 232, 234, 236, 237, 240, 240, 242, 243, 247, 250, 252, 252, 254, 254, 257, 257, 273, 273, 275, 275, 283, 283, 294, 295, 299, 299, 305, 307, 312, 312, 319, 322, 324, 324, 328, 331, 333, 333, 338, 339, 358, 359, 363, 363, 462, 462, 464, 464, 466, 466, 468, 468, 470, 470, 472, 472, 474, 474, 476, 476, 593, 593, 609, 609, 708, 708, 711, 711, 713, 715, 717, 717, 720, 720, 728, 731, 733, 733, 735, 735, 768, 879, 913, 929, 931, 937, 945, 961, 963, 969, 1025, 1025, 1040, 1103, 1105, 1105, 8208, 8208, 8211, 8214, 8216, 8217, 8220, 8221, 8224, 8226, 8228, 8231, 8240, 8240, 8242, 8243, 8245, 8245, 8251, 8251, 8254, 8254, 8308, 8308, 8319, 8319, 8321, 8324, 8364, 8364, 8451, 8451, 8453, 8453, 8457, 8457, 8467, 8467, 8470, 8470, 8481, 8482, 8486, 8486, 8491, 8491, 8531, 8532, 8539, 8542, 8544, 8555, 8560, 8569, 8585, 8585, 8592, 8601, 8632, 8633, 8658, 8658, 8660, 8660, 8679, 8679, 8704, 8704, 8706, 8707, 8711, 8712, 8715, 8715, 8719, 8719, 8721, 8721, 8725, 8725, 8730, 8730, 8733, 8736, 8739, 8739, 8741, 8741, 8743, 8748, 8750, 8750, 8756, 8759, 8764, 8765, 8776, 8776, 8780, 8780, 8786, 8786, 8800, 8801, 8804, 8807, 8810, 8811, 8814, 8815, 8834, 8835, 8838, 8839, 8853, 8853, 8857, 8857, 8869, 8869, 8895, 8895, 8978, 8978, 9312, 9449, 9451, 9547, 9552, 9587, 9600, 9615, 9618, 9621, 9632, 9633, 9635, 9641, 9650, 9651, 9654, 9655, 9660, 9661, 9664, 9665, 9670, 9672, 9675, 9675, 9678, 9681, 9698, 9701, 9711, 9711, 9733, 9734, 9737, 9737, 9742, 9743, 9756, 9756, 9758, 9758, 9792, 9792, 9794, 9794, 9824, 9825, 9827, 9829, 9831, 9834, 9836, 9837, 9839, 9839, 9886, 9887, 9919, 9919, 9926, 9933, 9935, 9939, 9941, 9953, 9955, 9955, 9960, 9961, 9963, 9969, 9972, 9972, 9974, 9977, 9979, 9980, 9982, 9983, 10045, 10045, 10102, 10111, 11094, 11097, 12872, 12879, 57344, 63743, 65024, 65039, 65533, 65533, 127232, 127242, 127248, 127277, 127280, 127337, 127344, 127373, 127375, 127376, 127387, 127404, 917760, 917999, 983040, 1048573, 1048576, 1114109];
|
|
69606
|
+
var fullwidthRanges = [12288, 12288, 65281, 65376, 65504, 65510];
|
|
69607
|
+
var halfwidthRanges = [8361, 8361, 65377, 65470, 65474, 65479, 65482, 65487, 65490, 65495, 65498, 65500, 65512, 65518];
|
|
69608
|
+
var narrowRanges = [32, 126, 162, 163, 165, 166, 172, 172, 175, 175, 10214, 10221, 10629, 10630];
|
|
69609
|
+
var wideRanges = [4352, 4447, 8986, 8987, 9001, 9002, 9193, 9196, 9200, 9200, 9203, 9203, 9725, 9726, 9748, 9749, 9776, 9783, 9800, 9811, 9855, 9855, 9866, 9871, 9875, 9875, 9889, 9889, 9898, 9899, 9917, 9918, 9924, 9925, 9934, 9934, 9940, 9940, 9962, 9962, 9970, 9971, 9973, 9973, 9978, 9978, 9981, 9981, 9989, 9989, 9994, 9995, 10024, 10024, 10060, 10060, 10062, 10062, 10067, 10069, 10071, 10071, 10133, 10135, 10160, 10160, 10175, 10175, 11035, 11036, 11088, 11088, 11093, 11093, 11904, 11929, 11931, 12019, 12032, 12245, 12272, 12287, 12289, 12350, 12353, 12438, 12441, 12543, 12549, 12591, 12593, 12686, 12688, 12773, 12783, 12830, 12832, 12871, 12880, 42124, 42128, 42182, 43360, 43388, 44032, 55203, 63744, 64255, 65040, 65049, 65072, 65106, 65108, 65126, 65128, 65131, 94176, 94180, 94192, 94198, 94208, 101589, 101631, 101662, 101760, 101874, 110576, 110579, 110581, 110587, 110589, 110590, 110592, 110882, 110898, 110898, 110928, 110930, 110933, 110933, 110948, 110951, 110960, 111355, 119552, 119638, 119648, 119670, 126980, 126980, 127183, 127183, 127374, 127374, 127377, 127386, 127488, 127490, 127504, 127547, 127552, 127560, 127568, 127569, 127584, 127589, 127744, 127776, 127789, 127797, 127799, 127868, 127870, 127891, 127904, 127946, 127951, 127955, 127968, 127984, 127988, 127988, 127992, 128062, 128064, 128064, 128066, 128252, 128255, 128317, 128331, 128334, 128336, 128359, 128378, 128378, 128405, 128406, 128420, 128420, 128507, 128591, 128640, 128709, 128716, 128716, 128720, 128722, 128725, 128728, 128732, 128735, 128747, 128748, 128756, 128764, 128992, 129003, 129008, 129008, 129292, 129338, 129340, 129349, 129351, 129535, 129648, 129660, 129664, 129674, 129678, 129734, 129736, 129736, 129741, 129756, 129759, 129770, 129775, 129784, 131072, 196605, 196608, 262141];
|
|
69610
|
+
|
|
69611
|
+
// ../node_modules/get-east-asian-width/utilities.js
|
|
69612
|
+
var isInRange = (ranges, codePoint) => {
|
|
69613
|
+
let low = 0;
|
|
69614
|
+
let high = Math.floor(ranges.length / 2) - 1;
|
|
69615
|
+
while (low <= high) {
|
|
69616
|
+
const mid = Math.floor((low + high) / 2);
|
|
69617
|
+
const i = mid * 2;
|
|
69618
|
+
if (codePoint < ranges[i]) {
|
|
69619
|
+
high = mid - 1;
|
|
69620
|
+
} else if (codePoint > ranges[i + 1]) {
|
|
69621
|
+
low = mid + 1;
|
|
69622
|
+
} else {
|
|
69623
|
+
return true;
|
|
69624
|
+
}
|
|
69625
|
+
}
|
|
69626
|
+
return false;
|
|
69627
|
+
};
|
|
69628
|
+
|
|
69629
|
+
// ../node_modules/get-east-asian-width/lookup.js
|
|
69630
|
+
var minimumAmbiguousCodePoint = ambiguousRanges[0];
|
|
69631
|
+
var maximumAmbiguousCodePoint = ambiguousRanges.at(-1);
|
|
69632
|
+
var minimumFullWidthCodePoint = fullwidthRanges[0];
|
|
69633
|
+
var maximumFullWidthCodePoint = fullwidthRanges.at(-1);
|
|
69634
|
+
var minimumHalfWidthCodePoint = halfwidthRanges[0];
|
|
69635
|
+
var maximumHalfWidthCodePoint = halfwidthRanges.at(-1);
|
|
69636
|
+
var minimumNarrowCodePoint = narrowRanges[0];
|
|
69637
|
+
var maximumNarrowCodePoint = narrowRanges.at(-1);
|
|
69638
|
+
var minimumWideCodePoint = wideRanges[0];
|
|
69639
|
+
var maximumWideCodePoint = wideRanges.at(-1);
|
|
69640
|
+
var commonCjkCodePoint = 19968;
|
|
69641
|
+
var [wideFastPathStart, wideFastPathEnd] = findWideFastPathRange(wideRanges);
|
|
69642
|
+
function findWideFastPathRange(ranges) {
|
|
69643
|
+
let fastPathStart = ranges[0];
|
|
69644
|
+
let fastPathEnd = ranges[1];
|
|
69645
|
+
for (let index = 0; index < ranges.length; index += 2) {
|
|
69646
|
+
const start = ranges[index];
|
|
69647
|
+
const end = ranges[index + 1];
|
|
69648
|
+
if (commonCjkCodePoint >= start && commonCjkCodePoint <= end) {
|
|
69649
|
+
return [start, end];
|
|
69650
|
+
}
|
|
69651
|
+
if (end - start > fastPathEnd - fastPathStart) {
|
|
69652
|
+
fastPathStart = start;
|
|
69653
|
+
fastPathEnd = end;
|
|
69654
|
+
}
|
|
69655
|
+
}
|
|
69656
|
+
return [fastPathStart, fastPathEnd];
|
|
69657
|
+
}
|
|
69658
|
+
var isAmbiguous = (codePoint) => {
|
|
69659
|
+
if (codePoint < minimumAmbiguousCodePoint || codePoint > maximumAmbiguousCodePoint) {
|
|
69660
|
+
return false;
|
|
69661
|
+
}
|
|
69662
|
+
return isInRange(ambiguousRanges, codePoint);
|
|
69663
|
+
};
|
|
69664
|
+
var isFullWidth = (codePoint) => {
|
|
69665
|
+
if (codePoint < minimumFullWidthCodePoint || codePoint > maximumFullWidthCodePoint) {
|
|
69666
|
+
return false;
|
|
69667
|
+
}
|
|
69668
|
+
return isInRange(fullwidthRanges, codePoint);
|
|
69669
|
+
};
|
|
69670
|
+
var isWide = (codePoint) => {
|
|
69671
|
+
if (codePoint >= wideFastPathStart && codePoint <= wideFastPathEnd) {
|
|
69672
|
+
return true;
|
|
69673
|
+
}
|
|
69674
|
+
if (codePoint < minimumWideCodePoint || codePoint > maximumWideCodePoint) {
|
|
69675
|
+
return false;
|
|
69676
|
+
}
|
|
69677
|
+
return isInRange(wideRanges, codePoint);
|
|
69678
|
+
};
|
|
69679
|
+
|
|
69680
|
+
// ../node_modules/get-east-asian-width/index.js
|
|
69681
|
+
function validate(codePoint) {
|
|
69682
|
+
if (!Number.isSafeInteger(codePoint)) {
|
|
69683
|
+
throw new TypeError(`Expected a code point, got \`${typeof codePoint}\`.`);
|
|
69684
|
+
}
|
|
69685
|
+
}
|
|
69686
|
+
function eastAsianWidth(codePoint, { ambiguousAsWide = false } = {}) {
|
|
69687
|
+
validate(codePoint);
|
|
69688
|
+
if (isFullWidth(codePoint) || isWide(codePoint) || ambiguousAsWide && isAmbiguous(codePoint)) {
|
|
69689
|
+
return 2;
|
|
69690
|
+
}
|
|
69691
|
+
return 1;
|
|
69692
|
+
}
|
|
69693
|
+
|
|
69694
|
+
// ../node_modules/ora/node_modules/string-width/index.js
|
|
69695
|
+
var import_emoji_regex = __toESM(require_emoji_regex2(), 1);
|
|
69696
|
+
var segmenter = new Intl.Segmenter();
|
|
69697
|
+
var defaultIgnorableCodePointRegex = new RegExp("^\\p{Default_Ignorable_Code_Point}$", "u");
|
|
69698
|
+
function stringWidth(string, options2 = {}) {
|
|
69699
|
+
if (typeof string !== "string" || string.length === 0) {
|
|
69700
|
+
return 0;
|
|
69701
|
+
}
|
|
69702
|
+
const {
|
|
69703
|
+
ambiguousIsNarrow = true,
|
|
69704
|
+
countAnsiEscapeCodes = false
|
|
69705
|
+
} = options2;
|
|
69706
|
+
if (!countAnsiEscapeCodes) {
|
|
69707
|
+
string = stripAnsi(string);
|
|
69708
|
+
}
|
|
69709
|
+
if (string.length === 0) {
|
|
69710
|
+
return 0;
|
|
69711
|
+
}
|
|
69712
|
+
let width = 0;
|
|
69713
|
+
const eastAsianWidthOptions = { ambiguousAsWide: !ambiguousIsNarrow };
|
|
69714
|
+
for (const { segment: character } of segmenter.segment(string)) {
|
|
69715
|
+
const codePoint = character.codePointAt(0);
|
|
69716
|
+
if (codePoint <= 31 || codePoint >= 127 && codePoint <= 159) {
|
|
69717
|
+
continue;
|
|
69718
|
+
}
|
|
69719
|
+
if (codePoint >= 8203 && codePoint <= 8207 || codePoint === 65279) {
|
|
69720
|
+
continue;
|
|
69721
|
+
}
|
|
69722
|
+
if (codePoint >= 768 && codePoint <= 879 || codePoint >= 6832 && codePoint <= 6911 || codePoint >= 7616 && codePoint <= 7679 || codePoint >= 8400 && codePoint <= 8447 || codePoint >= 65056 && codePoint <= 65071) {
|
|
69723
|
+
continue;
|
|
69724
|
+
}
|
|
69725
|
+
if (codePoint >= 55296 && codePoint <= 57343) {
|
|
69726
|
+
continue;
|
|
69727
|
+
}
|
|
69728
|
+
if (codePoint >= 65024 && codePoint <= 65039) {
|
|
69729
|
+
continue;
|
|
69730
|
+
}
|
|
69731
|
+
if (defaultIgnorableCodePointRegex.test(character)) {
|
|
69732
|
+
continue;
|
|
69733
|
+
}
|
|
69734
|
+
if ((0, import_emoji_regex.default)().test(character)) {
|
|
69735
|
+
width += 2;
|
|
69736
|
+
continue;
|
|
69737
|
+
}
|
|
69738
|
+
width += eastAsianWidth(codePoint, eastAsianWidthOptions);
|
|
69739
|
+
}
|
|
69740
|
+
return width;
|
|
69741
|
+
}
|
|
69742
|
+
|
|
69743
|
+
// ../node_modules/is-interactive/index.js
|
|
69744
|
+
function isInteractive({ stream = process.stdout } = {}) {
|
|
69745
|
+
return Boolean(
|
|
69746
|
+
stream && stream.isTTY && process.env.TERM !== "dumb" && !("CI" in process.env)
|
|
69747
|
+
);
|
|
69748
|
+
}
|
|
69749
|
+
|
|
69750
|
+
// ../node_modules/is-unicode-supported/index.js
|
|
69751
|
+
var import_node_process6 = __toESM(require("node:process"), 1);
|
|
69752
|
+
function isUnicodeSupported2() {
|
|
69753
|
+
const { env: env2 } = import_node_process6.default;
|
|
69754
|
+
const { TERM, TERM_PROGRAM } = env2;
|
|
69755
|
+
if (import_node_process6.default.platform !== "win32") {
|
|
69756
|
+
return TERM !== "linux";
|
|
69757
|
+
}
|
|
69758
|
+
return Boolean(env2.WT_SESSION) || Boolean(env2.TERMINUS_SUBLIME) || env2.ConEmuTask === "{cmd::Cmder}" || TERM_PROGRAM === "Terminus-Sublime" || TERM_PROGRAM === "vscode" || TERM === "xterm-256color" || TERM === "alacritty" || TERM === "rxvt-unicode" || TERM === "rxvt-unicode-256color" || env2.TERMINAL_EMULATOR === "JetBrains-JediTerm";
|
|
69759
|
+
}
|
|
69760
|
+
|
|
69761
|
+
// ../node_modules/stdin-discarder/index.js
|
|
69762
|
+
var import_node_process7 = __toESM(require("node:process"), 1);
|
|
69763
|
+
var ASCII_ETX_CODE = 3;
|
|
69764
|
+
var StdinDiscarder = class {
|
|
69765
|
+
#activeCount = 0;
|
|
69766
|
+
start() {
|
|
69767
|
+
this.#activeCount++;
|
|
69768
|
+
if (this.#activeCount === 1) {
|
|
69769
|
+
this.#realStart();
|
|
69770
|
+
}
|
|
69771
|
+
}
|
|
69772
|
+
stop() {
|
|
69773
|
+
if (this.#activeCount <= 0) {
|
|
69774
|
+
throw new Error("`stop` called more times than `start`");
|
|
69775
|
+
}
|
|
69776
|
+
this.#activeCount--;
|
|
69777
|
+
if (this.#activeCount === 0) {
|
|
69778
|
+
this.#realStop();
|
|
69779
|
+
}
|
|
69780
|
+
}
|
|
69781
|
+
#realStart() {
|
|
69782
|
+
if (import_node_process7.default.platform === "win32" || !import_node_process7.default.stdin.isTTY) {
|
|
69783
|
+
return;
|
|
69784
|
+
}
|
|
69785
|
+
import_node_process7.default.stdin.setRawMode(true);
|
|
69786
|
+
import_node_process7.default.stdin.on("data", this.#handleInput);
|
|
69787
|
+
import_node_process7.default.stdin.resume();
|
|
69788
|
+
}
|
|
69789
|
+
#realStop() {
|
|
69790
|
+
if (!import_node_process7.default.stdin.isTTY) {
|
|
69791
|
+
return;
|
|
69792
|
+
}
|
|
69793
|
+
import_node_process7.default.stdin.off("data", this.#handleInput);
|
|
69794
|
+
import_node_process7.default.stdin.pause();
|
|
69795
|
+
import_node_process7.default.stdin.setRawMode(false);
|
|
69796
|
+
}
|
|
69797
|
+
#handleInput(chunk) {
|
|
69798
|
+
if (chunk[0] === ASCII_ETX_CODE) {
|
|
69799
|
+
import_node_process7.default.emit("SIGINT");
|
|
69800
|
+
}
|
|
69801
|
+
}
|
|
69802
|
+
};
|
|
69803
|
+
var stdinDiscarder = new StdinDiscarder();
|
|
69804
|
+
var stdin_discarder_default = stdinDiscarder;
|
|
69805
|
+
|
|
69806
|
+
// ../node_modules/ora/index.js
|
|
69807
|
+
var import_cli_spinners2 = __toESM(require_cli_spinners(), 1);
|
|
69808
|
+
var Ora = class {
|
|
69809
|
+
#linesToClear = 0;
|
|
69810
|
+
#isDiscardingStdin = false;
|
|
69811
|
+
#lineCount = 0;
|
|
69812
|
+
#frameIndex = -1;
|
|
69813
|
+
#lastSpinnerFrameTime = 0;
|
|
69814
|
+
#options;
|
|
69815
|
+
#spinner;
|
|
69816
|
+
#stream;
|
|
69817
|
+
#id;
|
|
69818
|
+
#initialInterval;
|
|
69819
|
+
#isEnabled;
|
|
69820
|
+
#isSilent;
|
|
69821
|
+
#indent;
|
|
69822
|
+
#text;
|
|
69823
|
+
#prefixText;
|
|
69824
|
+
#suffixText;
|
|
69825
|
+
color;
|
|
69826
|
+
constructor(options2) {
|
|
69827
|
+
if (typeof options2 === "string") {
|
|
69828
|
+
options2 = {
|
|
69829
|
+
text: options2
|
|
69830
|
+
};
|
|
69831
|
+
}
|
|
69832
|
+
this.#options = {
|
|
69833
|
+
color: "cyan",
|
|
69834
|
+
stream: import_node_process8.default.stderr,
|
|
69835
|
+
discardStdin: true,
|
|
69836
|
+
hideCursor: true,
|
|
69837
|
+
...options2
|
|
69838
|
+
};
|
|
69839
|
+
this.color = this.#options.color;
|
|
69840
|
+
this.spinner = this.#options.spinner;
|
|
69841
|
+
this.#initialInterval = this.#options.interval;
|
|
69842
|
+
this.#stream = this.#options.stream;
|
|
69843
|
+
this.#isEnabled = typeof this.#options.isEnabled === "boolean" ? this.#options.isEnabled : isInteractive({ stream: this.#stream });
|
|
69844
|
+
this.#isSilent = typeof this.#options.isSilent === "boolean" ? this.#options.isSilent : false;
|
|
69845
|
+
this.text = this.#options.text;
|
|
69846
|
+
this.prefixText = this.#options.prefixText;
|
|
69847
|
+
this.suffixText = this.#options.suffixText;
|
|
69848
|
+
this.indent = this.#options.indent;
|
|
69849
|
+
if (import_node_process8.default.env.NODE_ENV === "test") {
|
|
69850
|
+
this._stream = this.#stream;
|
|
69851
|
+
this._isEnabled = this.#isEnabled;
|
|
69852
|
+
Object.defineProperty(this, "_linesToClear", {
|
|
69853
|
+
get() {
|
|
69854
|
+
return this.#linesToClear;
|
|
69855
|
+
},
|
|
69856
|
+
set(newValue) {
|
|
69857
|
+
this.#linesToClear = newValue;
|
|
69858
|
+
}
|
|
69859
|
+
});
|
|
69860
|
+
Object.defineProperty(this, "_frameIndex", {
|
|
69861
|
+
get() {
|
|
69862
|
+
return this.#frameIndex;
|
|
69863
|
+
}
|
|
69864
|
+
});
|
|
69865
|
+
Object.defineProperty(this, "_lineCount", {
|
|
69866
|
+
get() {
|
|
69867
|
+
return this.#lineCount;
|
|
69868
|
+
}
|
|
69869
|
+
});
|
|
69870
|
+
}
|
|
69871
|
+
}
|
|
69872
|
+
get indent() {
|
|
69873
|
+
return this.#indent;
|
|
69874
|
+
}
|
|
69875
|
+
set indent(indent = 0) {
|
|
69876
|
+
if (!(indent >= 0 && Number.isInteger(indent))) {
|
|
69877
|
+
throw new Error("The `indent` option must be an integer from 0 and up");
|
|
69878
|
+
}
|
|
69879
|
+
this.#indent = indent;
|
|
69880
|
+
this.#updateLineCount();
|
|
69881
|
+
}
|
|
69882
|
+
get interval() {
|
|
69883
|
+
return this.#initialInterval ?? this.#spinner.interval ?? 100;
|
|
69884
|
+
}
|
|
69885
|
+
get spinner() {
|
|
69886
|
+
return this.#spinner;
|
|
69887
|
+
}
|
|
69888
|
+
set spinner(spinner2) {
|
|
69889
|
+
this.#frameIndex = -1;
|
|
69890
|
+
this.#initialInterval = void 0;
|
|
69891
|
+
if (typeof spinner2 === "object") {
|
|
69892
|
+
if (spinner2.frames === void 0) {
|
|
69893
|
+
throw new Error("The given spinner must have a `frames` property");
|
|
69894
|
+
}
|
|
69895
|
+
this.#spinner = spinner2;
|
|
69896
|
+
} else if (!isUnicodeSupported2()) {
|
|
69897
|
+
this.#spinner = import_cli_spinners.default.line;
|
|
69898
|
+
} else if (spinner2 === void 0) {
|
|
69899
|
+
this.#spinner = import_cli_spinners.default.dots;
|
|
69900
|
+
} else if (spinner2 !== "default" && import_cli_spinners.default[spinner2]) {
|
|
69901
|
+
this.#spinner = import_cli_spinners.default[spinner2];
|
|
69902
|
+
} else {
|
|
69903
|
+
throw new Error(`There is no built-in spinner named '${spinner2}'. See https://github.com/sindresorhus/cli-spinners/blob/main/spinners.json for a full list.`);
|
|
69904
|
+
}
|
|
69905
|
+
}
|
|
69906
|
+
get text() {
|
|
69907
|
+
return this.#text;
|
|
69908
|
+
}
|
|
69909
|
+
set text(value = "") {
|
|
69910
|
+
this.#text = value;
|
|
69911
|
+
this.#updateLineCount();
|
|
69912
|
+
}
|
|
69913
|
+
get prefixText() {
|
|
69914
|
+
return this.#prefixText;
|
|
69915
|
+
}
|
|
69916
|
+
set prefixText(value = "") {
|
|
69917
|
+
this.#prefixText = value;
|
|
69918
|
+
this.#updateLineCount();
|
|
69919
|
+
}
|
|
69920
|
+
get suffixText() {
|
|
69921
|
+
return this.#suffixText;
|
|
69922
|
+
}
|
|
69923
|
+
set suffixText(value = "") {
|
|
69924
|
+
this.#suffixText = value;
|
|
69925
|
+
this.#updateLineCount();
|
|
69926
|
+
}
|
|
69927
|
+
get isSpinning() {
|
|
69928
|
+
return this.#id !== void 0;
|
|
69929
|
+
}
|
|
69930
|
+
#getFullPrefixText(prefixText = this.#prefixText, postfix = " ") {
|
|
69931
|
+
if (typeof prefixText === "string" && prefixText !== "") {
|
|
69932
|
+
return prefixText + postfix;
|
|
69933
|
+
}
|
|
69934
|
+
if (typeof prefixText === "function") {
|
|
69935
|
+
return prefixText() + postfix;
|
|
69936
|
+
}
|
|
69937
|
+
return "";
|
|
69938
|
+
}
|
|
69939
|
+
#getFullSuffixText(suffixText = this.#suffixText, prefix = " ") {
|
|
69940
|
+
if (typeof suffixText === "string" && suffixText !== "") {
|
|
69941
|
+
return prefix + suffixText;
|
|
69942
|
+
}
|
|
69943
|
+
if (typeof suffixText === "function") {
|
|
69944
|
+
return prefix + suffixText();
|
|
69945
|
+
}
|
|
69946
|
+
return "";
|
|
69947
|
+
}
|
|
69948
|
+
#updateLineCount() {
|
|
69949
|
+
const columns = this.#stream.columns ?? 80;
|
|
69950
|
+
const fullPrefixText = this.#getFullPrefixText(this.#prefixText, "-");
|
|
69951
|
+
const fullSuffixText = this.#getFullSuffixText(this.#suffixText, "-");
|
|
69952
|
+
const fullText = " ".repeat(this.#indent) + fullPrefixText + "--" + this.#text + "--" + fullSuffixText;
|
|
69953
|
+
this.#lineCount = 0;
|
|
69954
|
+
for (const line of stripAnsi(fullText).split("\n")) {
|
|
69955
|
+
this.#lineCount += Math.max(1, Math.ceil(stringWidth(line, { countAnsiEscapeCodes: true }) / columns));
|
|
69956
|
+
}
|
|
69957
|
+
}
|
|
69958
|
+
get isEnabled() {
|
|
69959
|
+
return this.#isEnabled && !this.#isSilent;
|
|
69960
|
+
}
|
|
69961
|
+
set isEnabled(value) {
|
|
69962
|
+
if (typeof value !== "boolean") {
|
|
69963
|
+
throw new TypeError("The `isEnabled` option must be a boolean");
|
|
69964
|
+
}
|
|
69965
|
+
this.#isEnabled = value;
|
|
69966
|
+
}
|
|
69967
|
+
get isSilent() {
|
|
69968
|
+
return this.#isSilent;
|
|
69969
|
+
}
|
|
69970
|
+
set isSilent(value) {
|
|
69971
|
+
if (typeof value !== "boolean") {
|
|
69972
|
+
throw new TypeError("The `isSilent` option must be a boolean");
|
|
69973
|
+
}
|
|
69974
|
+
this.#isSilent = value;
|
|
69975
|
+
}
|
|
69976
|
+
frame() {
|
|
69977
|
+
const now = Date.now();
|
|
69978
|
+
if (this.#frameIndex === -1 || now - this.#lastSpinnerFrameTime >= this.interval) {
|
|
69979
|
+
this.#frameIndex = ++this.#frameIndex % this.#spinner.frames.length;
|
|
69980
|
+
this.#lastSpinnerFrameTime = now;
|
|
69981
|
+
}
|
|
69982
|
+
const { frames } = this.#spinner;
|
|
69983
|
+
let frame = frames[this.#frameIndex];
|
|
69984
|
+
if (this.color) {
|
|
69985
|
+
frame = source_default[this.color](frame);
|
|
69986
|
+
}
|
|
69987
|
+
const fullPrefixText = typeof this.#prefixText === "string" && this.#prefixText !== "" ? this.#prefixText + " " : "";
|
|
69988
|
+
const fullText = typeof this.text === "string" ? " " + this.text : "";
|
|
69989
|
+
const fullSuffixText = typeof this.#suffixText === "string" && this.#suffixText !== "" ? " " + this.#suffixText : "";
|
|
69990
|
+
return fullPrefixText + frame + fullText + fullSuffixText;
|
|
69991
|
+
}
|
|
69992
|
+
clear() {
|
|
69993
|
+
if (!this.#isEnabled || !this.#stream.isTTY) {
|
|
69994
|
+
return this;
|
|
69995
|
+
}
|
|
69996
|
+
this.#stream.cursorTo(0);
|
|
69997
|
+
for (let index = 0; index < this.#linesToClear; index++) {
|
|
69998
|
+
if (index > 0) {
|
|
69999
|
+
this.#stream.moveCursor(0, -1);
|
|
70000
|
+
}
|
|
70001
|
+
this.#stream.clearLine(1);
|
|
70002
|
+
}
|
|
70003
|
+
if (this.#indent || this.lastIndent !== this.#indent) {
|
|
70004
|
+
this.#stream.cursorTo(this.#indent);
|
|
70005
|
+
}
|
|
70006
|
+
this.lastIndent = this.#indent;
|
|
70007
|
+
this.#linesToClear = 0;
|
|
70008
|
+
return this;
|
|
70009
|
+
}
|
|
70010
|
+
render() {
|
|
70011
|
+
if (this.#isSilent) {
|
|
70012
|
+
return this;
|
|
70013
|
+
}
|
|
70014
|
+
this.clear();
|
|
70015
|
+
this.#stream.write(this.frame());
|
|
70016
|
+
this.#linesToClear = this.#lineCount;
|
|
70017
|
+
return this;
|
|
70018
|
+
}
|
|
70019
|
+
start(text) {
|
|
70020
|
+
if (text) {
|
|
70021
|
+
this.text = text;
|
|
70022
|
+
}
|
|
70023
|
+
if (this.#isSilent) {
|
|
70024
|
+
return this;
|
|
70025
|
+
}
|
|
70026
|
+
if (!this.#isEnabled) {
|
|
70027
|
+
if (this.text) {
|
|
70028
|
+
this.#stream.write(`- ${this.text}
|
|
70029
|
+
`);
|
|
70030
|
+
}
|
|
70031
|
+
return this;
|
|
70032
|
+
}
|
|
70033
|
+
if (this.isSpinning) {
|
|
70034
|
+
return this;
|
|
70035
|
+
}
|
|
70036
|
+
if (this.#options.hideCursor) {
|
|
70037
|
+
cli_cursor_default.hide(this.#stream);
|
|
70038
|
+
}
|
|
70039
|
+
if (this.#options.discardStdin && import_node_process8.default.stdin.isTTY) {
|
|
70040
|
+
this.#isDiscardingStdin = true;
|
|
70041
|
+
stdin_discarder_default.start();
|
|
70042
|
+
}
|
|
70043
|
+
this.render();
|
|
70044
|
+
this.#id = setInterval(this.render.bind(this), this.interval);
|
|
70045
|
+
return this;
|
|
70046
|
+
}
|
|
70047
|
+
stop() {
|
|
70048
|
+
if (!this.#isEnabled) {
|
|
70049
|
+
return this;
|
|
70050
|
+
}
|
|
70051
|
+
clearInterval(this.#id);
|
|
70052
|
+
this.#id = void 0;
|
|
70053
|
+
this.#frameIndex = 0;
|
|
70054
|
+
this.clear();
|
|
70055
|
+
if (this.#options.hideCursor) {
|
|
70056
|
+
cli_cursor_default.show(this.#stream);
|
|
70057
|
+
}
|
|
70058
|
+
if (this.#options.discardStdin && import_node_process8.default.stdin.isTTY && this.#isDiscardingStdin) {
|
|
70059
|
+
stdin_discarder_default.stop();
|
|
70060
|
+
this.#isDiscardingStdin = false;
|
|
70061
|
+
}
|
|
70062
|
+
return this;
|
|
70063
|
+
}
|
|
70064
|
+
succeed(text) {
|
|
70065
|
+
return this.stopAndPersist({ symbol: log_symbols_default.success, text });
|
|
70066
|
+
}
|
|
70067
|
+
fail(text) {
|
|
70068
|
+
return this.stopAndPersist({ symbol: log_symbols_default.error, text });
|
|
70069
|
+
}
|
|
70070
|
+
warn(text) {
|
|
70071
|
+
return this.stopAndPersist({ symbol: log_symbols_default.warning, text });
|
|
70072
|
+
}
|
|
70073
|
+
info(text) {
|
|
70074
|
+
return this.stopAndPersist({ symbol: log_symbols_default.info, text });
|
|
70075
|
+
}
|
|
70076
|
+
stopAndPersist(options2 = {}) {
|
|
70077
|
+
if (this.#isSilent) {
|
|
70078
|
+
return this;
|
|
70079
|
+
}
|
|
70080
|
+
const prefixText = options2.prefixText ?? this.#prefixText;
|
|
70081
|
+
const fullPrefixText = this.#getFullPrefixText(prefixText, " ");
|
|
70082
|
+
const symbolText = options2.symbol ?? " ";
|
|
70083
|
+
const text = options2.text ?? this.text;
|
|
70084
|
+
const separatorText = symbolText ? " " : "";
|
|
70085
|
+
const fullText = typeof text === "string" ? separatorText + text : "";
|
|
70086
|
+
const suffixText = options2.suffixText ?? this.#suffixText;
|
|
70087
|
+
const fullSuffixText = this.#getFullSuffixText(suffixText, " ");
|
|
70088
|
+
const textToWrite = fullPrefixText + symbolText + fullText + fullSuffixText + "\n";
|
|
70089
|
+
this.stop();
|
|
70090
|
+
this.#stream.write(textToWrite);
|
|
70091
|
+
return this;
|
|
70092
|
+
}
|
|
70093
|
+
};
|
|
70094
|
+
function ora(options2) {
|
|
70095
|
+
return new Ora(options2);
|
|
70096
|
+
}
|
|
70097
|
+
|
|
67533
70098
|
// src/util/disambiguate.ts
|
|
67534
70099
|
var import_node_readline = require("node:readline");
|
|
67535
70100
|
var RESET = "\x1B[0m";
|
|
@@ -67594,6 +70159,31 @@ function ts() {
|
|
|
67594
70159
|
return (/* @__PURE__ */ new Date()).toLocaleTimeString();
|
|
67595
70160
|
}
|
|
67596
70161
|
var markdownEnabled = true;
|
|
70162
|
+
var debugMode = false;
|
|
70163
|
+
var statusEnabled = true;
|
|
70164
|
+
var spinner = null;
|
|
70165
|
+
var working = false;
|
|
70166
|
+
function ensureSpinner() {
|
|
70167
|
+
if (spinner || !statusEnabled || !process.stdout.isTTY) return;
|
|
70168
|
+
spinner = ora({
|
|
70169
|
+
text: "claude working",
|
|
70170
|
+
spinner: "dots",
|
|
70171
|
+
color: "yellow",
|
|
70172
|
+
discardStdin: false
|
|
70173
|
+
// we have a readline; don't fight it
|
|
70174
|
+
});
|
|
70175
|
+
}
|
|
70176
|
+
function startWorking() {
|
|
70177
|
+
if (working) return;
|
|
70178
|
+
working = true;
|
|
70179
|
+
ensureSpinner();
|
|
70180
|
+
if (spinner && !spinner.isSpinning) spinner.start();
|
|
70181
|
+
}
|
|
70182
|
+
function stopWorking() {
|
|
70183
|
+
if (!working) return;
|
|
70184
|
+
working = false;
|
|
70185
|
+
if (spinner && spinner.isSpinning) spinner.stop();
|
|
70186
|
+
}
|
|
67597
70187
|
var md = new Marked();
|
|
67598
70188
|
md.use(markedTerminal({
|
|
67599
70189
|
width: process.stdout.columns ?? 100,
|
|
@@ -67620,8 +70210,10 @@ function emitChatLine(prefix, body) {
|
|
|
67620
70210
|
console.log(` ${line}`);
|
|
67621
70211
|
}
|
|
67622
70212
|
}
|
|
67623
|
-
var sessionAttach = new Command("attach").description("open a TUI on a session \u2014 see the chat stream, post op-messages").argument("<ref>", "session UUID or @routingName (e.g. @driver)").option("--limit <n>", 'history items to load before the live stream begins. 0 = none. "all" = up to 5000. default 50.', "50").option("--no-op-messages", "exclude op-messages from the history backlog (live ones still arrive once attached)").option("--no-markdown", "render assistant_text and reply payloads as raw text instead of formatted markdown").action(async (ref, opts) => {
|
|
70213
|
+
var sessionAttach = new Command("attach").description("open a TUI on a session \u2014 see the chat stream, post op-messages").argument("<ref>", "session UUID or @routingName (e.g. @driver)").option("--limit <n>", 'history items to load before the live stream begins. 0 = none. "all" = up to 5000. default 50.', "50").option("--no-op-messages", "exclude op-messages from the history backlog (live ones still arrive once attached)").option("--no-markdown", "render assistant_text and reply payloads as raw text instead of formatted markdown").option("--debug", "after every rendered event, print its full JSON payload (truncated at 2 KB) \u2014 surfaces fields the renderer normally hides (e.g., SubagentStop's last_assistant_message, PreToolUse tool_input details)").option("--no-status", 'disable the animated "claude working" dot at the bottom of the TUI (useful for piped output or rough-ANSI terminals)').action(async (ref, opts) => {
|
|
67624
70214
|
if (opts.markdown === false) markdownEnabled = false;
|
|
70215
|
+
if (opts.debug) debugMode = true;
|
|
70216
|
+
if (opts.status === false) statusEnabled = false;
|
|
67625
70217
|
const cfg = loadConfig();
|
|
67626
70218
|
if (!cfg.pat) {
|
|
67627
70219
|
console.error("error: not logged in. run `claw login`.");
|
|
@@ -67728,6 +70320,7 @@ var sessionAttach = new Command("attach").description("open a TUI on a session \
|
|
|
67728
70320
|
}
|
|
67729
70321
|
});
|
|
67730
70322
|
ws.on("close", (code, reason) => {
|
|
70323
|
+
stopWorking();
|
|
67731
70324
|
console.log(`${DIM2}[${ts()}] disconnected (${code}${reason ? ": " + reason.toString() : ""})${RESET2}`);
|
|
67732
70325
|
process.exit(0);
|
|
67733
70326
|
});
|
|
@@ -67900,14 +70493,41 @@ function previewPayload(p) {
|
|
|
67900
70493
|
}
|
|
67901
70494
|
return JSON.stringify(p).slice(0, 240);
|
|
67902
70495
|
}
|
|
70496
|
+
function maybeDebugDump(p) {
|
|
70497
|
+
if (!debugMode) return;
|
|
70498
|
+
let json;
|
|
70499
|
+
try {
|
|
70500
|
+
json = JSON.stringify(p, null, 2);
|
|
70501
|
+
} catch {
|
|
70502
|
+
json = String(p);
|
|
70503
|
+
}
|
|
70504
|
+
const TRUNC = 2e3;
|
|
70505
|
+
if (json.length > TRUNC) json = json.slice(0, TRUNC) + "\n... [truncated, payload was " + json.length + " bytes]";
|
|
70506
|
+
for (const line of json.split("\n")) {
|
|
70507
|
+
console.log(` ${DIM2}${line}${RESET2}`);
|
|
70508
|
+
}
|
|
70509
|
+
}
|
|
67903
70510
|
function renderEvent(ev, myLogin) {
|
|
67904
70511
|
const ts2 = shortTs(ev.ts);
|
|
67905
70512
|
const p = ev.payload || {};
|
|
70513
|
+
if (ev.kind === "chat" && ev.type === "prompt") {
|
|
70514
|
+
const src = String(p.source ?? "");
|
|
70515
|
+
if (src === "operator" && myLogin && p.authorLogin === myLogin) return;
|
|
70516
|
+
}
|
|
70517
|
+
try {
|
|
70518
|
+
renderEventBody(ev, ts2, p, myLogin);
|
|
70519
|
+
} finally {
|
|
70520
|
+
maybeDebugDump(p);
|
|
70521
|
+
}
|
|
70522
|
+
}
|
|
70523
|
+
function renderEventBody(ev, ts2, p, myLogin) {
|
|
70524
|
+
if (ev.kind === "chat" && ev.type === "prompt") startWorking();
|
|
70525
|
+
else if (ev.kind === "tail" && ev.type === "PreToolUse") startWorking();
|
|
70526
|
+
else if (ev.kind === "tail" && ev.type === "Stop") stopWorking();
|
|
67906
70527
|
if (ev.kind === "chat") {
|
|
67907
70528
|
if (ev.type === "prompt") {
|
|
67908
70529
|
const text = String(p.text ?? p.prompt ?? "").trim() || JSON.stringify(p).slice(0, 200);
|
|
67909
70530
|
const source = String(p.source ?? "cli");
|
|
67910
|
-
if (source === "operator" && myLogin && p.authorLogin === myLogin) return;
|
|
67911
70531
|
const label = source === "operator" ? `${BOLD2}@${String(p.authorLogin ?? "remote")} \u203A${RESET2}` : `${BOLD2}(cli) \u203A${RESET2}`;
|
|
67912
70532
|
console.log(`${DIM2}[${ts2}]${RESET2} ${label} ${text}`);
|
|
67913
70533
|
return;
|
|
@@ -68491,7 +71111,7 @@ var webhookCmd = new Command("webhook").description("manage webhook subscription
|
|
|
68491
71111
|
|
|
68492
71112
|
// src/index.ts
|
|
68493
71113
|
var program2 = new Command();
|
|
68494
|
-
program2.name("claw").description("clawborrator CLI \u2014 control your Claude Code sessions from the terminal").version("0.0.
|
|
71114
|
+
program2.name("claw").description("clawborrator CLI \u2014 control your Claude Code sessions from the terminal").version("0.0.29");
|
|
68495
71115
|
program2.addCommand(loginCmd);
|
|
68496
71116
|
program2.addCommand(logoutCmd);
|
|
68497
71117
|
program2.addCommand(whoamiCmd);
|