@mcp-s/skills 1.0.2 → 1.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,767 @@
1
+ import { r as __toESM, t as __commonJSMin } from "../../rolldown-runtime.mjs";
2
+ import { stdin, stdout } from "node:process";
3
+ import * as g from "node:readline";
4
+ import O from "node:readline";
5
+ import { Writable } from "node:stream";
6
+ var require_src = /* @__PURE__ */ __commonJSMin(((exports, module) => {
7
+ const ESC = "\x1B";
8
+ const CSI = `${ESC}[`;
9
+ const beep = "\x07";
10
+ const cursor = {
11
+ to(x, y) {
12
+ if (!y) return `${CSI}${x + 1}G`;
13
+ return `${CSI}${y + 1};${x + 1}H`;
14
+ },
15
+ move(x, y) {
16
+ let ret = "";
17
+ if (x < 0) ret += `${CSI}${-x}D`;
18
+ else if (x > 0) ret += `${CSI}${x}C`;
19
+ if (y < 0) ret += `${CSI}${-y}A`;
20
+ else if (y > 0) ret += `${CSI}${y}B`;
21
+ return ret;
22
+ },
23
+ up: (count = 1) => `${CSI}${count}A`,
24
+ down: (count = 1) => `${CSI}${count}B`,
25
+ forward: (count = 1) => `${CSI}${count}C`,
26
+ backward: (count = 1) => `${CSI}${count}D`,
27
+ nextLine: (count = 1) => `${CSI}E`.repeat(count),
28
+ prevLine: (count = 1) => `${CSI}F`.repeat(count),
29
+ left: `${CSI}G`,
30
+ hide: `${CSI}?25l`,
31
+ show: `${CSI}?25h`,
32
+ save: `${ESC}7`,
33
+ restore: `${ESC}8`
34
+ };
35
+ module.exports = {
36
+ cursor,
37
+ scroll: {
38
+ up: (count = 1) => `${CSI}S`.repeat(count),
39
+ down: (count = 1) => `${CSI}T`.repeat(count)
40
+ },
41
+ erase: {
42
+ screen: `${CSI}2J`,
43
+ up: (count = 1) => `${CSI}1J`.repeat(count),
44
+ down: (count = 1) => `${CSI}J`.repeat(count),
45
+ line: `${CSI}2K`,
46
+ lineEnd: `${CSI}K`,
47
+ lineStart: `${CSI}1K`,
48
+ lines(count) {
49
+ let clear = "";
50
+ for (let i = 0; i < count; i++) clear += this.line + (i < count - 1 ? cursor.up() : "");
51
+ if (count) clear += cursor.left;
52
+ return clear;
53
+ }
54
+ },
55
+ beep
56
+ };
57
+ }));
58
+ var require_picocolors = /* @__PURE__ */ __commonJSMin(((exports, module) => {
59
+ let p = process || {}, argv = p.argv || [], env = p.env || {};
60
+ let isColorSupported = !(!!env.NO_COLOR || argv.includes("--no-color")) && (!!env.FORCE_COLOR || argv.includes("--color") || p.platform === "win32" || (p.stdout || {}).isTTY && env.TERM !== "dumb" || !!env.CI);
61
+ let formatter = (open, close, replace = open) => (input) => {
62
+ let string = "" + input, index = string.indexOf(close, open.length);
63
+ return ~index ? open + replaceClose(string, close, replace, index) + close : open + string + close;
64
+ };
65
+ let replaceClose = (string, close, replace, index) => {
66
+ let result = "", cursor = 0;
67
+ do {
68
+ result += string.substring(cursor, index) + replace;
69
+ cursor = index + close.length;
70
+ index = string.indexOf(close, cursor);
71
+ } while (~index);
72
+ return result + string.substring(cursor);
73
+ };
74
+ let createColors = (enabled = isColorSupported) => {
75
+ let f = enabled ? formatter : () => String;
76
+ return {
77
+ isColorSupported: enabled,
78
+ reset: f("\x1B[0m", "\x1B[0m"),
79
+ bold: f("\x1B[1m", "\x1B[22m", "\x1B[22m\x1B[1m"),
80
+ dim: f("\x1B[2m", "\x1B[22m", "\x1B[22m\x1B[2m"),
81
+ italic: f("\x1B[3m", "\x1B[23m"),
82
+ underline: f("\x1B[4m", "\x1B[24m"),
83
+ inverse: f("\x1B[7m", "\x1B[27m"),
84
+ hidden: f("\x1B[8m", "\x1B[28m"),
85
+ strikethrough: f("\x1B[9m", "\x1B[29m"),
86
+ black: f("\x1B[30m", "\x1B[39m"),
87
+ red: f("\x1B[31m", "\x1B[39m"),
88
+ green: f("\x1B[32m", "\x1B[39m"),
89
+ yellow: f("\x1B[33m", "\x1B[39m"),
90
+ blue: f("\x1B[34m", "\x1B[39m"),
91
+ magenta: f("\x1B[35m", "\x1B[39m"),
92
+ cyan: f("\x1B[36m", "\x1B[39m"),
93
+ white: f("\x1B[37m", "\x1B[39m"),
94
+ gray: f("\x1B[90m", "\x1B[39m"),
95
+ bgBlack: f("\x1B[40m", "\x1B[49m"),
96
+ bgRed: f("\x1B[41m", "\x1B[49m"),
97
+ bgGreen: f("\x1B[42m", "\x1B[49m"),
98
+ bgYellow: f("\x1B[43m", "\x1B[49m"),
99
+ bgBlue: f("\x1B[44m", "\x1B[49m"),
100
+ bgMagenta: f("\x1B[45m", "\x1B[49m"),
101
+ bgCyan: f("\x1B[46m", "\x1B[49m"),
102
+ bgWhite: f("\x1B[47m", "\x1B[49m"),
103
+ blackBright: f("\x1B[90m", "\x1B[39m"),
104
+ redBright: f("\x1B[91m", "\x1B[39m"),
105
+ greenBright: f("\x1B[92m", "\x1B[39m"),
106
+ yellowBright: f("\x1B[93m", "\x1B[39m"),
107
+ blueBright: f("\x1B[94m", "\x1B[39m"),
108
+ magentaBright: f("\x1B[95m", "\x1B[39m"),
109
+ cyanBright: f("\x1B[96m", "\x1B[39m"),
110
+ whiteBright: f("\x1B[97m", "\x1B[39m"),
111
+ bgBlackBright: f("\x1B[100m", "\x1B[49m"),
112
+ bgRedBright: f("\x1B[101m", "\x1B[49m"),
113
+ bgGreenBright: f("\x1B[102m", "\x1B[49m"),
114
+ bgYellowBright: f("\x1B[103m", "\x1B[49m"),
115
+ bgBlueBright: f("\x1B[104m", "\x1B[49m"),
116
+ bgMagentaBright: f("\x1B[105m", "\x1B[49m"),
117
+ bgCyanBright: f("\x1B[106m", "\x1B[49m"),
118
+ bgWhiteBright: f("\x1B[107m", "\x1B[49m")
119
+ };
120
+ };
121
+ module.exports = createColors();
122
+ module.exports.createColors = createColors;
123
+ }));
124
+ var import_src = require_src();
125
+ var import_picocolors = /* @__PURE__ */ __toESM(require_picocolors(), 1);
126
+ function DD({ onlyFirst: e = !1 } = {}) {
127
+ const t = ["[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?(?:\\u0007|\\u001B\\u005C|\\u009C))", "(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-nq-uy=><~]))"].join("|");
128
+ return new RegExp(t, e ? void 0 : "g");
129
+ }
130
+ const uD = DD();
131
+ function P(e) {
132
+ if (typeof e != "string") throw new TypeError(`Expected a \`string\`, got \`${typeof e}\``);
133
+ return e.replace(uD, "");
134
+ }
135
+ function L(e) {
136
+ return e && e.__esModule && Object.prototype.hasOwnProperty.call(e, "default") ? e.default : e;
137
+ }
138
+ var W = { exports: {} };
139
+ (function(e) {
140
+ var u = {};
141
+ e.exports = u, u.eastAsianWidth = function(F) {
142
+ var s = F.charCodeAt(0), i = F.length == 2 ? F.charCodeAt(1) : 0, D = s;
143
+ return 55296 <= s && s <= 56319 && 56320 <= i && i <= 57343 && (s &= 1023, i &= 1023, D = s << 10 | i, D += 65536), D == 12288 || 65281 <= D && D <= 65376 || 65504 <= D && D <= 65510 ? "F" : D == 8361 || 65377 <= D && D <= 65470 || 65474 <= D && D <= 65479 || 65482 <= D && D <= 65487 || 65490 <= D && D <= 65495 || 65498 <= D && D <= 65500 || 65512 <= D && D <= 65518 ? "H" : 4352 <= D && D <= 4447 || 4515 <= D && D <= 4519 || 4602 <= D && D <= 4607 || 9001 <= D && D <= 9002 || 11904 <= D && D <= 11929 || 11931 <= D && D <= 12019 || 12032 <= D && D <= 12245 || 12272 <= D && D <= 12283 || 12289 <= D && D <= 12350 || 12353 <= D && D <= 12438 || 12441 <= D && D <= 12543 || 12549 <= D && D <= 12589 || 12593 <= D && D <= 12686 || 12688 <= D && D <= 12730 || 12736 <= D && D <= 12771 || 12784 <= D && D <= 12830 || 12832 <= D && D <= 12871 || 12880 <= D && D <= 13054 || 13056 <= D && D <= 19903 || 19968 <= D && D <= 42124 || 42128 <= D && D <= 42182 || 43360 <= D && D <= 43388 || 44032 <= D && D <= 55203 || 55216 <= D && D <= 55238 || 55243 <= D && D <= 55291 || 63744 <= D && D <= 64255 || 65040 <= D && D <= 65049 || 65072 <= D && D <= 65106 || 65108 <= D && D <= 65126 || 65128 <= D && D <= 65131 || 110592 <= D && D <= 110593 || 127488 <= D && D <= 127490 || 127504 <= D && D <= 127546 || 127552 <= D && D <= 127560 || 127568 <= D && D <= 127569 || 131072 <= D && D <= 194367 || 177984 <= D && D <= 196605 || 196608 <= D && D <= 262141 ? "W" : 32 <= D && D <= 126 || 162 <= D && D <= 163 || 165 <= D && D <= 166 || D == 172 || D == 175 || 10214 <= D && D <= 10221 || 10629 <= D && D <= 10630 ? "Na" : D == 161 || D == 164 || 167 <= D && D <= 168 || D == 170 || 173 <= D && D <= 174 || 176 <= D && D <= 180 || 182 <= D && D <= 186 || 188 <= D && D <= 191 || D == 198 || D == 208 || 215 <= D && D <= 216 || 222 <= D && D <= 225 || D == 230 || 232 <= D && D <= 234 || 236 <= D && D <= 237 || D == 240 || 242 <= D && D <= 243 || 247 <= D && D <= 250 || D == 252 || D == 254 || D == 257 || D == 273 || D == 275 || D == 283 || 294 <= D && D <= 295 || D == 299 || 305 <= D && D <= 307 || D == 312 || 319 <= D && D <= 322 || D == 324 || 328 <= D && D <= 331 || D == 333 || 338 <= D && D <= 339 || 358 <= D && D <= 359 || D == 363 || D == 462 || D == 464 || D == 466 || D == 468 || D == 470 || D == 472 || D == 474 || D == 476 || D == 593 || D == 609 || D == 708 || D == 711 || 713 <= D && D <= 715 || D == 717 || D == 720 || 728 <= D && D <= 731 || D == 733 || D == 735 || 768 <= D && D <= 879 || 913 <= D && D <= 929 || 931 <= D && D <= 937 || 945 <= D && D <= 961 || 963 <= D && D <= 969 || D == 1025 || 1040 <= D && D <= 1103 || D == 1105 || D == 8208 || 8211 <= D && D <= 8214 || 8216 <= D && D <= 8217 || 8220 <= D && D <= 8221 || 8224 <= D && D <= 8226 || 8228 <= D && D <= 8231 || D == 8240 || 8242 <= D && D <= 8243 || D == 8245 || D == 8251 || D == 8254 || D == 8308 || D == 8319 || 8321 <= D && D <= 8324 || D == 8364 || D == 8451 || D == 8453 || D == 8457 || D == 8467 || D == 8470 || 8481 <= D && D <= 8482 || D == 8486 || D == 8491 || 8531 <= D && D <= 8532 || 8539 <= D && D <= 8542 || 8544 <= D && D <= 8555 || 8560 <= D && D <= 8569 || D == 8585 || 8592 <= D && D <= 8601 || 8632 <= D && D <= 8633 || D == 8658 || D == 8660 || D == 8679 || D == 8704 || 8706 <= D && D <= 8707 || 8711 <= D && D <= 8712 || D == 8715 || D == 8719 || D == 8721 || D == 8725 || D == 8730 || 8733 <= D && D <= 8736 || D == 8739 || D == 8741 || 8743 <= D && D <= 8748 || D == 8750 || 8756 <= D && D <= 8759 || 8764 <= D && D <= 8765 || D == 8776 || D == 8780 || D == 8786 || 8800 <= D && D <= 8801 || 8804 <= D && D <= 8807 || 8810 <= D && D <= 8811 || 8814 <= D && D <= 8815 || 8834 <= D && D <= 8835 || 8838 <= D && D <= 8839 || D == 8853 || D == 8857 || D == 8869 || D == 8895 || D == 8978 || 9312 <= D && D <= 9449 || 9451 <= D && D <= 9547 || 9552 <= D && D <= 9587 || 9600 <= D && D <= 9615 || 9618 <= D && D <= 9621 || 9632 <= D && D <= 9633 || 9635 <= D && D <= 9641 || 9650 <= D && D <= 9651 || 9654 <= D && D <= 9655 || 9660 <= D && D <= 9661 || 9664 <= D && D <= 9665 || 9670 <= D && D <= 9672 || D == 9675 || 9678 <= D && D <= 9681 || 9698 <= D && D <= 9701 || D == 9711 || 9733 <= D && D <= 9734 || D == 9737 || 9742 <= D && D <= 9743 || 9748 <= D && D <= 9749 || D == 9756 || D == 9758 || D == 9792 || D == 9794 || 9824 <= D && D <= 9825 || 9827 <= D && D <= 9829 || 9831 <= D && D <= 9834 || 9836 <= D && D <= 9837 || D == 9839 || 9886 <= D && D <= 9887 || 9918 <= D && D <= 9919 || 9924 <= D && D <= 9933 || 9935 <= D && D <= 9953 || D == 9955 || 9960 <= D && D <= 9983 || D == 10045 || D == 10071 || 10102 <= D && D <= 10111 || 11093 <= D && D <= 11097 || 12872 <= D && D <= 12879 || 57344 <= D && D <= 63743 || 65024 <= D && D <= 65039 || D == 65533 || 127232 <= D && D <= 127242 || 127248 <= D && D <= 127277 || 127280 <= D && D <= 127337 || 127344 <= D && D <= 127386 || 917760 <= D && D <= 917999 || 983040 <= D && D <= 1048573 || 1048576 <= D && D <= 1114109 ? "A" : "N";
144
+ }, u.characterLength = function(F) {
145
+ var s = this.eastAsianWidth(F);
146
+ return s == "F" || s == "W" || s == "A" ? 2 : 1;
147
+ };
148
+ function t(F) {
149
+ return F.match(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[^\uD800-\uDFFF]/g) || [];
150
+ }
151
+ u.length = function(F) {
152
+ for (var s = t(F), i = 0, D = 0; D < s.length; D++) i = i + this.characterLength(s[D]);
153
+ return i;
154
+ }, u.slice = function(F, s, i) {
155
+ textLen = u.length(F), s = s || 0, i = i || 1, s < 0 && (s = textLen + s), i < 0 && (i = textLen + i);
156
+ for (var D = "", C = 0, n = t(F), E = 0; E < n.length; E++) {
157
+ var a = n[E], o = u.length(a);
158
+ if (C >= s - (o == 2 ? 1 : 0)) if (C + o <= i) D += a;
159
+ else break;
160
+ C += o;
161
+ }
162
+ return D;
163
+ };
164
+ })(W);
165
+ var tD = W.exports;
166
+ const eD = L(tD);
167
+ var FD = function() {
168
+ return /\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62(?:\uDB40\uDC77\uDB40\uDC6C\uDB40\uDC73|\uDB40\uDC73\uDB40\uDC63\uDB40\uDC74|\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67)\uDB40\uDC7F|(?:\uD83E\uDDD1\uD83C\uDFFF\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFF\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB-\uDFFE])|(?:\uD83E\uDDD1\uD83C\uDFFE\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFE\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB-\uDFFD\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFD\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFD\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFC\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFC\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB\uDFFD-\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFB\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFB\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFC-\uDFFF])|\uD83D\uDC68(?:\uD83C\uDFFB(?:\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF]))|\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFC-\uDFFF])|[\u2695\u2696\u2708]\uFE0F|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))?|(?:\uD83C[\uDFFC-\uDFFF])\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFF]))|\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83D\uDC68|(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFE])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])\uFE0F|\u200D(?:(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D[\uDC66\uDC67])|\uD83D[\uDC66\uDC67])|\uD83C\uDFFF|\uD83C\uDFFE|\uD83C\uDFFD|\uD83C\uDFFC)?|(?:\uD83D\uDC69(?:\uD83C\uDFFB\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69])|(?:\uD83C[\uDFFC-\uDFFF])\u200D\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69]))|\uD83E\uDDD1(?:\uD83C[\uDFFB-\uDFFF])\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1)(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|\uD83D\uDC69(?:\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69])|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFB\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))|\uD83E\uDDD1(?:\u200D(?:\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFB\u200D(?:\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))|\uD83D\uDC69\u200D\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D[\uDC66\uDC67])|\uD83D\uDC69\u200D\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|(?:\uD83D\uDC41\uFE0F\u200D\uD83D\uDDE8|\uD83E\uDDD1(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|\uD83D\uDC69(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|\uD83D\uDE36\u200D\uD83C\uDF2B|\uD83C\uDFF3\uFE0F\u200D\u26A7|\uD83D\uDC3B\u200D\u2744|(?:(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC6F|\uD83E[\uDD3C\uDDDE\uDDDF])\u200D[\u2640\u2642]|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642]|\uD83C\uDFF4\u200D\u2620|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])\u200D[\u2640\u2642]|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u2600-\u2604\u260E\u2611\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26B0\u26B1\u26C8\u26CF\u26D1\u26D3\u26E9\u26F0\u26F1\u26F4\u26F7\u26F8\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u3030\u303D\u3297\u3299]|\uD83C[\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]|\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|\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08|\uD83D\uDC69\u200D\uD83D\uDC67|\uD83D\uDC69\u200D\uD83D\uDC66|\uD83D\uDE35\u200D\uD83D\uDCAB|\uD83D\uDE2E\u200D\uD83D\uDCA8|\uD83D\uDC15\u200D\uD83E\uDDBA|\uD83E\uDDD1(?:\uD83C\uDFFF|\uD83C\uDFFE|\uD83C\uDFFD|\uD83C\uDFFC|\uD83C\uDFFB)?|\uD83D\uDC69(?:\uD83C\uDFFF|\uD83C\uDFFE|\uD83C\uDFFD|\uD83C\uDFFC|\uD83C\uDFFB)?|\uD83C\uDDFD\uD83C\uDDF0|\uD83C\uDDF6\uD83C\uDDE6|\uD83C\uDDF4\uD83C\uDDF2|\uD83D\uDC08\u200D\u2B1B|\u2764\uFE0F\u200D(?:\uD83D\uDD25|\uD83E\uDE79)|\uD83D\uDC41\uFE0F|\uD83C\uDFF3\uFE0F|\uD83C\uDDFF(?:\uD83C[\uDDE6\uDDF2\uDDFC])|\uD83C\uDDFE(?:\uD83C[\uDDEA\uDDF9])|\uD83C\uDDFC(?:\uD83C[\uDDEB\uDDF8])|\uD83C\uDDFB(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA])|\uD83C\uDDFA(?:\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF])|\uD83C\uDDF9(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF])|\uD83C\uDDF8(?:\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF])|\uD83C\uDDF7(?:\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC])|\uD83C\uDDF5(?:\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE])|\uD83C\uDDF3(?:\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF])|\uD83C\uDDF2(?:\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF])|\uD83C\uDDF1(?:\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE])|\uD83C\uDDF0(?:\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF])|\uD83C\uDDEF(?:\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5])|\uD83C\uDDEE(?:\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9])|\uD83C\uDDED(?:\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA])|\uD83C\uDDEC(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE])|\uD83C\uDDEB(?:\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7])|\uD83C\uDDEA(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA])|\uD83C\uDDE9(?:\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF])|\uD83C\uDDE8(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF5\uDDF7\uDDFA-\uDDFF])|\uD83C\uDDE7(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF])|\uD83C\uDDE6(?:\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF])|[#\*0-9]\uFE0F\u20E3|\u2764\uFE0F|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])|\uD83C\uDFF4|(?:[\u270A\u270B]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\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]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5])(?:\uD83C[\uDFFB-\uDFFF])|(?:[\u261D\u270C\u270D]|\uD83D[\uDD74\uDD90])(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])|[\u270A\u270B]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\uDC08\uDC15\uDC3B\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE2E\uDE35\uDE36\uDE4C\uDE4F\uDEC0\uDECC]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5]|\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD4\uDDD6-\uDDDD]|\uD83D\uDC6F|\uD83E[\uDD3C\uDDDE\uDDDF]|[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\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-\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED7\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0D\uDD0E\uDD10-\uDD17\uDD1D\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78\uDD7A-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCB\uDDD0\uDDE0-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6]|(?:[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u270A\u270B\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF93\uDFA0-\uDFCA\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF4\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC3E\uDC40\uDC42-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDD7A\uDD95\uDD96\uDDA4\uDDFB-\uDE4F\uDE80-\uDEC5\uDECC\uDED0-\uDED2\uDED5-\uDED7\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0C-\uDD3A\uDD3C-\uDD45\uDD47-\uDD78\uDD7A-\uDDCB\uDDCD-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6])|(?:[#\*0-9\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23E9-\u23F3\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB-\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u261D\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692-\u2697\u2699\u269B\u269C\u26A0\u26A1\u26A7\u26AA\u26AB\u26B0\u26B1\u26BD\u26BE\u26C4\u26C5\u26C8\u26CE\u26CF\u26D1\u26D3\u26D4\u26E9\u26EA\u26F0-\u26F5\u26F7-\u26FA\u26FD\u2702\u2705\u2708-\u270D\u270F\u2712\u2714\u2716\u271D\u2721\u2728\u2733\u2734\u2744\u2747\u274C\u274E\u2753-\u2755\u2757\u2763\u2764\u2795-\u2797\u27A1\u27B0\u27BF\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B50\u2B55\u3030\u303D\u3297\u3299]|\uD83C[\uDC04\uDCCF\uDD70\uDD71\uDD7E\uDD7F\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE02\uDE1A\uDE2F\uDE32-\uDE3A\uDE50\uDE51\uDF00-\uDF21\uDF24-\uDF93\uDF96\uDF97\uDF99-\uDF9B\uDF9E-\uDFF0\uDFF3-\uDFF5\uDFF7-\uDFFF]|\uD83D[\uDC00-\uDCFD\uDCFF-\uDD3D\uDD49-\uDD4E\uDD50-\uDD67\uDD6F\uDD70\uDD73-\uDD7A\uDD87\uDD8A-\uDD8D\uDD90\uDD95\uDD96\uDDA4\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA-\uDE4F\uDE80-\uDEC5\uDECB-\uDED2\uDED5-\uDED7\uDEE0-\uDEE5\uDEE9\uDEEB\uDEEC\uDEF0\uDEF3-\uDEFC\uDFE0-\uDFEB]|\uD83E[\uDD0C-\uDD3A\uDD3C-\uDD45\uDD47-\uDD78\uDD7A-\uDDCB\uDDCD-\uDDFF\uDE70-\uDE74\uDE78-\uDE7A\uDE80-\uDE86\uDE90-\uDEA8\uDEB0-\uDEB6\uDEC0-\uDEC2\uDED0-\uDED6])\uFE0F|(?:[\u261D\u26F9\u270A-\u270D]|\uD83C[\uDF85\uDFC2-\uDFC4\uDFC7\uDFCA-\uDFCC]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66-\uDC78\uDC7C\uDC81-\uDC83\uDC85-\uDC87\uDC8F\uDC91\uDCAA\uDD74\uDD75\uDD7A\uDD90\uDD95\uDD96\uDE45-\uDE47\uDE4B-\uDE4F\uDEA3\uDEB4-\uDEB6\uDEC0\uDECC]|\uD83E[\uDD0C\uDD0F\uDD18-\uDD1F\uDD26\uDD30-\uDD39\uDD3C-\uDD3E\uDD77\uDDB5\uDDB6\uDDB8\uDDB9\uDDBB\uDDCD-\uDDCF\uDDD1-\uDDDD])/g;
169
+ };
170
+ const sD = L(FD);
171
+ function p(e, u = {}) {
172
+ if (typeof e != "string" || e.length === 0 || (u = {
173
+ ambiguousIsNarrow: !0,
174
+ ...u
175
+ }, e = P(e), e.length === 0)) return 0;
176
+ e = e.replace(sD(), " ");
177
+ const t = u.ambiguousIsNarrow ? 1 : 2;
178
+ let F = 0;
179
+ for (const s of e) {
180
+ const i = s.codePointAt(0);
181
+ if (i <= 31 || i >= 127 && i <= 159 || i >= 768 && i <= 879) continue;
182
+ switch (eD.eastAsianWidth(s)) {
183
+ case "F":
184
+ case "W":
185
+ F += 2;
186
+ break;
187
+ case "A":
188
+ F += t;
189
+ break;
190
+ default: F += 1;
191
+ }
192
+ }
193
+ return F;
194
+ }
195
+ const w = 10, N = (e = 0) => (u) => `\x1B[${u + e}m`, I = (e = 0) => (u) => `\x1B[${38 + e};5;${u}m`, R = (e = 0) => (u, t, F) => `\x1B[${38 + e};2;${u};${t};${F}m`, r = {
196
+ modifier: {
197
+ reset: [0, 0],
198
+ bold: [1, 22],
199
+ dim: [2, 22],
200
+ italic: [3, 23],
201
+ underline: [4, 24],
202
+ overline: [53, 55],
203
+ inverse: [7, 27],
204
+ hidden: [8, 28],
205
+ strikethrough: [9, 29]
206
+ },
207
+ color: {
208
+ black: [30, 39],
209
+ red: [31, 39],
210
+ green: [32, 39],
211
+ yellow: [33, 39],
212
+ blue: [34, 39],
213
+ magenta: [35, 39],
214
+ cyan: [36, 39],
215
+ white: [37, 39],
216
+ blackBright: [90, 39],
217
+ gray: [90, 39],
218
+ grey: [90, 39],
219
+ redBright: [91, 39],
220
+ greenBright: [92, 39],
221
+ yellowBright: [93, 39],
222
+ blueBright: [94, 39],
223
+ magentaBright: [95, 39],
224
+ cyanBright: [96, 39],
225
+ whiteBright: [97, 39]
226
+ },
227
+ bgColor: {
228
+ bgBlack: [40, 49],
229
+ bgRed: [41, 49],
230
+ bgGreen: [42, 49],
231
+ bgYellow: [43, 49],
232
+ bgBlue: [44, 49],
233
+ bgMagenta: [45, 49],
234
+ bgCyan: [46, 49],
235
+ bgWhite: [47, 49],
236
+ bgBlackBright: [100, 49],
237
+ bgGray: [100, 49],
238
+ bgGrey: [100, 49],
239
+ bgRedBright: [101, 49],
240
+ bgGreenBright: [102, 49],
241
+ bgYellowBright: [103, 49],
242
+ bgBlueBright: [104, 49],
243
+ bgMagentaBright: [105, 49],
244
+ bgCyanBright: [106, 49],
245
+ bgWhiteBright: [107, 49]
246
+ }
247
+ };
248
+ Object.keys(r.modifier);
249
+ const iD = Object.keys(r.color), CD = Object.keys(r.bgColor);
250
+ [...iD, ...CD];
251
+ function rD() {
252
+ const e = /* @__PURE__ */ new Map();
253
+ for (const [u, t] of Object.entries(r)) {
254
+ for (const [F, s] of Object.entries(t)) r[F] = {
255
+ open: `\x1B[${s[0]}m`,
256
+ close: `\x1B[${s[1]}m`
257
+ }, t[F] = r[F], e.set(s[0], s[1]);
258
+ Object.defineProperty(r, u, {
259
+ value: t,
260
+ enumerable: !1
261
+ });
262
+ }
263
+ return Object.defineProperty(r, "codes", {
264
+ value: e,
265
+ enumerable: !1
266
+ }), r.color.close = "\x1B[39m", r.bgColor.close = "\x1B[49m", r.color.ansi = N(), r.color.ansi256 = I(), r.color.ansi16m = R(), r.bgColor.ansi = N(w), r.bgColor.ansi256 = I(w), r.bgColor.ansi16m = R(w), Object.defineProperties(r, {
267
+ rgbToAnsi256: {
268
+ value: (u, t, F) => u === t && t === F ? u < 8 ? 16 : u > 248 ? 231 : Math.round((u - 8) / 247 * 24) + 232 : 16 + 36 * Math.round(u / 255 * 5) + 6 * Math.round(t / 255 * 5) + Math.round(F / 255 * 5),
269
+ enumerable: !1
270
+ },
271
+ hexToRgb: {
272
+ value: (u) => {
273
+ const t = /[a-f\d]{6}|[a-f\d]{3}/i.exec(u.toString(16));
274
+ if (!t) return [
275
+ 0,
276
+ 0,
277
+ 0
278
+ ];
279
+ let [F] = t;
280
+ F.length === 3 && (F = [...F].map((i) => i + i).join(""));
281
+ const s = Number.parseInt(F, 16);
282
+ return [
283
+ s >> 16 & 255,
284
+ s >> 8 & 255,
285
+ s & 255
286
+ ];
287
+ },
288
+ enumerable: !1
289
+ },
290
+ hexToAnsi256: {
291
+ value: (u) => r.rgbToAnsi256(...r.hexToRgb(u)),
292
+ enumerable: !1
293
+ },
294
+ ansi256ToAnsi: {
295
+ value: (u) => {
296
+ if (u < 8) return 30 + u;
297
+ if (u < 16) return 90 + (u - 8);
298
+ let t, F, s;
299
+ if (u >= 232) t = ((u - 232) * 10 + 8) / 255, F = t, s = t;
300
+ else {
301
+ u -= 16;
302
+ const C = u % 36;
303
+ t = Math.floor(u / 36) / 5, F = Math.floor(C / 6) / 5, s = C % 6 / 5;
304
+ }
305
+ const i = Math.max(t, F, s) * 2;
306
+ if (i === 0) return 30;
307
+ let D = 30 + (Math.round(s) << 2 | Math.round(F) << 1 | Math.round(t));
308
+ return i === 2 && (D += 60), D;
309
+ },
310
+ enumerable: !1
311
+ },
312
+ rgbToAnsi: {
313
+ value: (u, t, F) => r.ansi256ToAnsi(r.rgbToAnsi256(u, t, F)),
314
+ enumerable: !1
315
+ },
316
+ hexToAnsi: {
317
+ value: (u) => r.ansi256ToAnsi(r.hexToAnsi256(u)),
318
+ enumerable: !1
319
+ }
320
+ }), r;
321
+ }
322
+ const ED = rD(), d = new Set(["\x1B", "›"]), oD = 39, y$1 = "\x07", V = "[", nD = "]", G = "m", _ = `${nD}8;;`, z = (e) => `${d.values().next().value}${V}${e}${G}`, K = (e) => `${d.values().next().value}${_}${e}${y$1}`, aD = (e) => e.split(" ").map((u) => p(u)), k = (e, u, t) => {
323
+ const F = [...u];
324
+ let s = !1, i = !1, D = p(P(e[e.length - 1]));
325
+ for (const [C, n] of F.entries()) {
326
+ const E = p(n);
327
+ if (D + E <= t ? e[e.length - 1] += n : (e.push(n), D = 0), d.has(n) && (s = !0, i = F.slice(C + 1).join("").startsWith(_)), s) {
328
+ i ? n === y$1 && (s = !1, i = !1) : n === G && (s = !1);
329
+ continue;
330
+ }
331
+ D += E, D === t && C < F.length - 1 && (e.push(""), D = 0);
332
+ }
333
+ !D && e[e.length - 1].length > 0 && e.length > 1 && (e[e.length - 2] += e.pop());
334
+ }, hD = (e) => {
335
+ const u = e.split(" ");
336
+ let t = u.length;
337
+ for (; t > 0 && !(p(u[t - 1]) > 0);) t--;
338
+ return t === u.length ? e : u.slice(0, t).join(" ") + u.slice(t).join("");
339
+ }, lD = (e, u, t = {}) => {
340
+ if (t.trim !== !1 && e.trim() === "") return "";
341
+ let F = "", s, i;
342
+ const D = aD(e);
343
+ let C = [""];
344
+ for (const [E, a] of e.split(" ").entries()) {
345
+ t.trim !== !1 && (C[C.length - 1] = C[C.length - 1].trimStart());
346
+ let o = p(C[C.length - 1]);
347
+ if (E !== 0 && (o >= u && (t.wordWrap === !1 || t.trim === !1) && (C.push(""), o = 0), (o > 0 || t.trim === !1) && (C[C.length - 1] += " ", o++)), t.hard && D[E] > u) {
348
+ const c = u - o, f = 1 + Math.floor((D[E] - c - 1) / u);
349
+ Math.floor((D[E] - 1) / u) < f && C.push(""), k(C, a, u);
350
+ continue;
351
+ }
352
+ if (o + D[E] > u && o > 0 && D[E] > 0) {
353
+ if (t.wordWrap === !1 && o < u) {
354
+ k(C, a, u);
355
+ continue;
356
+ }
357
+ C.push("");
358
+ }
359
+ if (o + D[E] > u && t.wordWrap === !1) {
360
+ k(C, a, u);
361
+ continue;
362
+ }
363
+ C[C.length - 1] += a;
364
+ }
365
+ t.trim !== !1 && (C = C.map((E) => hD(E)));
366
+ const n = [...C.join(`
367
+ `)];
368
+ for (const [E, a] of n.entries()) {
369
+ if (F += a, d.has(a)) {
370
+ const { groups: c } = new RegExp(`(?:\\${V}(?<code>\\d+)m|\\${_}(?<uri>.*)${y$1})`).exec(n.slice(E).join("")) || { groups: {} };
371
+ if (c.code !== void 0) {
372
+ const f = Number.parseFloat(c.code);
373
+ s = f === oD ? void 0 : f;
374
+ } else c.uri !== void 0 && (i = c.uri.length === 0 ? void 0 : c.uri);
375
+ }
376
+ const o = ED.codes.get(Number(s));
377
+ n[E + 1] === `
378
+ ` ? (i && (F += K("")), s && o && (F += z(o))) : a === `
379
+ ` && (s && o && (F += z(s)), i && (F += K(i)));
380
+ }
381
+ return F;
382
+ };
383
+ function Y(e, u, t) {
384
+ return String(e).normalize().replace(/\r\n/g, `
385
+ `).split(`
386
+ `).map((F) => lD(F, u, t)).join(`
387
+ `);
388
+ }
389
+ const B = {
390
+ actions: new Set([
391
+ "up",
392
+ "down",
393
+ "left",
394
+ "right",
395
+ "space",
396
+ "enter",
397
+ "cancel"
398
+ ]),
399
+ aliases: new Map([
400
+ ["k", "up"],
401
+ ["j", "down"],
402
+ ["h", "left"],
403
+ ["l", "right"],
404
+ ["", "cancel"],
405
+ ["escape", "cancel"]
406
+ ])
407
+ };
408
+ function $(e, u) {
409
+ if (typeof e == "string") return B.aliases.get(e) === u;
410
+ for (const t of e) if (t !== void 0 && $(t, u)) return !0;
411
+ return !1;
412
+ }
413
+ function BD(e, u) {
414
+ if (e === u) return;
415
+ const t = e.split(`
416
+ `), F = u.split(`
417
+ `), s = [];
418
+ for (let i = 0; i < Math.max(t.length, F.length); i++) t[i] !== F[i] && s.push(i);
419
+ return s;
420
+ }
421
+ const AD = globalThis.process.platform.startsWith("win"), S = Symbol("clack:cancel");
422
+ function pD(e) {
423
+ return e === S;
424
+ }
425
+ function m(e, u) {
426
+ const t = e;
427
+ t.isTTY && t.setRawMode(u);
428
+ }
429
+ function fD({ input: e = stdin, output: u = stdout, overwrite: t = !0, hideCursor: F = !0 } = {}) {
430
+ const s = g.createInterface({
431
+ input: e,
432
+ output: u,
433
+ prompt: "",
434
+ tabSize: 1
435
+ });
436
+ g.emitKeypressEvents(e, s), e.isTTY && e.setRawMode(!0);
437
+ const i = (D, { name: C, sequence: n }) => {
438
+ if ($([
439
+ String(D),
440
+ C,
441
+ n
442
+ ], "cancel")) {
443
+ F && u.write(import_src.cursor.show), process.exit(0);
444
+ return;
445
+ }
446
+ if (!t) return;
447
+ const a = C === "return" ? 0 : -1, o = C === "return" ? -1 : 0;
448
+ g.moveCursor(u, a, o, () => {
449
+ g.clearLine(u, 1, () => {
450
+ e.once("keypress", i);
451
+ });
452
+ });
453
+ };
454
+ return F && u.write(import_src.cursor.hide), e.once("keypress", i), () => {
455
+ e.off("keypress", i), F && u.write(import_src.cursor.show), e.isTTY && !AD && e.setRawMode(!1), s.terminal = !1, s.close();
456
+ };
457
+ }
458
+ var gD = Object.defineProperty, vD = (e, u, t) => u in e ? gD(e, u, {
459
+ enumerable: !0,
460
+ configurable: !0,
461
+ writable: !0,
462
+ value: t
463
+ }) : e[u] = t, h = (e, u, t) => (vD(e, typeof u != "symbol" ? u + "" : u, t), t);
464
+ var x = class {
465
+ constructor(u, t = !0) {
466
+ h(this, "input"), h(this, "output"), h(this, "_abortSignal"), h(this, "rl"), h(this, "opts"), h(this, "_render"), h(this, "_track", !1), h(this, "_prevFrame", ""), h(this, "_subscribers", /* @__PURE__ */ new Map()), h(this, "_cursor", 0), h(this, "state", "initial"), h(this, "error", ""), h(this, "value");
467
+ const { input: F = stdin, output: s = stdout, render: i, signal: D, ...C } = u;
468
+ this.opts = C, this.onKeypress = this.onKeypress.bind(this), this.close = this.close.bind(this), this.render = this.render.bind(this), this._render = i.bind(this), this._track = t, this._abortSignal = D, this.input = F, this.output = s;
469
+ }
470
+ unsubscribe() {
471
+ this._subscribers.clear();
472
+ }
473
+ setSubscriber(u, t) {
474
+ const F = this._subscribers.get(u) ?? [];
475
+ F.push(t), this._subscribers.set(u, F);
476
+ }
477
+ on(u, t) {
478
+ this.setSubscriber(u, { cb: t });
479
+ }
480
+ once(u, t) {
481
+ this.setSubscriber(u, {
482
+ cb: t,
483
+ once: !0
484
+ });
485
+ }
486
+ emit(u, ...t) {
487
+ const F = this._subscribers.get(u) ?? [], s = [];
488
+ for (const i of F) i.cb(...t), i.once && s.push(() => F.splice(F.indexOf(i), 1));
489
+ for (const i of s) i();
490
+ }
491
+ prompt() {
492
+ return new Promise((u, t) => {
493
+ if (this._abortSignal) {
494
+ if (this._abortSignal.aborted) return this.state = "cancel", this.close(), u(S);
495
+ this._abortSignal.addEventListener("abort", () => {
496
+ this.state = "cancel", this.close();
497
+ }, { once: !0 });
498
+ }
499
+ const F = new Writable();
500
+ F._write = (s, i, D) => {
501
+ this._track && (this.value = this.rl?.line.replace(/\t/g, ""), this._cursor = this.rl?.cursor ?? 0, this.emit("value", this.value)), D();
502
+ }, this.input.pipe(F), this.rl = O.createInterface({
503
+ input: this.input,
504
+ output: F,
505
+ tabSize: 2,
506
+ prompt: "",
507
+ escapeCodeTimeout: 50,
508
+ terminal: !0
509
+ }), O.emitKeypressEvents(this.input, this.rl), this.rl.prompt(), this.opts.initialValue !== void 0 && this._track && this.rl.write(this.opts.initialValue), this.input.on("keypress", this.onKeypress), m(this.input, !0), this.output.on("resize", this.render), this.render(), this.once("submit", () => {
510
+ this.output.write(import_src.cursor.show), this.output.off("resize", this.render), m(this.input, !1), u(this.value);
511
+ }), this.once("cancel", () => {
512
+ this.output.write(import_src.cursor.show), this.output.off("resize", this.render), m(this.input, !1), u(S);
513
+ });
514
+ });
515
+ }
516
+ onKeypress(u, t) {
517
+ if (this.state === "error" && (this.state = "active"), t?.name && (!this._track && B.aliases.has(t.name) && this.emit("cursor", B.aliases.get(t.name)), B.actions.has(t.name) && this.emit("cursor", t.name)), u && (u.toLowerCase() === "y" || u.toLowerCase() === "n") && this.emit("confirm", u.toLowerCase() === "y"), u === " " && this.opts.placeholder && (this.value || (this.rl?.write(this.opts.placeholder), this.emit("value", this.opts.placeholder))), u && this.emit("key", u.toLowerCase()), t?.name === "return") {
518
+ if (this.opts.validate) {
519
+ const F = this.opts.validate(this.value);
520
+ F && (this.error = F instanceof Error ? F.message : F, this.state = "error", this.rl?.write(this.value));
521
+ }
522
+ this.state !== "error" && (this.state = "submit");
523
+ }
524
+ $([
525
+ u,
526
+ t?.name,
527
+ t?.sequence
528
+ ], "cancel") && (this.state = "cancel"), (this.state === "submit" || this.state === "cancel") && this.emit("finalize"), this.render(), (this.state === "submit" || this.state === "cancel") && this.close();
529
+ }
530
+ close() {
531
+ this.input.unpipe(), this.input.removeListener("keypress", this.onKeypress), this.output.write(`
532
+ `), m(this.input, !1), this.rl?.close(), this.rl = void 0, this.emit(`${this.state}`, this.value), this.unsubscribe();
533
+ }
534
+ restoreCursor() {
535
+ const u = Y(this._prevFrame, process.stdout.columns, { hard: !0 }).split(`
536
+ `).length - 1;
537
+ this.output.write(import_src.cursor.move(-999, u * -1));
538
+ }
539
+ render() {
540
+ const u = Y(this._render(this) ?? "", process.stdout.columns, { hard: !0 });
541
+ if (u !== this._prevFrame) {
542
+ if (this.state === "initial") this.output.write(import_src.cursor.hide);
543
+ else {
544
+ const t = BD(this._prevFrame, u);
545
+ if (this.restoreCursor(), t && t?.length === 1) {
546
+ const F = t[0];
547
+ this.output.write(import_src.cursor.move(0, F)), this.output.write(import_src.erase.lines(1));
548
+ const s = u.split(`
549
+ `);
550
+ this.output.write(s[F]), this._prevFrame = u, this.output.write(import_src.cursor.move(0, s.length - F - 1));
551
+ return;
552
+ }
553
+ if (t && t?.length > 1) {
554
+ const F = t[0];
555
+ this.output.write(import_src.cursor.move(0, F)), this.output.write(import_src.erase.down());
556
+ const s = u.split(`
557
+ `).slice(F);
558
+ this.output.write(s.join(`
559
+ `)), this._prevFrame = u;
560
+ return;
561
+ }
562
+ this.output.write(import_src.erase.down());
563
+ }
564
+ this.output.write(u), this.state === "initial" && (this.state = "active"), this._prevFrame = u;
565
+ }
566
+ }
567
+ };
568
+ var dD = class extends x {
569
+ get cursor() {
570
+ return this.value ? 0 : 1;
571
+ }
572
+ get _value() {
573
+ return this.cursor === 0;
574
+ }
575
+ constructor(u) {
576
+ super(u, !1), this.value = !!u.initialValue, this.on("value", () => {
577
+ this.value = this._value;
578
+ }), this.on("confirm", (t) => {
579
+ this.output.write(import_src.cursor.move(0, -1)), this.value = t, this.state = "submit", this.close();
580
+ }), this.on("cursor", () => {
581
+ this.value = !this.value;
582
+ });
583
+ }
584
+ };
585
+ var mD = Object.defineProperty, bD = (e, u, t) => u in e ? mD(e, u, {
586
+ enumerable: !0,
587
+ configurable: !0,
588
+ writable: !0,
589
+ value: t
590
+ }) : e[u] = t, Z = (e, u, t) => (bD(e, typeof u != "symbol" ? u + "" : u, t), t), q = (e, u, t) => {
591
+ if (!u.has(e)) throw TypeError("Cannot " + t);
592
+ }, T = (e, u, t) => (q(e, u, "read from private field"), t ? t.call(e) : u.get(e)), wD = (e, u, t) => {
593
+ if (u.has(e)) throw TypeError("Cannot add the same private member more than once");
594
+ u instanceof WeakSet ? u.add(e) : u.set(e, t);
595
+ }, yD = (e, u, t, F) => (q(e, u, "write to private field"), F ? F.call(e, t) : u.set(e, t), t), A;
596
+ let _D = class extends x {
597
+ constructor(u) {
598
+ super(u, !1), Z(this, "options"), Z(this, "cursor", 0), wD(this, A, void 0);
599
+ const { options: t } = u;
600
+ yD(this, A, u.selectableGroups !== !1), this.options = Object.entries(t).flatMap(([F, s]) => [{
601
+ value: F,
602
+ group: !0,
603
+ label: F
604
+ }, ...s.map((i) => ({
605
+ ...i,
606
+ group: F
607
+ }))]), this.value = [...u.initialValues ?? []], this.cursor = Math.max(this.options.findIndex(({ value: F }) => F === u.cursorAt), T(this, A) ? 0 : 1), this.on("cursor", (F) => {
608
+ switch (F) {
609
+ case "left":
610
+ case "up": {
611
+ this.cursor = this.cursor === 0 ? this.options.length - 1 : this.cursor - 1;
612
+ const s = this.options[this.cursor]?.group === !0;
613
+ !T(this, A) && s && (this.cursor = this.cursor === 0 ? this.options.length - 1 : this.cursor - 1);
614
+ break;
615
+ }
616
+ case "down":
617
+ case "right": {
618
+ this.cursor = this.cursor === this.options.length - 1 ? 0 : this.cursor + 1;
619
+ const s = this.options[this.cursor]?.group === !0;
620
+ !T(this, A) && s && (this.cursor = this.cursor === this.options.length - 1 ? 0 : this.cursor + 1);
621
+ break;
622
+ }
623
+ case "space":
624
+ this.toggleValue();
625
+ break;
626
+ }
627
+ });
628
+ }
629
+ getGroupItems(u) {
630
+ return this.options.filter((t) => t.group === u);
631
+ }
632
+ isGroupSelected(u) {
633
+ return this.getGroupItems(u).every((t) => this.value.includes(t.value));
634
+ }
635
+ toggleValue() {
636
+ const u = this.options[this.cursor];
637
+ if (u.group === !0) {
638
+ const t = u.value, F = this.getGroupItems(t);
639
+ this.isGroupSelected(t) ? this.value = this.value.filter((s) => F.findIndex((i) => i.value === s) === -1) : this.value = [...this.value, ...F.map((s) => s.value)], this.value = Array.from(new Set(this.value));
640
+ } else this.value = this.value.includes(u.value) ? this.value.filter((F) => F !== u.value) : [...this.value, u.value];
641
+ }
642
+ };
643
+ A = /* @__PURE__ */ new WeakMap();
644
+ var kD = Object.defineProperty, $D = (e, u, t) => u in e ? kD(e, u, {
645
+ enumerable: !0,
646
+ configurable: !0,
647
+ writable: !0,
648
+ value: t
649
+ }) : e[u] = t, H = (e, u, t) => ($D(e, typeof u != "symbol" ? u + "" : u, t), t);
650
+ let SD = class extends x {
651
+ constructor(u) {
652
+ super(u, !1), H(this, "options"), H(this, "cursor", 0), this.options = u.options, this.value = [...u.initialValues ?? []], this.cursor = Math.max(this.options.findIndex(({ value: t }) => t === u.cursorAt), 0), this.on("key", (t) => {
653
+ t === "a" && this.toggleAll();
654
+ }), this.on("cursor", (t) => {
655
+ switch (t) {
656
+ case "left":
657
+ case "up":
658
+ this.cursor = this.cursor === 0 ? this.options.length - 1 : this.cursor - 1;
659
+ break;
660
+ case "down":
661
+ case "right":
662
+ this.cursor = this.cursor === this.options.length - 1 ? 0 : this.cursor + 1;
663
+ break;
664
+ case "space":
665
+ this.toggleValue();
666
+ break;
667
+ }
668
+ });
669
+ }
670
+ get _value() {
671
+ return this.options[this.cursor].value;
672
+ }
673
+ toggleAll() {
674
+ this.value = this.value.length === this.options.length ? [] : this.options.map((t) => t.value);
675
+ }
676
+ toggleValue() {
677
+ this.value = this.value.includes(this._value) ? this.value.filter((t) => t !== this._value) : [...this.value, this._value];
678
+ }
679
+ };
680
+ var TD = Object.defineProperty, jD = (e, u, t) => u in e ? TD(e, u, {
681
+ enumerable: !0,
682
+ configurable: !0,
683
+ writable: !0,
684
+ value: t
685
+ }) : e[u] = t, U = (e, u, t) => (jD(e, typeof u != "symbol" ? u + "" : u, t), t);
686
+ var MD = class extends x {
687
+ constructor({ mask: u, ...t }) {
688
+ super(t), U(this, "valueWithCursor", ""), U(this, "_mask", "•"), this._mask = u ?? "•", this.on("finalize", () => {
689
+ this.valueWithCursor = this.masked;
690
+ }), this.on("value", () => {
691
+ if (this.cursor >= this.value.length) this.valueWithCursor = `${this.masked}${import_picocolors.default.inverse(import_picocolors.default.hidden("_"))}`;
692
+ else {
693
+ const F = this.masked.slice(0, this.cursor), s = this.masked.slice(this.cursor);
694
+ this.valueWithCursor = `${F}${import_picocolors.default.inverse(s[0])}${s.slice(1)}`;
695
+ }
696
+ });
697
+ }
698
+ get cursor() {
699
+ return this._cursor;
700
+ }
701
+ get masked() {
702
+ return this.value.replaceAll(/./g, this._mask);
703
+ }
704
+ };
705
+ var OD = Object.defineProperty, PD = (e, u, t) => u in e ? OD(e, u, {
706
+ enumerable: !0,
707
+ configurable: !0,
708
+ writable: !0,
709
+ value: t
710
+ }) : e[u] = t, J = (e, u, t) => (PD(e, typeof u != "symbol" ? u + "" : u, t), t);
711
+ var LD = class extends x {
712
+ constructor(u) {
713
+ super(u, !1), J(this, "options"), J(this, "cursor", 0), this.options = u.options, this.cursor = this.options.findIndex(({ value: t }) => t === u.initialValue), this.cursor === -1 && (this.cursor = 0), this.changeValue(), this.on("cursor", (t) => {
714
+ switch (t) {
715
+ case "left":
716
+ case "up":
717
+ this.cursor = this.cursor === 0 ? this.options.length - 1 : this.cursor - 1;
718
+ break;
719
+ case "down":
720
+ case "right":
721
+ this.cursor = this.cursor === this.options.length - 1 ? 0 : this.cursor + 1;
722
+ break;
723
+ }
724
+ this.changeValue();
725
+ });
726
+ }
727
+ get _value() {
728
+ return this.options[this.cursor];
729
+ }
730
+ changeValue() {
731
+ this.value = this._value.value;
732
+ }
733
+ };
734
+ var WD = Object.defineProperty, ND = (e, u, t) => u in e ? WD(e, u, {
735
+ enumerable: !0,
736
+ configurable: !0,
737
+ writable: !0,
738
+ value: t
739
+ }) : e[u] = t, Q = (e, u, t) => (ND(e, typeof u != "symbol" ? u + "" : u, t), t);
740
+ var ID = class extends x {
741
+ constructor(u) {
742
+ super(u, !1), Q(this, "options"), Q(this, "cursor", 0), this.options = u.options;
743
+ const t = this.options.map(({ value: [F] }) => F?.toLowerCase());
744
+ this.cursor = Math.max(t.indexOf(u.initialValue), 0), this.on("key", (F) => {
745
+ if (!t.includes(F)) return;
746
+ const s = this.options.find(({ value: [i] }) => i?.toLowerCase() === F);
747
+ s && (this.value = s.value, this.state = "submit", this.emit("submit"));
748
+ });
749
+ }
750
+ };
751
+ var RD = class extends x {
752
+ get valueWithCursor() {
753
+ if (this.state === "submit") return this.value;
754
+ if (this.cursor >= this.value.length) return `${this.value}\u2588`;
755
+ const u = this.value.slice(0, this.cursor), [t, ...F] = this.value.slice(this.cursor);
756
+ return `${u}${import_picocolors.default.inverse(t)}${F.join("")}`;
757
+ }
758
+ get cursor() {
759
+ return this._cursor;
760
+ }
761
+ constructor(u) {
762
+ super(u), this.on("finalize", () => {
763
+ this.value || (this.value = u.defaultValue);
764
+ });
765
+ }
766
+ };
767
+ export { SD as a, fD as c, require_src as d, RD as i, pD as l, LD as n, _D as o, MD as r, dD as s, ID as t, require_picocolors as u };