@savvy-web/changelog 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/index.cjs +223 -133
  2. package/index.js +227 -137
  3. package/package.json +1 -1
package/index.cjs CHANGED
@@ -26265,7 +26265,7 @@ var GlobSet = class GlobSet extends Class("GlobSet")(Struct({ patterns: ArraySch
26265
26265
  }
26266
26266
  };
26267
26267
  //#endregion
26268
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_4ebc24b763be93f8da5c8f5b496f27f9/node_modules/@effected/lockfiles/BunExtension.js
26268
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/BunExtension.js
26269
26269
  /**
26270
26270
  * Extension data specific to bun lockfiles, attached to `Lockfile.extension`
26271
26271
  * when the format is `"bun"`.
@@ -29103,7 +29103,7 @@ var LocalExec = class LocalExec extends Service()("@effected/commands/LocalExec"
29103
29103
  static layerTest = (overrides = {}) => succeed$3(LocalExec, LocalExec.makeTest(overrides));
29104
29104
  };
29105
29105
  //#endregion
29106
- //#region ../../node_modules/.pnpm/@effected+commands@0.7.0_effect@4.0.0-rc.115/node_modules/@effected/commands/Redaction.js
29106
+ //#region ../../node_modules/.pnpm/@effected+commands@0.7.1_effect@4.0.0-rc.115/node_modules/@effected/commands/Redaction.js
29107
29107
  /**
29108
29108
  * Argument tokens whose *following* positional (or `=`-joined value) is a
29109
29109
  * secret. Lowercase; matching is case-insensitive.
@@ -29226,7 +29226,7 @@ var Redaction = class {
29226
29226
  static SECRET_FLAGS = SECRET_FLAGS;
29227
29227
  };
29228
29228
  //#endregion
29229
- //#region ../../node_modules/.pnpm/@effected+commands@0.7.0_effect@4.0.0-rc.115/node_modules/@effected/commands/internal/capture.js
29229
+ //#region ../../node_modules/.pnpm/@effected+commands@0.7.1_effect@4.0.0-rc.115/node_modules/@effected/commands/internal/capture.js
29230
29230
  /**
29231
29231
  * Raised when a captured stream exceeds its byte budget.
29232
29232
  *
@@ -29253,7 +29253,7 @@ const collectBounded = (stream, limit) => gen(function* () {
29253
29253
  return yield* mkString(decodeText(bounded));
29254
29254
  });
29255
29255
  //#endregion
29256
- //#region ../../node_modules/.pnpm/@effected+commands@0.7.0_effect@4.0.0-rc.115/node_modules/@effected/commands/Run.js
29256
+ //#region ../../node_modules/.pnpm/@effected+commands@0.7.1_effect@4.0.0-rc.115/node_modules/@effected/commands/Run.js
29257
29257
  /**
29258
29258
  * Default ceiling on captured bytes per stream (16 MiB).
29259
29259
  *
@@ -29626,12 +29626,37 @@ var Run = class {
29626
29626
  * A non-zero exit is a *result* here, not a failure — see {@link Run}'s
29627
29627
  * remarks for the split against {@link Run.text}, {@link Run.lines} and
29628
29628
  * {@link Run.json}.
29629
+ *
29630
+ * The error union is honest but wider than any one configuration can fire:
29631
+ * which arms are reachable depends on the options passed. For a call with
29632
+ * no options, exactly two failure modes exist —
29633
+ *
29634
+ * - {@link CommandFailedError} of kind `"spawn"`: the process never started
29635
+ * (executable missing, platform refused), **or** the platform failed while
29636
+ * reading a stream or awaiting the exit — this arm absorbs every
29637
+ * `PlatformError`, not only spawn-time ones.
29638
+ * - {@link CommandOutputError} of kind `"tooLarge"`: captured output
29639
+ * exceeded {@link RunOptions.maxOutputBytes} (default
29640
+ * {@link DEFAULT_MAX_OUTPUT_BYTES}).
29641
+ *
29642
+ * Setting {@link RunOptions.timeout} adds a third arm: kind `"timeout"`.
29643
+ * No configuration makes this combinator fail with kind `"nonZero"` — a
29644
+ * non-zero exit is a result — and kinds `"notJson"` / `"schema"` are
29645
+ * exclusive to {@link Run.json} and {@link Run.jsonLine}. A catch written
29646
+ * against an unconfigured call therefore needs only the two arms above;
29647
+ * handling the full union there is defensive, not required.
29629
29648
  */
29630
29649
  static collect = collect;
29631
29650
  /**
29632
29651
  * Like {@link Run.collect}, but also tees each stream to the `Stdio` in `R`
29633
29652
  * as it arrives, for a caller that wants live output alongside the captured
29634
29653
  * {@link CommandOutput}.
29654
+ *
29655
+ * @remarks
29656
+ * Reachability of the error arms is exactly {@link Run.collect}'s, but the
29657
+ * tee adds a second *source* for kind `"spawn"`: a failing `Stdio` sink
29658
+ * (EPIPE when the host's own stdout is a closed pipe) is classified there
29659
+ * too, even though the child started and ran.
29635
29660
  */
29636
29661
  static collectTee = collectTee;
29637
29662
  /**
@@ -29944,7 +29969,7 @@ var ReleaseAgeGate = class ReleaseAgeGate extends Class("ReleaseAgeGate")({
29944
29969
  }
29945
29970
  };
29946
29971
  //#endregion
29947
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_4ebc24b763be93f8da5c8f5b496f27f9/node_modules/@effected/lockfiles/ImporterDependency.js
29972
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/ImporterDependency.js
29948
29973
  /**
29949
29974
  * One declared dependency of one workspace importer, as the lockfile records it.
29950
29975
  *
@@ -29982,7 +30007,7 @@ var ImporterDependency = class extends Class("ImporterDependency")({
29982
30007
  depType: DependencyField
29983
30008
  }) {};
29984
30009
  //#endregion
29985
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_4ebc24b763be93f8da5c8f5b496f27f9/node_modules/@effected/lockfiles/LockfileImporter.js
30010
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/LockfileImporter.js
29986
30011
  /**
29987
30012
  * One workspace importer's declared dependencies, as the lockfile records them.
29988
30013
  *
@@ -30006,7 +30031,7 @@ var LockfileImporter = class extends Class("LockfileImporter")({
30006
30031
  dependencies: ArraySchema(ImporterDependency)
30007
30032
  }) {};
30008
30033
  //#endregion
30009
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_4ebc24b763be93f8da5c8f5b496f27f9/node_modules/@effected/lockfiles/ResolvedPackage.js
30034
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/ResolvedPackage.js
30010
30035
  const EMPTY_DEPENDENCIES = {};
30011
30036
  const EMPTY_PEER_META = {};
30012
30037
  const EMPTY_EDGE_NAMES = [];
@@ -30096,7 +30121,7 @@ var ResolvedPackage = class extends Class("ResolvedPackage")({
30096
30121
  unresolvedEdges: ArraySchema(String$2).pipe(withDecodingDefaultKey(succeed$2(EMPTY_EDGE_NAMES)), withConstructorDefault(succeed$2(EMPTY_EDGE_NAMES)))
30097
30122
  }) {};
30098
30123
  //#endregion
30099
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_4ebc24b763be93f8da5c8f5b496f27f9/node_modules/@effected/lockfiles/WorkspaceDependency.js
30124
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/WorkspaceDependency.js
30100
30125
  /**
30101
30126
  * A directed dependency edge between two workspace packages as recorded in
30102
30127
  * the lockfile.
@@ -30118,7 +30143,7 @@ var WorkspaceDependency = class extends Class("WorkspaceDependency")({
30118
30143
  constraint: String$2
30119
30144
  }) {};
30120
30145
  //#endregion
30121
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_4ebc24b763be93f8da5c8f5b496f27f9/node_modules/@effected/lockfiles/PnpmExtension.js
30146
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/PnpmExtension.js
30122
30147
  /**
30123
30148
  * Extension data specific to pnpm lockfiles, attached to `Lockfile.extension`
30124
30149
  * when the format is `"pnpm"`.
@@ -30143,7 +30168,7 @@ var PnpmExtension = class extends Class("PnpmExtension")({
30143
30168
  }))
30144
30169
  }) {};
30145
30170
  //#endregion
30146
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_4ebc24b763be93f8da5c8f5b496f27f9/node_modules/@effected/lockfiles/LockfileFormat.js
30171
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/LockfileFormat.js
30147
30172
  /**
30148
30173
  * The lockfile formats this package parses: bun's `bun.lock` (JSONC), npm's
30149
30174
  * `package-lock.json` (JSON), pnpm's `pnpm-lock.yaml` and yarn Berry's
@@ -30185,7 +30210,7 @@ const FILENAMES = {
30185
30210
  */
30186
30211
  const filenameFor = (format) => FILENAMES[format][0];
30187
30212
  //#endregion
30188
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_4ebc24b763be93f8da5c8f5b496f27f9/node_modules/@effected/lockfiles/internal/shared.js
30213
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/internal/shared.js
30189
30214
  /**
30190
30215
  * The four dependency sections of a manifest, in a stable order — the shared
30191
30216
  * dependency-sections table (v3's `DEP_SECTIONS`). Each entry is both the
@@ -32194,7 +32219,7 @@ var JsoncModifier = class {
32194
32219
  });
32195
32220
  };
32196
32221
  //#endregion
32197
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_4ebc24b763be93f8da5c8f5b496f27f9/node_modules/@effected/lockfiles/internal/bun.js
32222
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/internal/bun.js
32198
32223
  const DepRecord$2 = optionalKey(Record(String$2, String$2));
32199
32224
  const OptionalPeers = optionalKey(ArraySchema(String$2));
32200
32225
  const BunWorkspaceEntry = Struct({
@@ -32362,7 +32387,7 @@ const toFields$3 = (raw) => gen(function* () {
32362
32387
  };
32363
32388
  });
32364
32389
  //#endregion
32365
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_4ebc24b763be93f8da5c8f5b496f27f9/node_modules/@effected/lockfiles/internal/npm.js
32390
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/internal/npm.js
32366
32391
  const DepRecord$1 = optionalKey(Record(String$2, String$2));
32367
32392
  const PeerMetaRecord = optionalKey(Record(String$2, Struct({ optional: optionalKey(Boolean$1) })));
32368
32393
  const NpmPackageEntry = Struct({
@@ -32551,7 +32576,7 @@ const toFields$2 = (raw) => gen(function* () {
32551
32576
  };
32552
32577
  });
32553
32578
  //#endregion
32554
- //#region ../../node_modules/.pnpm/@effected+yaml@0.15.0_effect@4.0.0-rc.115/node_modules/@effected/yaml/YamlNode.js
32579
+ //#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/YamlNode.js
32555
32580
  /**
32556
32581
  * YAML scalar presentation styles.
32557
32582
  *
@@ -33007,7 +33032,7 @@ function nodeToValue(node, anchors, budget, counting = false) {
33007
33032
  return null;
33008
33033
  }
33009
33034
  //#endregion
33010
- //#region ../../node_modules/.pnpm/@effected+yaml@0.15.0_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/diagnostics.js
33035
+ //#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/diagnostics.js
33011
33036
  /** Error codes emitted by the lexer stage. */
33012
33037
  const YAML_LEX_ERROR_CODES = [
33013
33038
  "UnexpectedCharacter",
@@ -33191,7 +33216,7 @@ function lineChar$1(text, offset) {
33191
33216
  };
33192
33217
  }
33193
33218
  //#endregion
33194
- //#region ../../node_modules/.pnpm/@effected+yaml@0.15.0_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/lexer.js
33219
+ //#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/lexer.js
33195
33220
  /**
33196
33221
  * Create a new YAML scanner for the given source text.
33197
33222
  *
@@ -33858,10 +33883,8 @@ function createScanner$1(text) {
33858
33883
  const ch = peek();
33859
33884
  if (ch === "") {
33860
33885
  const start = pos;
33861
- const sLine = line;
33862
- const sCol = col;
33863
- advance();
33864
- return makeToken("byte-order-mark", "", start, sLine, sCol);
33886
+ pos++;
33887
+ return makeToken("byte-order-mark", "", start, line, col);
33865
33888
  }
33866
33889
  if (isNewline(ch)) return scanNewline();
33867
33890
  if (isWhitespace(ch)) return scanWhitespace();
@@ -34115,7 +34138,7 @@ function createScanner$1(text) {
34115
34138
  if (text[pos] === "\n") {
34116
34139
  line++;
34117
34140
  col = 0;
34118
- } else col++;
34141
+ } else if (text[pos] !== "") col++;
34119
34142
  pos++;
34120
34143
  }
34121
34144
  lineIndent = 0;
@@ -34154,7 +34177,7 @@ function lexAll(text) {
34154
34177
  return tokens;
34155
34178
  }
34156
34179
  //#endregion
34157
- //#region ../../node_modules/.pnpm/@effected+yaml@0.15.0_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/cst-parser.js
34180
+ //#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/cst-parser.js
34158
34181
  /**
34159
34182
  * Hardening: cap CST nesting so hostile inputs cannot overflow the stack
34160
34183
  * while the tree is being BUILT. Set slightly above the composer's
@@ -34875,7 +34898,7 @@ function parseCSTAll(text) {
34875
34898
  return parseDocuments(lexAll(text), text);
34876
34899
  }
34877
34900
  //#endregion
34878
- //#region ../../node_modules/.pnpm/@effected+yaml@0.15.0_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/composer/anchors.js
34901
+ //#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/composer/anchors.js
34879
34902
  /**
34880
34903
  * Check if a pending anchor is being applied to an alias node (invalid in YAML 1.2 §3.2.2).
34881
34904
  * Aliases represent references to existing anchored nodes and cannot have their own anchors.
@@ -34943,7 +34966,7 @@ function scanName(text, start) {
34943
34966
  return text.slice(start, end);
34944
34967
  }
34945
34968
  //#endregion
34946
- //#region ../../node_modules/.pnpm/@effected+yaml@0.15.0_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/composer/comments.js
34969
+ //#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/composer/comments.js
34947
34970
  /** True when there is no line break between `start` and `end` in `text`. */
34948
34971
  function sameLineSpan(text, start, end) {
34949
34972
  if (start < 0) return false;
@@ -35093,10 +35116,17 @@ function rawCommentText(source) {
35093
35116
  function joinComments(a, b) {
35094
35117
  return a === void 0 ? b : `${a}\n${b}`;
35095
35118
  }
35096
- /** Zero-based column of `offset` within its line. */
35119
+ /**
35120
+ * Zero-based column of `offset` within its line. A byte-order mark at the
35121
+ * line start occupies no column — the lexer's convention (#694) — so a
35122
+ * BOM-prefixed root mapping's content column is `0`, not `1`, and its
35123
+ * terminal own-line comment is not mistaken for one escaping a nested map.
35124
+ */
35097
35125
  function columnAt(text, offset) {
35098
35126
  if (offset <= 0) return 0;
35099
- return offset - (text.lastIndexOf("\n", offset - 1) + 1);
35127
+ const lineStart = text.lastIndexOf("\n", offset - 1) + 1;
35128
+ const bom = text[lineStart] === "" && offset > lineStart ? 1 : 0;
35129
+ return offset - lineStart - bom;
35100
35130
  }
35101
35131
  /**
35102
35132
  * Rebuild `node` with the given comment fields merged in (existing fields are
@@ -35156,7 +35186,7 @@ function mergedCommentFields(existing, incoming) {
35156
35186
  };
35157
35187
  }
35158
35188
  //#endregion
35159
- //#region ../../node_modules/.pnpm/@effected+yaml@0.15.0_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/composer/state.js
35189
+ //#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/composer/state.js
35160
35190
  let lineStartsText;
35161
35191
  let lineStartsCache = [];
35162
35192
  function getLineStarts(text) {
@@ -35167,6 +35197,11 @@ function getLineStarts(text) {
35167
35197
  lineStartsCache = starts;
35168
35198
  return starts;
35169
35199
  }
35200
+ /**
35201
+ * Zero-based line and column of `offset`. A byte-order mark at the line start
35202
+ * occupies no column, matching the lexer and `columnAt` (#694), so a
35203
+ * diagnostic's `character` behind a BOM equals the BOM-less document's.
35204
+ */
35170
35205
  function lineCol(text, offset) {
35171
35206
  const starts = getLineStarts(text);
35172
35207
  const pos = Math.min(Math.max(offset, 0), text.length);
@@ -35177,9 +35212,11 @@ function lineCol(text, offset) {
35177
35212
  if (starts[mid] <= pos) lo = mid;
35178
35213
  else hi = mid - 1;
35179
35214
  }
35215
+ const lineStart = starts[lo];
35216
+ const bom = text[lineStart] === "" && pos > lineStart ? 1 : 0;
35180
35217
  return {
35181
35218
  line: lo,
35182
- column: pos - starts[lo]
35219
+ column: pos - lineStart - bom
35183
35220
  };
35184
35221
  }
35185
35222
  /**
@@ -35276,7 +35313,7 @@ function exitNesting(state) {
35276
35313
  state.depth--;
35277
35314
  }
35278
35315
  //#endregion
35279
- //#region ../../node_modules/.pnpm/@effected+yaml@0.15.0_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/composer/tags.js
35316
+ //#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/composer/tags.js
35280
35317
  /**
35281
35318
  * Resolve a tag shorthand using the document's %TAG directives.
35282
35319
  * For example, with `%TAG !! tag:example.com,2000:app/`, the tag `!!int`
@@ -35362,7 +35399,7 @@ function validateTagHandlesInDocument(docCst, state) {
35362
35399
  }
35363
35400
  }
35364
35401
  //#endregion
35365
- //#region ../../node_modules/.pnpm/@effected+yaml@0.15.0_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/composer/scalars.js
35402
+ //#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/composer/scalars.js
35366
35403
  const NULL_RE$1 = /^(?:null|Null|NULL|~)$/;
35367
35404
  const TRUE_RE$1 = /^(?:true|True|TRUE)$/;
35368
35405
  const FALSE_RE$1 = /^(?:false|False|FALSE)$/;
@@ -36288,7 +36325,7 @@ function shouldPreserveRaw(rawValue, value) {
36288
36325
  return false;
36289
36326
  }
36290
36327
  //#endregion
36291
- //#region ../../node_modules/.pnpm/@effected+yaml@0.15.0_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/composer/block.js
36328
+ //#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/composer/block.js
36292
36329
  /**
36293
36330
  * Compose a block map from its CST children, with an optional external first key.
36294
36331
  *
@@ -37705,7 +37742,7 @@ function composeFlatBlockMap(children, startIdx, parentCst, state, externalFirst
37705
37742
  return map;
37706
37743
  }
37707
37744
  //#endregion
37708
- //#region ../../node_modules/.pnpm/@effected+yaml@0.15.0_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/composer/flow.js
37745
+ //#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/composer/flow.js
37709
37746
  /**
37710
37747
  * Validate that flow collection entries are separated by commas.
37711
37748
  *
@@ -38189,7 +38226,7 @@ function composeFlowSeqInner(cst, state, meta, parentBlockColumn) {
38189
38226
  return seq;
38190
38227
  }
38191
38228
  //#endregion
38192
- //#region ../../node_modules/.pnpm/@effected+yaml@0.15.0_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/composer/document.js
38229
+ //#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/composer/document.js
38193
38230
  /** The flow-composer dispatch wired into every state this module creates. */
38194
38231
  const FLOW = {
38195
38232
  composeFlowMap,
@@ -38981,7 +39018,7 @@ function stripOwnComment(node) {
38981
39018
  });
38982
39019
  }
38983
39020
  //#endregion
38984
- //#region ../../node_modules/.pnpm/@effected+yaml@0.15.0_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/fold.js
39021
+ //#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/fold.js
38985
39022
  /**
38986
39023
  * Column-based line folding for a single logical scalar line (YAML 1.2 flow
38987
39024
  * folding, §7.3 / §8.2.1). Breaks the content at "safe" single-space
@@ -39229,7 +39266,7 @@ function renderBlockFolded(s, indent, explicitChomp, explicitIndent) {
39229
39266
  return `>${indentIndicator}${chomp}\n${outputLines.join("\n")}`;
39230
39267
  }
39231
39268
  //#endregion
39232
- //#region ../../node_modules/.pnpm/@effected+yaml@0.15.0_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/stringifier.js
39269
+ //#region ../../node_modules/.pnpm/@effected+yaml@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/yaml/internal/stringifier.js
39233
39270
  /**
39234
39271
  * Thrown by the stringifier on its failure paths (circular references). The
39235
39272
  * facade catches this and materializes the public stringify error.
@@ -39361,10 +39398,17 @@ function wouldBeResolved11(s) {
39361
39398
  * `quoteCompat` is strictly additive: `"yaml-1.1"` additionally quotes
39362
39399
  * strings a YAML 1.1 parser would coerce ({@link wouldBeResolved11}) and can
39363
39400
  * never un-quote anything the 1.2 rules require quoted.
39401
+ *
39402
+ * `inFlow` is additive too: inside a flow collection the flow indicators
39403
+ * `,[]{}` are plain-unsafe anywhere in the scalar (YAML 1.2 §7.3.3,
39404
+ * `ns-plain-safe(flow-in)` excludes `c-flow-indicator`), where block context
39405
+ * lets them through. Without it a plain `p, q` rendered into `[x, y]` reads
39406
+ * back as three items (#695).
39364
39407
  */
39365
- function requiresQuoting(s, ignoreType = false, quoteCompat) {
39408
+ function requiresQuoting(s, ignoreType = false, quoteCompat, inFlow = false) {
39366
39409
  if (s === "") return true;
39367
39410
  if (s.includes("\n")) return true;
39411
+ if (inFlow && /[,[\]{}]/.test(s)) return true;
39368
39412
  if (!ignoreType && wouldBeResolved(s)) return true;
39369
39413
  if (!ignoreType && quoteCompat === "yaml-1.1" && wouldBeResolved11(s)) return true;
39370
39414
  const first = s[0];
@@ -39447,7 +39491,7 @@ function renderSingleQuoted(s) {
39447
39491
  * Block literal and block folded styles are always accepted for single-line
39448
39492
  * strings even though the output is unusual.
39449
39493
  */
39450
- function renderString(s, style, indent, ignoreType = false, canonical = false, explicitChomp, parentPosition, quoteStyle = "single", explicitIndent, quoteCompat) {
39494
+ function renderString(s, style, indent, ignoreType = false, canonical = false, explicitChomp, parentPosition, quoteStyle = "single", explicitIndent, quoteCompat, inFlow = false) {
39451
39495
  const fidelity = !canonical;
39452
39496
  const fidelityIndent = fidelity ? explicitIndent : void 0;
39453
39497
  if (s.includes("\n")) {
@@ -39480,7 +39524,7 @@ function renderString(s, style, indent, ignoreType = false, canonical = false, e
39480
39524
  if (s === "" && (style === "block-literal" || style === "block-folded")) return renderDoubleQuoted(s, canonical);
39481
39525
  switch (style) {
39482
39526
  case "plain":
39483
- if (requiresQuoting(s, ignoreType, quoteCompat)) {
39527
+ if (requiresQuoting(s, ignoreType, quoteCompat, inFlow)) {
39484
39528
  if (s.includes(" ") || s.includes("\r")) return renderDoubleQuoted(s, canonical);
39485
39529
  for (let i = 0; i < s.length; i++) if (isControlChar(s.charCodeAt(i))) return renderDoubleQuoted(s, canonical);
39486
39530
  return quoteStyle === "double" ? renderDoubleQuoted(s, canonical) : renderSingleQuoted(s);
@@ -39526,7 +39570,8 @@ function createContext(options) {
39526
39570
  quoteStyle: options?.quoteStyle ?? "single",
39527
39571
  quoteCompat: options?.quoteCompat,
39528
39572
  forceDefaultStyles: options?.forceDefaultStyles ?? false,
39529
- seen: /* @__PURE__ */ new Set()
39573
+ seen: /* @__PURE__ */ new Set(),
39574
+ inFlow: options?.inFlow ?? false
39530
39575
  };
39531
39576
  }
39532
39577
  /**
@@ -39544,7 +39589,7 @@ function stringifyLines(value, ctx, depth, allowFold = true) {
39544
39589
  if (typeof value === "bigint") return [value.toString()];
39545
39590
  if (typeof value === "string") {
39546
39591
  const indentStr = " ".repeat(ctx.indent);
39547
- const rendered = renderString(value, ctx.defaultScalarStyle, indentStr, false, ctx.forceDefaultStyles, void 0, void 0, ctx.quoteStyle, void 0, ctx.quoteCompat);
39592
+ const rendered = renderString(value, ctx.defaultScalarStyle, indentStr, false, ctx.forceDefaultStyles, void 0, void 0, ctx.quoteStyle, void 0, ctx.quoteCompat, ctx.inFlow);
39548
39593
  return (allowFold && ctx.lineWidth > 0 ? foldRenderedScalar(rendered, indentStr, ctx.lineWidth) : rendered).split("\n");
39549
39594
  }
39550
39595
  if (Array.isArray(value)) {
@@ -39572,7 +39617,13 @@ function stringifyLines(value, ctx, depth, allowFold = true) {
39572
39617
  */
39573
39618
  function stringifyArrayLines(arr, ctx, depth) {
39574
39619
  if (arr.length === 0) return ["[]"];
39575
- if (ctx.defaultCollectionStyle === "flow") return [`[${arr.map((item) => stringifyLines(item, ctx, depth + 1, false).join(" ")).join(", ")}]`];
39620
+ if (ctx.defaultCollectionStyle === "flow") {
39621
+ const flowCtx = {
39622
+ ...ctx,
39623
+ inFlow: true
39624
+ };
39625
+ return [`[${arr.map((item) => stringifyLines(item, flowCtx, depth + 1, false).join(" ")).join(", ")}]`];
39626
+ }
39576
39627
  const pad = " ".repeat(ctx.indent);
39577
39628
  const lines = [];
39578
39629
  for (const item of arr) {
@@ -39609,10 +39660,16 @@ function stringifyObjectLines(obj, ctx, depth) {
39609
39660
  const keys = Object.keys(obj);
39610
39661
  if (keys.length === 0) return ["{}"];
39611
39662
  if (ctx.sortKeys) keys.sort();
39612
- const renderPlainKey = (k) => renderString(k, "plain", "", false, false, void 0, void 0, ctx.quoteStyle, void 0, ctx.quoteCompat);
39613
- if (ctx.defaultCollectionStyle === "flow") return [`{${keys.map((k) => {
39614
- return `${renderPlainKey(k)}: ${stringifyLines(obj[k], ctx, depth + 1, false).join(" ")}`;
39615
- }).join(", ")}}`];
39663
+ const renderPlainKey = (k, inFlow = false) => renderString(k, "plain", "", false, false, void 0, void 0, ctx.quoteStyle, void 0, ctx.quoteCompat, inFlow);
39664
+ if (ctx.defaultCollectionStyle === "flow") {
39665
+ const flowCtx = {
39666
+ ...ctx,
39667
+ inFlow: true
39668
+ };
39669
+ return [`{${keys.map((k) => {
39670
+ return `${renderPlainKey(k, true)}: ${stringifyLines(obj[k], flowCtx, depth + 1, false).join(" ")}`;
39671
+ }).join(", ")}}`];
39672
+ }
39616
39673
  const renderKey = (k) => k.includes("\n") ? renderDoubleQuoted(k, ctx.forceDefaultStyles) : renderPlainKey(k);
39617
39674
  const pad = " ".repeat(ctx.indent);
39618
39675
  const lines = [];
@@ -40316,7 +40373,7 @@ function deepEqualValues(a, b) {
40316
40373
  return false;
40317
40374
  }
40318
40375
  //#endregion
40319
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_4ebc24b763be93f8da5c8f5b496f27f9/node_modules/@effected/lockfiles/internal/documents.js
40376
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/internal/documents.js
40320
40377
  /**
40321
40378
  * An empty YAML document composes to `null` (`Yaml.parseAll("")` is `[null]`,
40322
40379
  * and the trailing document of an env-only `pnpm-lock.yaml` is `null` too).
@@ -40386,7 +40443,7 @@ const selectSoleDocument = (content) => gen(function* () {
40386
40443
  };
40387
40444
  });
40388
40445
  //#endregion
40389
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_4ebc24b763be93f8da5c8f5b496f27f9/node_modules/@effected/lockfiles/internal/pnpm.js
40446
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/internal/pnpm.js
40390
40447
  const PnpmImporterDeps = optionalKey(Record(String$2, Struct({
40391
40448
  specifier: String$2,
40392
40449
  version: String$2
@@ -40726,7 +40783,7 @@ const toFields$1 = (raw) => gen(function* () {
40726
40783
  };
40727
40784
  });
40728
40785
  //#endregion
40729
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_4ebc24b763be93f8da5c8f5b496f27f9/node_modules/@effected/lockfiles/internal/yarn.js
40786
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/internal/yarn.js
40730
40787
  const YarnLockfileRaw = Record(String$2, Unknown);
40731
40788
  const DepRecord = optionalKey(Record(String$2, String$2));
40732
40789
  const YarnEntry = Struct({
@@ -40902,7 +40959,7 @@ const cleanYarnDeps = (deps) => {
40902
40959
  return Object.fromEntries(Object.entries(deps).map(([name, value]) => [name, value.startsWith("npm:") ? value.slice(4) : value]));
40903
40960
  };
40904
40961
  //#endregion
40905
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_4ebc24b763be93f8da5c8f5b496f27f9/node_modules/@effected/lockfiles/Lockfile.js
40962
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/Lockfile.js
40906
40963
  const EMPTY_IMPORTERS = [];
40907
40964
  /**
40908
40965
  * Failure of `Lockfile.parse`: the given content is not a valid lockfile of
@@ -41179,7 +41236,7 @@ var Lockfile = class Lockfile extends Class("Lockfile")({
41179
41236
  }
41180
41237
  };
41181
41238
  //#endregion
41182
- //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_4ebc24b763be93f8da5c8f5b496f27f9/node_modules/@effected/lockfiles/LockfileIntegrity.js
41239
+ //#region ../../node_modules/.pnpm/@effected+lockfiles@0.9.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+npm@0.1_ce98b8055afbf2c9c9633f7f7d96ef7b/node_modules/@effected/lockfiles/LockfileIntegrity.js
41183
41240
  /**
41184
41241
  * The minimal manifest shape {@link LockfileIntegrity.compare} checks a
41185
41242
  * lockfile against: a package name plus the four optional dependency maps.
@@ -45027,7 +45084,7 @@ var Package = class Package extends Class("Package")({
45027
45084
  }
45028
45085
  };
45029
45086
  //#endregion
45030
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.21.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/WorkspacePackage.js
45087
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/WorkspacePackage.js
45031
45088
  const EMPTY$1 = Object.freeze(Object.create(null));
45032
45089
  const EMPTY_MANIFEST = Object.freeze(Object.create(null));
45033
45090
  /**
@@ -45322,7 +45379,7 @@ var WorkspacePackage = class WorkspacePackage extends Class("WorkspacePackage")(
45322
45379
  }
45323
45380
  };
45324
45381
  //#endregion
45325
- //#region ../../node_modules/.pnpm/@effected+walker@0.8.0_@effected+glob@0.6.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/walker/Descend.js
45382
+ //#region ../../node_modules/.pnpm/@effected+walker@0.9.0_@effected+glob@0.6.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/walker/Descend.js
45326
45383
  /**
45327
45384
  * Typed failure raised by `descend`: a directory mid-walk was unreadable
45328
45385
  * (under `onUnreadable: "fail"`), or the walk descended past `maxDepth`. Depth
@@ -45406,7 +45463,10 @@ const descendImpl = fn("Walker.descend")(function* (pattern, options) {
45406
45463
  reason: "unreadableDirectory",
45407
45464
  path: frame.relative
45408
45465
  }));
45409
- if (onUnreadable === "record") unreadable.push(frame.relative);
45466
+ if (onUnreadable === "record") unreadable.push({
45467
+ path: frame.relative,
45468
+ cause: error
45469
+ });
45410
45470
  return succeed$2([]);
45411
45471
  }));
45412
45472
  for (const entry of entries) {
@@ -45440,7 +45500,7 @@ function descend(pattern, options) {
45440
45500
  return descendImpl(pattern, options);
45441
45501
  }
45442
45502
  //#endregion
45443
- //#region ../../node_modules/.pnpm/@effected+walker@0.8.0_@effected+glob@0.6.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/walker/Expand.js
45503
+ //#region ../../node_modules/.pnpm/@effected+walker@0.9.0_@effected+glob@0.6.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/walker/Expand.js
45444
45504
  /**
45445
45505
  * Typed failure raised by {@link compileAndExpand}: the single error the
45446
45506
  * compile+expand recipe fails with, so a caller catches one tag rather than
@@ -45530,7 +45590,7 @@ const compileAndExpand = fn("Walker.compileAndExpand")(function* (pattern, optio
45530
45590
  })));
45531
45591
  });
45532
45592
  //#endregion
45533
- //#region ../../node_modules/.pnpm/@effected+walker@0.8.0_@effected+glob@0.6.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/walker/Walker.js
45593
+ //#region ../../node_modules/.pnpm/@effected+walker@0.9.0_@effected+glob@0.6.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/walker/Walker.js
45534
45594
  const ascend = (start, options) => gen(function* () {
45535
45595
  const path = yield* Path;
45536
45596
  const maxDepth = options?.maxDepth ?? 256;
@@ -45624,7 +45684,7 @@ var Walker$1 = class {
45624
45684
  static findRoot = findRoot$1;
45625
45685
  };
45626
45686
  //#endregion
45627
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.21.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/WorkspaceRoot.js
45687
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/WorkspaceRoot.js
45628
45688
  /**
45629
45689
  * The marker filenames {@link WorkspaceRoot} probes for, in priority order.
45630
45690
  *
@@ -45811,7 +45871,7 @@ var WorkspaceRoot = class WorkspaceRoot extends Service()("@effected/workspaces/
45811
45871
  static layerTest = (root) => effect(WorkspaceRoot, WorkspaceRoot.makeTest(root)).pipe(provide$2(layer$1));
45812
45872
  };
45813
45873
  //#endregion
45814
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.21.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/internal/limits.js
45874
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/internal/limits.js
45815
45875
  /**
45816
45876
  * Hard ceiling on directories the enumerator will visit for one pattern set.
45817
45877
  * Guards the pathological case a depth cap alone does not: a wide, shallow
@@ -45829,7 +45889,7 @@ const MAX_ENUMERATION_ENTRIES = 1e5;
45829
45889
  */
45830
45890
  const PRUNED_DIRECTORIES = /* @__PURE__ */ new Set([".git", "node_modules"]);
45831
45891
  //#endregion
45832
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.21.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/internal/traverse.js
45892
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/internal/traverse.js
45833
45893
  /** Directory names never descended into. */
45834
45894
  const isPruned = (entry) => PRUNED_DIRECTORIES.has(entry);
45835
45895
  /** Join root-relative POSIX segments; `""` is the root itself. */
@@ -45919,7 +45979,7 @@ var Traversal = class {
45919
45979
  }
45920
45980
  };
45921
45981
  //#endregion
45922
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.21.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/internal/enumerate.js
45982
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/internal/enumerate.js
45923
45983
  /** Strip a trailing slash from `GlobPattern.enumerationPrefix` to get a relative directory. */
45924
45984
  const baseOf = (pattern) => pattern.enumerationPrefix.replace(/\/$/, "");
45925
45985
  /**
@@ -45993,7 +46053,7 @@ const enumerate = (root, globs, options) => gen(function* () {
45993
46053
  return results;
45994
46054
  });
45995
46055
  //#endregion
45996
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.21.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/internal/patterns.js
46056
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/internal/patterns.js
45997
46057
  const stringsOf = (value) => Array.isArray(value) ? value.filter((entry) => typeof entry === "string") : void 0;
45998
46058
  /** The `packages:` list of a `pnpm-workspace.yaml` document. Total on a parsed document. */
45999
46059
  const pnpmPatternsOf = (document) => {
@@ -46050,7 +46110,7 @@ const readPatterns = (root) => gen(function* () {
46050
46110
  return manifestPatternsOf(manifest);
46051
46111
  });
46052
46112
  //#endregion
46053
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.21.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/WorkspaceDiscovery.js
46113
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/WorkspaceDiscovery.js
46054
46114
  /**
46055
46115
  * Raised when a workspace member's `package.json` cannot be read, parsed, or
46056
46116
  * used — it is missing, malformed, or lacks a `name`.
@@ -46599,7 +46659,7 @@ var WorkspaceDiscovery = class WorkspaceDiscovery extends Service()("@effected/w
46599
46659
  };
46600
46660
  const isStringRecord$2 = (value) => value !== null && typeof value === "object" && !Array.isArray(value) && Object.values(value).every((entry) => typeof entry === "string");
46601
46661
  //#endregion
46602
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.21.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/DependencyGraph.js
46662
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/DependencyGraph.js
46603
46663
  /**
46604
46664
  * Raised when the workspace dependency graph cannot be topologically ordered
46605
46665
  * because it contains a cycle.
@@ -46898,7 +46958,7 @@ const kahn = (edges) => {
46898
46958
  };
46899
46959
  };
46900
46960
  //#endregion
46901
- //#region ../../node_modules/.pnpm/@effected+git@0.15.0_effect@4.0.0-rc.115/node_modules/@effected/git/GitCommand.js
46961
+ //#region ../../node_modules/.pnpm/@effected+git@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/git/GitCommand.js
46902
46962
  /** The mask every whole-value sensitive positional is replaced with. */
46903
46963
  const REDACTED = "<redacted>";
46904
46964
  const secretValue = (value) => ({
@@ -48111,7 +48171,7 @@ var GitCommand = class {
48111
48171
  static lsFiles = lsFiles;
48112
48172
  };
48113
48173
  //#endregion
48114
- //#region ../../node_modules/.pnpm/@effected+git@0.15.0_effect@4.0.0-rc.115/node_modules/@effected/git/internal/run.js
48174
+ //#region ../../node_modules/.pnpm/@effected+git@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/git/internal/run.js
48115
48175
  /**
48116
48176
  * Spawns `command` and collects its stdout, stderr, and exit code as a single
48117
48177
  * triple.
@@ -48138,7 +48198,7 @@ const runCollected = (command) => scoped(gen(function* () {
48138
48198
  };
48139
48199
  }));
48140
48200
  //#endregion
48141
- //#region ../../node_modules/.pnpm/@effected+git@0.15.0_effect@4.0.0-rc.115/node_modules/@effected/git/Git.js
48201
+ //#region ../../node_modules/.pnpm/@effected+git@0.15.1_effect@4.0.0-rc.115/node_modules/@effected/git/Git.js
48142
48202
  /** git's own ceiling: a run that has not answered in 30s is not going to. */
48143
48203
  const GIT_TIMEOUT = seconds(30);
48144
48204
  /**
@@ -48321,12 +48381,24 @@ const sshEnv = (resolved) => match$3(withBatchMode(resolved), {
48321
48381
  *
48322
48382
  * @remarks
48323
48383
  * `exitCode` and `stderr` are populated when git actually ran. `detail`
48324
- * carries a human-readable explanation of an absorbed spawn-level
48325
- * `PlatformError` or a per-run timeout — the two cases where git never
48326
- * produced an exit code at all. `kind`
48327
- * discriminates a pre-spawn guard rejection (`"refused"`) from a genuine git
48328
- * failure (`"failed"`) structurally, so composed retry/fallback logic never has
48329
- * to parse the prose in `message` or `detail`.
48384
+ * carries a human-readable explanation whenever the failure is not summed up
48385
+ * by an exit code: an absorbed spawn-level `PlatformError`, a per-run timeout,
48386
+ * a pre-spawn guard refusal, or output git produced that the member could not
48387
+ * parse. `kind` discriminates a pre-spawn guard rejection (`"refused"`) from a
48388
+ * genuine git failure (`"failed"`) structurally, so composed retry/fallback
48389
+ * logic never has to parse the prose in `message` or `detail`.
48390
+ *
48391
+ * **`message` is the rendering; `detail` is the datum.** `message` composes a
48392
+ * one-line prose from the redacted argv, the cwd, and — whenever `detail` is
48393
+ * set — `detail` itself. A consumer forwarding the underlying reason should map
48394
+ * `detail` through only when it is set: falling back to `message` nests one
48395
+ * rendered message inside another
48396
+ * (`git … in cwd: git … in cwd failed (exit N): …`). When `detail` is absent,
48397
+ * git ran and failed — `exitCode` and `stderr` are the data to forward. Note
48398
+ * that `detail` may be set after git ran
48399
+ * and exited successfully (e.g. `Git.log` sets `detail: "unparseable log output: …"`
48400
+ * with `kind: "failed"`), so routing on `detail !== undefined` rather than
48401
+ * assuming git never started is the correct consumer boundary.
48330
48402
  *
48331
48403
  * @public
48332
48404
  */
@@ -48356,7 +48428,12 @@ var GitCommandError = class extends TaggedError()("GitCommandError", {
48356
48428
  exitCode: optionalKey(Number$1),
48357
48429
  /** git's stderr, captured under `LC_ALL=C`. */
48358
48430
  stderr: String$2,
48359
- /** Set when git never ran: an absorbed spawn failure or a timeout. */
48431
+ /**
48432
+ * A human-readable reason, set whenever an exit code does not sum up the
48433
+ * failure: an absorbed spawn failure, a timeout, a pre-spawn guard refusal,
48434
+ * or output git produced that the member could not parse. `message` renders
48435
+ * it verbatim when present.
48436
+ */
48360
48437
  detail: optionalKey(String$2)
48361
48438
  }) {
48362
48439
  /** Renders the invocation and its failure into a one-line message. */
@@ -50537,6 +50614,19 @@ const notStubbed = (method) => () => die(/* @__PURE__ */ new Error(`Git.makeTest
50537
50614
  * that — a caller running two mutating calls (or a mutating call alongside a
50538
50615
  * read) against one `cwd` at once owns the race.
50539
50616
  *
50617
+ * **Every spawn already runs under a 30 s timeout** (this module's
50618
+ * `GIT_TIMEOUT`): a command that has not answered in time fails as a
50619
+ * {@link GitCommandError} with `detail` set to `"timed out after 30s"`.
50620
+ *
50621
+ * That ceiling is per run, not per member call. The network-touching members
50622
+ * (`lsRemote`, `fetch`, `fetchUnshallow`, `push`, `pull`, `submoduleAdd`,
50623
+ * `submoduleUpdate`) first resolve their ssh command with up to two concurrent
50624
+ * local `git config` reads, each bounded separately, so their worst case is
50625
+ * 60 s; `fetchAny`, which runs `fetch` twice, is 120 s. A consumer merely
50626
+ * duplicating a 30 s layer buys nothing but two ceilings racing each other;
50627
+ * one whose budget is tighter than the figures above still needs its own
50628
+ * (#652).
50629
+ *
50540
50630
  * **Redaction policy (documented, not just convention).** Error values
50541
50631
  * persist only the constructor's REDACTED argv (see `GitCommandError.args`),
50542
50632
  * and span annotations carry stable identifiers only — `cwd`, refs, keys,
@@ -50697,7 +50787,7 @@ var Git = class Git extends Service()("@effected/git/Git") {
50697
50787
  static layerTest = (overrides = {}) => succeed$3(Git, Git.makeTest(overrides));
50698
50788
  };
50699
50789
  //#endregion
50700
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.21.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/ChangeDetector.js
50790
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/ChangeDetector.js
50701
50791
  /**
50702
50792
  * Which git refs to compare, and whether to fold in the working tree.
50703
50793
  *
@@ -50948,7 +51038,7 @@ function resolveFromCatalog(catalogs, wantedDependency) {
50948
51038
  };
50949
51039
  }
50950
51040
  //#endregion
50951
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.21.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/internal/catalogs.js
51041
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/internal/catalogs.js
50952
51042
  /** Project a pnpm-workspace manifest's `catalog` / `catalogs` fields into a `Catalogs` map. */
50953
51043
  const inlineCatalogs = (manifest) => {
50954
51044
  if (manifest.catalog === void 0 && manifest.catalogs === void 0) return {};
@@ -51477,7 +51567,7 @@ var ConfigDependencyHooks = class ConfigDependencyHooks extends Service()("@effe
51477
51567
  }));
51478
51568
  };
51479
51569
  //#endregion
51480
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.21.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/PackageManagerName.js
51570
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/PackageManagerName.js
51481
51571
  /**
51482
51572
  * The four package managers this package understands.
51483
51573
  *
@@ -51852,7 +51942,7 @@ var PackageManagerDetector = class PackageManagerDetector extends Service()("@ef
51852
51942
  static layerTest = (overrides = {}) => succeed$3(PackageManagerDetector, PackageManagerDetector.makeTest(overrides));
51853
51943
  };
51854
51944
  //#endregion
51855
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.21.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/LockfileReader.js
51945
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/LockfileReader.js
51856
51946
  /**
51857
51947
  * Raised when the workspace's lockfile cannot be read off disk.
51858
51948
  *
@@ -52032,7 +52122,7 @@ var LockfileReader = class LockfileReader extends Service()("@effected/workspace
52032
52122
  static layerTest = (overrides = {}) => succeed$3(LockfileReader, LockfileReader.makeTest(overrides));
52033
52123
  };
52034
52124
  //#endregion
52035
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.21.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/Publishability.js
52125
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/Publishability.js
52036
52126
  /** The public npm registry, used when `publishConfig.registry` says nothing. */
52037
52127
  const DEFAULT_REGISTRY = "https://registry.npmjs.org/";
52038
52128
  /**
@@ -52191,7 +52281,7 @@ var PublishabilityDetector = class extends Service()("@effected/workspaces/Publi
52191
52281
  static layerNone = succeed$3(this, this.none);
52192
52282
  };
52193
52283
  //#endregion
52194
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.21.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/internal/importerVersions.js
52284
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/internal/importerVersions.js
52195
52285
  /**
52196
52286
  * Strip pnpm's peer-disambiguation suffix from a recorded importer version.
52197
52287
  *
@@ -52277,7 +52367,7 @@ const unanimousVersionOf = (index, dependency) => {
52277
52367
  return agreed;
52278
52368
  };
52279
52369
  //#endregion
52280
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.21.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/WorkspaceCatalogs.js
52370
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/WorkspaceCatalogs.js
52281
52371
  /**
52282
52372
  * An immutable, fully-normalized catalog collection — the one catalog
52283
52373
  * resolution semantic in the package.
@@ -52854,7 +52944,7 @@ var WorkspaceCatalogs = class WorkspaceCatalogs extends Service()("@effected/wor
52854
52944
  }));
52855
52945
  };
52856
52946
  //#endregion
52857
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.21.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/WorkspaceStateSnapshot.js
52947
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/WorkspaceStateSnapshot.js
52858
52948
  const EMPTY = Object.freeze(Object.create(null));
52859
52949
  const DependencyMap = Record(String$2, String$2).pipe(withDecodingDefaultKey(succeed$2(EMPTY)), withConstructorDefault(succeed$2(EMPTY)));
52860
52950
  /**
@@ -53266,7 +53356,7 @@ var WorkspaceStateSnapshot = class WorkspaceStateSnapshot extends Class("Workspa
53266
53356
  }
53267
53357
  };
53268
53358
  //#endregion
53269
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.21.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/WorkspaceSnapshots.js
53359
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/WorkspaceSnapshots.js
53270
53360
  /** Whether `value` is a non-null, non-array object. */
53271
53361
  const isObject = (value) => typeof value === "object" && value !== null && !Array.isArray(value);
53272
53362
  /** Whether every value in a record is a string — a usable dependency map. */
@@ -53544,7 +53634,7 @@ var WorkspaceSnapshots = class WorkspaceSnapshots extends Service()("@effected/w
53544
53634
  static layerTest = (overrides = {}) => succeed$3(WorkspaceSnapshots, WorkspaceSnapshots.makeTest(overrides));
53545
53635
  };
53546
53636
  //#endregion
53547
- //#region ../../node_modules/.pnpm/@effected+workspaces@0.21.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/Workspaces.js
53637
+ //#region ../../node_modules/.pnpm/@effected+workspaces@0.22.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__effect@4.0.0-rc.115/node_modules/@effected/workspaces/Workspaces.js
53548
53638
  const compose = (options, catalogsFactory) => {
53549
53639
  const roots = WorkspaceRoot.layer;
53550
53640
  const detector = PackageManagerDetector.layer;
@@ -56680,7 +56770,7 @@ const DependencyTableRowSchema = Struct({
56680
56770
  */
56681
56771
  const DependencyTableSchema = ArraySchema(DependencyTableRowSchema).check(isMinLength(1));
56682
56772
  //#endregion
56683
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/MarkdownNode.js
56773
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/MarkdownNode.js
56684
56774
  /**
56685
56775
  * A single point in a source document: 1-based `line` and `column`, 0-based
56686
56776
  * `offset`.
@@ -57481,7 +57571,7 @@ suspend$1(() => Union([
57481
57571
  TableContent
57482
57572
  ]));
57483
57573
  //#endregion
57484
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/frontmatter.js
57574
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/frontmatter.js
57485
57575
  const FENCES = /* @__PURE__ */ new Map([
57486
57576
  ["---", {
57487
57577
  format: "yaml",
@@ -57535,7 +57625,7 @@ const scanFrontmatter = (lines, text) => {
57535
57625
  return null;
57536
57626
  };
57537
57627
  //#endregion
57538
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/carriers.js
57628
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/carriers.js
57539
57629
  /**
57540
57630
  * P1's error-code vocabulary. Widens as later phases add parse-error kinds;
57541
57631
  * P1 registers exactly one, the hardening-guard trip.
@@ -57575,7 +57665,7 @@ var GuardExceeded = class extends Error {
57575
57665
  /** Narrows `unknown` to {@link GuardExceeded}; never a bare `instanceof` at a call site. */
57576
57666
  const isGuardExceeded = (u) => u instanceof GuardExceeded;
57577
57667
  //#endregion
57578
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/MarkdownDiagnostic.js
57668
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/MarkdownDiagnostic.js
57579
57669
  /**
57580
57670
  * Error codes `Markdown.parse`/`MarkdownDocument.parse` can fail with. P1
57581
57671
  * registers exactly the hardening-guard trip; later phases widen the union
@@ -57655,7 +57745,7 @@ function lineChar(text, offset) {
57655
57745
  };
57656
57746
  }
57657
57747
  //#endregion
57658
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blockTypes.js
57748
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blockTypes.js
57659
57749
  /** Narrow materialized children to the flow content most constructs contain. */
57660
57750
  const flowChildren = (children) => children.filter((child) => child.type !== "root" && child.type !== "listItem" && child.type !== "tableRow" && child.type !== "tableCell");
57661
57751
  /** Narrow materialized children to the list items a list contains. */
@@ -57680,7 +57770,7 @@ const makeBlockNode = (type, startOffset, startLine, depth = 0) => ({
57680
57770
  data: {}
57681
57771
  });
57682
57772
  //#endregion
57683
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/preprocess.js
57773
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/preprocess.js
57684
57774
  /**
57685
57775
  * Split `text` into lines, preserving each line's absolute start offset.
57686
57776
  *
@@ -57734,7 +57824,7 @@ const peekCode = (line, position) => position >= 0 && position < line.length ? l
57734
57824
  */
57735
57825
  const columnsToNextTabStop = (column) => 4 - column % 4;
57736
57826
  //#endregion
57737
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/htmlTags.js
57827
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/htmlTags.js
57738
57828
  const TAGNAME = "[A-Za-z][A-Za-z0-9-]*";
57739
57829
  /** An opening tag, with any attributes and an optional self-closing slash. */
57740
57830
  const OPENTAG = `<${TAGNAME}(?:\\s+[a-zA-Z_:][a-zA-Z0-9:._-]*(?:\\s*=\\s*(?:[^"'=<>\`\\x00-\\x20]+|'[^']*'|"[^"]*"))?)*\\s*/?>`;
@@ -57745,7 +57835,7 @@ const HTMLTAG = `(?:${OPENTAG}|${CLOSETAG}|<!-->|<!--->|<!--[\\s\\S]*?-->|[<][?]
57745
57835
  /** {@link HTMLTAG}, anchored for matching at a cursor. */
57746
57836
  const reHtmlTag = new RegExp(`^${HTMLTAG}`);
57747
57837
  //#endregion
57748
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/htmlBlock.js
57838
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/htmlBlock.js
57749
57839
  const C_LESSTHAN$3 = 60;
57750
57840
  const reHtmlBlockOpen = [
57751
57841
  /./,
@@ -57811,7 +57901,7 @@ const htmlBlockStart = {
57811
57901
  }
57812
57902
  };
57813
57903
  //#endregion
57814
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/atxHeading.js
57904
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/atxHeading.js
57815
57905
  const reATXHeadingMarker = /^#{1,6}(?:[ \t]+|$)/;
57816
57906
  const reOnlyTrailingHashes = /^[ \t]*#+[ \t]*$/;
57817
57907
  const reClosingHashes = /[ \t]+#+[ \t]*$/;
@@ -57861,7 +57951,7 @@ const atxHeadingStart = {
57861
57951
  }
57862
57952
  };
57863
57953
  //#endregion
57864
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/blockquote.js
57954
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/blockquote.js
57865
57955
  const C_GREATERTHAN = 62;
57866
57956
  /** Blockquote: continues while each line carries its `>` marker. */
57867
57957
  const blockquoteConstruct = {
@@ -57895,11 +57985,11 @@ const blockquoteStart = {
57895
57985
  }
57896
57986
  };
57897
57987
  //#endregion
57898
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/entityMap.js
57988
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/entityMap.js
57899
57989
  /** The HTML5 named character references, keyed without `&` or `;`. */
57900
57990
  const ENTITY_MAP = new Map(JSON.parse("[[\"AElig\",\"Æ\"],[\"AMP\",\"&\"],[\"Aacute\",\"Á\"],[\"Abreve\",\"Ă\"],[\"Acirc\",\"Â\"],[\"Acy\",\"А\"],[\"Afr\",\"𝔄\"],[\"Agrave\",\"À\"],[\"Alpha\",\"Α\"],[\"Amacr\",\"Ā\"],[\"And\",\"⩓\"],[\"Aogon\",\"Ą\"],[\"Aopf\",\"𝔸\"],[\"ApplyFunction\",\"⁡\"],[\"Aring\",\"Å\"],[\"Ascr\",\"𝒜\"],[\"Assign\",\"≔\"],[\"Atilde\",\"Ã\"],[\"Auml\",\"Ä\"],[\"Backslash\",\"∖\"],[\"Barv\",\"⫧\"],[\"Barwed\",\"⌆\"],[\"Bcy\",\"Б\"],[\"Because\",\"∵\"],[\"Bernoullis\",\"ℬ\"],[\"Beta\",\"Β\"],[\"Bfr\",\"𝔅\"],[\"Bopf\",\"𝔹\"],[\"Breve\",\"˘\"],[\"Bscr\",\"ℬ\"],[\"Bumpeq\",\"≎\"],[\"CHcy\",\"Ч\"],[\"COPY\",\"©\"],[\"Cacute\",\"Ć\"],[\"Cap\",\"⋒\"],[\"CapitalDifferentialD\",\"ⅅ\"],[\"Cayleys\",\"ℭ\"],[\"Ccaron\",\"Č\"],[\"Ccedil\",\"Ç\"],[\"Ccirc\",\"Ĉ\"],[\"Cconint\",\"∰\"],[\"Cdot\",\"Ċ\"],[\"Cedilla\",\"¸\"],[\"CenterDot\",\"·\"],[\"Cfr\",\"ℭ\"],[\"Chi\",\"Χ\"],[\"CircleDot\",\"⊙\"],[\"CircleMinus\",\"⊖\"],[\"CirclePlus\",\"⊕\"],[\"CircleTimes\",\"⊗\"],[\"ClockwiseContourIntegral\",\"∲\"],[\"CloseCurlyDoubleQuote\",\"”\"],[\"CloseCurlyQuote\",\"’\"],[\"Colon\",\"∷\"],[\"Colone\",\"⩴\"],[\"Congruent\",\"≡\"],[\"Conint\",\"∯\"],[\"ContourIntegral\",\"∮\"],[\"Copf\",\"ℂ\"],[\"Coproduct\",\"∐\"],[\"CounterClockwiseContourIntegral\",\"∳\"],[\"Cross\",\"⨯\"],[\"Cscr\",\"𝒞\"],[\"Cup\",\"⋓\"],[\"CupCap\",\"≍\"],[\"DD\",\"ⅅ\"],[\"DDotrahd\",\"⤑\"],[\"DJcy\",\"Ђ\"],[\"DScy\",\"Ѕ\"],[\"DZcy\",\"Џ\"],[\"Dagger\",\"‡\"],[\"Darr\",\"↡\"],[\"Dashv\",\"⫤\"],[\"Dcaron\",\"Ď\"],[\"Dcy\",\"Д\"],[\"Del\",\"∇\"],[\"Delta\",\"Δ\"],[\"Dfr\",\"𝔇\"],[\"DiacriticalAcute\",\"´\"],[\"DiacriticalDot\",\"˙\"],[\"DiacriticalDoubleAcute\",\"˝\"],[\"DiacriticalGrave\",\"`\"],[\"DiacriticalTilde\",\"˜\"],[\"Diamond\",\"⋄\"],[\"DifferentialD\",\"ⅆ\"],[\"Dopf\",\"𝔻\"],[\"Dot\",\"¨\"],[\"DotDot\",\"⃜\"],[\"DotEqual\",\"≐\"],[\"DoubleContourIntegral\",\"∯\"],[\"DoubleDot\",\"¨\"],[\"DoubleDownArrow\",\"⇓\"],[\"DoubleLeftArrow\",\"⇐\"],[\"DoubleLeftRightArrow\",\"⇔\"],[\"DoubleLeftTee\",\"⫤\"],[\"DoubleLongLeftArrow\",\"⟸\"],[\"DoubleLongLeftRightArrow\",\"⟺\"],[\"DoubleLongRightArrow\",\"⟹\"],[\"DoubleRightArrow\",\"⇒\"],[\"DoubleRightTee\",\"⊨\"],[\"DoubleUpArrow\",\"⇑\"],[\"DoubleUpDownArrow\",\"⇕\"],[\"DoubleVerticalBar\",\"∥\"],[\"DownArrow\",\"↓\"],[\"DownArrowBar\",\"⤓\"],[\"DownArrowUpArrow\",\"⇵\"],[\"DownBreve\",\"̑\"],[\"DownLeftRightVector\",\"⥐\"],[\"DownLeftTeeVector\",\"⥞\"],[\"DownLeftVector\",\"↽\"],[\"DownLeftVectorBar\",\"⥖\"],[\"DownRightTeeVector\",\"⥟\"],[\"DownRightVector\",\"⇁\"],[\"DownRightVectorBar\",\"⥗\"],[\"DownTee\",\"⊤\"],[\"DownTeeArrow\",\"↧\"],[\"Downarrow\",\"⇓\"],[\"Dscr\",\"𝒟\"],[\"Dstrok\",\"Đ\"],[\"ENG\",\"Ŋ\"],[\"ETH\",\"Ð\"],[\"Eacute\",\"É\"],[\"Ecaron\",\"Ě\"],[\"Ecirc\",\"Ê\"],[\"Ecy\",\"Э\"],[\"Edot\",\"Ė\"],[\"Efr\",\"𝔈\"],[\"Egrave\",\"È\"],[\"Element\",\"∈\"],[\"Emacr\",\"Ē\"],[\"EmptySmallSquare\",\"◻\"],[\"EmptyVerySmallSquare\",\"▫\"],[\"Eogon\",\"Ę\"],[\"Eopf\",\"𝔼\"],[\"Epsilon\",\"Ε\"],[\"Equal\",\"⩵\"],[\"EqualTilde\",\"≂\"],[\"Equilibrium\",\"⇌\"],[\"Escr\",\"ℰ\"],[\"Esim\",\"⩳\"],[\"Eta\",\"Η\"],[\"Euml\",\"Ë\"],[\"Exists\",\"∃\"],[\"ExponentialE\",\"ⅇ\"],[\"Fcy\",\"Ф\"],[\"Ffr\",\"𝔉\"],[\"FilledSmallSquare\",\"◼\"],[\"FilledVerySmallSquare\",\"▪\"],[\"Fopf\",\"𝔽\"],[\"ForAll\",\"∀\"],[\"Fouriertrf\",\"ℱ\"],[\"Fscr\",\"ℱ\"],[\"GJcy\",\"Ѓ\"],[\"GT\",\">\"],[\"Gamma\",\"Γ\"],[\"Gammad\",\"Ϝ\"],[\"Gbreve\",\"Ğ\"],[\"Gcedil\",\"Ģ\"],[\"Gcirc\",\"Ĝ\"],[\"Gcy\",\"Г\"],[\"Gdot\",\"Ġ\"],[\"Gfr\",\"𝔊\"],[\"Gg\",\"⋙\"],[\"Gopf\",\"𝔾\"],[\"GreaterEqual\",\"≥\"],[\"GreaterEqualLess\",\"⋛\"],[\"GreaterFullEqual\",\"≧\"],[\"GreaterGreater\",\"⪢\"],[\"GreaterLess\",\"≷\"],[\"GreaterSlantEqual\",\"⩾\"],[\"GreaterTilde\",\"≳\"],[\"Gscr\",\"𝒢\"],[\"Gt\",\"≫\"],[\"HARDcy\",\"Ъ\"],[\"Hacek\",\"ˇ\"],[\"Hat\",\"^\"],[\"Hcirc\",\"Ĥ\"],[\"Hfr\",\"ℌ\"],[\"HilbertSpace\",\"ℋ\"],[\"Hopf\",\"ℍ\"],[\"HorizontalLine\",\"─\"],[\"Hscr\",\"ℋ\"],[\"Hstrok\",\"Ħ\"],[\"HumpDownHump\",\"≎\"],[\"HumpEqual\",\"≏\"],[\"IEcy\",\"Е\"],[\"IJlig\",\"IJ\"],[\"IOcy\",\"Ё\"],[\"Iacute\",\"Í\"],[\"Icirc\",\"Î\"],[\"Icy\",\"И\"],[\"Idot\",\"İ\"],[\"Ifr\",\"ℑ\"],[\"Igrave\",\"Ì\"],[\"Im\",\"ℑ\"],[\"Imacr\",\"Ī\"],[\"ImaginaryI\",\"ⅈ\"],[\"Implies\",\"⇒\"],[\"Int\",\"∬\"],[\"Integral\",\"∫\"],[\"Intersection\",\"⋂\"],[\"InvisibleComma\",\"⁣\"],[\"InvisibleTimes\",\"⁢\"],[\"Iogon\",\"Į\"],[\"Iopf\",\"𝕀\"],[\"Iota\",\"Ι\"],[\"Iscr\",\"ℐ\"],[\"Itilde\",\"Ĩ\"],[\"Iukcy\",\"І\"],[\"Iuml\",\"Ï\"],[\"Jcirc\",\"Ĵ\"],[\"Jcy\",\"Й\"],[\"Jfr\",\"𝔍\"],[\"Jopf\",\"𝕁\"],[\"Jscr\",\"𝒥\"],[\"Jsercy\",\"Ј\"],[\"Jukcy\",\"Є\"],[\"KHcy\",\"Х\"],[\"KJcy\",\"Ќ\"],[\"Kappa\",\"Κ\"],[\"Kcedil\",\"Ķ\"],[\"Kcy\",\"К\"],[\"Kfr\",\"𝔎\"],[\"Kopf\",\"𝕂\"],[\"Kscr\",\"𝒦\"],[\"LJcy\",\"Љ\"],[\"LT\",\"<\"],[\"Lacute\",\"Ĺ\"],[\"Lambda\",\"Λ\"],[\"Lang\",\"⟪\"],[\"Laplacetrf\",\"ℒ\"],[\"Larr\",\"↞\"],[\"Lcaron\",\"Ľ\"],[\"Lcedil\",\"Ļ\"],[\"Lcy\",\"Л\"],[\"LeftAngleBracket\",\"⟨\"],[\"LeftArrow\",\"←\"],[\"LeftArrowBar\",\"⇤\"],[\"LeftArrowRightArrow\",\"⇆\"],[\"LeftCeiling\",\"⌈\"],[\"LeftDoubleBracket\",\"⟦\"],[\"LeftDownTeeVector\",\"⥡\"],[\"LeftDownVector\",\"⇃\"],[\"LeftDownVectorBar\",\"⥙\"],[\"LeftFloor\",\"⌊\"],[\"LeftRightArrow\",\"↔\"],[\"LeftRightVector\",\"⥎\"],[\"LeftTee\",\"⊣\"],[\"LeftTeeArrow\",\"↤\"],[\"LeftTeeVector\",\"⥚\"],[\"LeftTriangle\",\"⊲\"],[\"LeftTriangleBar\",\"⧏\"],[\"LeftTriangleEqual\",\"⊴\"],[\"LeftUpDownVector\",\"⥑\"],[\"LeftUpTeeVector\",\"⥠\"],[\"LeftUpVector\",\"↿\"],[\"LeftUpVectorBar\",\"⥘\"],[\"LeftVector\",\"↼\"],[\"LeftVectorBar\",\"⥒\"],[\"Leftarrow\",\"⇐\"],[\"Leftrightarrow\",\"⇔\"],[\"LessEqualGreater\",\"⋚\"],[\"LessFullEqual\",\"≦\"],[\"LessGreater\",\"≶\"],[\"LessLess\",\"⪡\"],[\"LessSlantEqual\",\"⩽\"],[\"LessTilde\",\"≲\"],[\"Lfr\",\"𝔏\"],[\"Ll\",\"⋘\"],[\"Lleftarrow\",\"⇚\"],[\"Lmidot\",\"Ŀ\"],[\"LongLeftArrow\",\"⟵\"],[\"LongLeftRightArrow\",\"⟷\"],[\"LongRightArrow\",\"⟶\"],[\"Longleftarrow\",\"⟸\"],[\"Longleftrightarrow\",\"⟺\"],[\"Longrightarrow\",\"⟹\"],[\"Lopf\",\"𝕃\"],[\"LowerLeftArrow\",\"↙\"],[\"LowerRightArrow\",\"↘\"],[\"Lscr\",\"ℒ\"],[\"Lsh\",\"↰\"],[\"Lstrok\",\"Ł\"],[\"Lt\",\"≪\"],[\"Map\",\"⤅\"],[\"Mcy\",\"М\"],[\"MediumSpace\",\" \"],[\"Mellintrf\",\"ℳ\"],[\"Mfr\",\"𝔐\"],[\"MinusPlus\",\"∓\"],[\"Mopf\",\"𝕄\"],[\"Mscr\",\"ℳ\"],[\"Mu\",\"Μ\"],[\"NJcy\",\"Њ\"],[\"Nacute\",\"Ń\"],[\"Ncaron\",\"Ň\"],[\"Ncedil\",\"Ņ\"],[\"Ncy\",\"Н\"],[\"NegativeMediumSpace\",\"​\"],[\"NegativeThickSpace\",\"​\"],[\"NegativeThinSpace\",\"​\"],[\"NegativeVeryThinSpace\",\"​\"],[\"NestedGreaterGreater\",\"≫\"],[\"NestedLessLess\",\"≪\"],[\"NewLine\",\"\\n\"],[\"Nfr\",\"𝔑\"],[\"NoBreak\",\"⁠\"],[\"NonBreakingSpace\",\"\xA0\"],[\"Nopf\",\"ℕ\"],[\"Not\",\"⫬\"],[\"NotCongruent\",\"≢\"],[\"NotCupCap\",\"≭\"],[\"NotDoubleVerticalBar\",\"∦\"],[\"NotElement\",\"∉\"],[\"NotEqual\",\"≠\"],[\"NotEqualTilde\",\"≂̸\"],[\"NotExists\",\"∄\"],[\"NotGreater\",\"≯\"],[\"NotGreaterEqual\",\"≱\"],[\"NotGreaterFullEqual\",\"≧̸\"],[\"NotGreaterGreater\",\"≫̸\"],[\"NotGreaterLess\",\"≹\"],[\"NotGreaterSlantEqual\",\"⩾̸\"],[\"NotGreaterTilde\",\"≵\"],[\"NotHumpDownHump\",\"≎̸\"],[\"NotHumpEqual\",\"≏̸\"],[\"NotLeftTriangle\",\"⋪\"],[\"NotLeftTriangleBar\",\"⧏̸\"],[\"NotLeftTriangleEqual\",\"⋬\"],[\"NotLess\",\"≮\"],[\"NotLessEqual\",\"≰\"],[\"NotLessGreater\",\"≸\"],[\"NotLessLess\",\"≪̸\"],[\"NotLessSlantEqual\",\"⩽̸\"],[\"NotLessTilde\",\"≴\"],[\"NotNestedGreaterGreater\",\"⪢̸\"],[\"NotNestedLessLess\",\"⪡̸\"],[\"NotPrecedes\",\"⊀\"],[\"NotPrecedesEqual\",\"⪯̸\"],[\"NotPrecedesSlantEqual\",\"⋠\"],[\"NotReverseElement\",\"∌\"],[\"NotRightTriangle\",\"⋫\"],[\"NotRightTriangleBar\",\"⧐̸\"],[\"NotRightTriangleEqual\",\"⋭\"],[\"NotSquareSubset\",\"⊏̸\"],[\"NotSquareSubsetEqual\",\"⋢\"],[\"NotSquareSuperset\",\"⊐̸\"],[\"NotSquareSupersetEqual\",\"⋣\"],[\"NotSubset\",\"⊂⃒\"],[\"NotSubsetEqual\",\"⊈\"],[\"NotSucceeds\",\"⊁\"],[\"NotSucceedsEqual\",\"⪰̸\"],[\"NotSucceedsSlantEqual\",\"⋡\"],[\"NotSucceedsTilde\",\"≿̸\"],[\"NotSuperset\",\"⊃⃒\"],[\"NotSupersetEqual\",\"⊉\"],[\"NotTilde\",\"≁\"],[\"NotTildeEqual\",\"≄\"],[\"NotTildeFullEqual\",\"≇\"],[\"NotTildeTilde\",\"≉\"],[\"NotVerticalBar\",\"∤\"],[\"Nscr\",\"𝒩\"],[\"Ntilde\",\"Ñ\"],[\"Nu\",\"Ν\"],[\"OElig\",\"Œ\"],[\"Oacute\",\"Ó\"],[\"Ocirc\",\"Ô\"],[\"Ocy\",\"О\"],[\"Odblac\",\"Ő\"],[\"Ofr\",\"𝔒\"],[\"Ograve\",\"Ò\"],[\"Omacr\",\"Ō\"],[\"Omega\",\"Ω\"],[\"Omicron\",\"Ο\"],[\"Oopf\",\"𝕆\"],[\"OpenCurlyDoubleQuote\",\"“\"],[\"OpenCurlyQuote\",\"‘\"],[\"Or\",\"⩔\"],[\"Oscr\",\"𝒪\"],[\"Oslash\",\"Ø\"],[\"Otilde\",\"Õ\"],[\"Otimes\",\"⨷\"],[\"Ouml\",\"Ö\"],[\"OverBar\",\"‾\"],[\"OverBrace\",\"⏞\"],[\"OverBracket\",\"⎴\"],[\"OverParenthesis\",\"⏜\"],[\"PartialD\",\"∂\"],[\"Pcy\",\"П\"],[\"Pfr\",\"𝔓\"],[\"Phi\",\"Φ\"],[\"Pi\",\"Π\"],[\"PlusMinus\",\"±\"],[\"Poincareplane\",\"ℌ\"],[\"Popf\",\"ℙ\"],[\"Pr\",\"⪻\"],[\"Precedes\",\"≺\"],[\"PrecedesEqual\",\"⪯\"],[\"PrecedesSlantEqual\",\"≼\"],[\"PrecedesTilde\",\"≾\"],[\"Prime\",\"″\"],[\"Product\",\"∏\"],[\"Proportion\",\"∷\"],[\"Proportional\",\"∝\"],[\"Pscr\",\"𝒫\"],[\"Psi\",\"Ψ\"],[\"QUOT\",\"\\\"\"],[\"Qfr\",\"𝔔\"],[\"Qopf\",\"ℚ\"],[\"Qscr\",\"𝒬\"],[\"RBarr\",\"⤐\"],[\"REG\",\"®\"],[\"Racute\",\"Ŕ\"],[\"Rang\",\"⟫\"],[\"Rarr\",\"↠\"],[\"Rarrtl\",\"⤖\"],[\"Rcaron\",\"Ř\"],[\"Rcedil\",\"Ŗ\"],[\"Rcy\",\"Р\"],[\"Re\",\"ℜ\"],[\"ReverseElement\",\"∋\"],[\"ReverseEquilibrium\",\"⇋\"],[\"ReverseUpEquilibrium\",\"⥯\"],[\"Rfr\",\"ℜ\"],[\"Rho\",\"Ρ\"],[\"RightAngleBracket\",\"⟩\"],[\"RightArrow\",\"→\"],[\"RightArrowBar\",\"⇥\"],[\"RightArrowLeftArrow\",\"⇄\"],[\"RightCeiling\",\"⌉\"],[\"RightDoubleBracket\",\"⟧\"],[\"RightDownTeeVector\",\"⥝\"],[\"RightDownVector\",\"⇂\"],[\"RightDownVectorBar\",\"⥕\"],[\"RightFloor\",\"⌋\"],[\"RightTee\",\"⊢\"],[\"RightTeeArrow\",\"↦\"],[\"RightTeeVector\",\"⥛\"],[\"RightTriangle\",\"⊳\"],[\"RightTriangleBar\",\"⧐\"],[\"RightTriangleEqual\",\"⊵\"],[\"RightUpDownVector\",\"⥏\"],[\"RightUpTeeVector\",\"⥜\"],[\"RightUpVector\",\"↾\"],[\"RightUpVectorBar\",\"⥔\"],[\"RightVector\",\"⇀\"],[\"RightVectorBar\",\"⥓\"],[\"Rightarrow\",\"⇒\"],[\"Ropf\",\"ℝ\"],[\"RoundImplies\",\"⥰\"],[\"Rrightarrow\",\"⇛\"],[\"Rscr\",\"ℛ\"],[\"Rsh\",\"↱\"],[\"RuleDelayed\",\"⧴\"],[\"SHCHcy\",\"Щ\"],[\"SHcy\",\"Ш\"],[\"SOFTcy\",\"Ь\"],[\"Sacute\",\"Ś\"],[\"Sc\",\"⪼\"],[\"Scaron\",\"Š\"],[\"Scedil\",\"Ş\"],[\"Scirc\",\"Ŝ\"],[\"Scy\",\"С\"],[\"Sfr\",\"𝔖\"],[\"ShortDownArrow\",\"↓\"],[\"ShortLeftArrow\",\"←\"],[\"ShortRightArrow\",\"→\"],[\"ShortUpArrow\",\"↑\"],[\"Sigma\",\"Σ\"],[\"SmallCircle\",\"∘\"],[\"Sopf\",\"𝕊\"],[\"Sqrt\",\"√\"],[\"Square\",\"□\"],[\"SquareIntersection\",\"⊓\"],[\"SquareSubset\",\"⊏\"],[\"SquareSubsetEqual\",\"⊑\"],[\"SquareSuperset\",\"⊐\"],[\"SquareSupersetEqual\",\"⊒\"],[\"SquareUnion\",\"⊔\"],[\"Sscr\",\"𝒮\"],[\"Star\",\"⋆\"],[\"Sub\",\"⋐\"],[\"Subset\",\"⋐\"],[\"SubsetEqual\",\"⊆\"],[\"Succeeds\",\"≻\"],[\"SucceedsEqual\",\"⪰\"],[\"SucceedsSlantEqual\",\"≽\"],[\"SucceedsTilde\",\"≿\"],[\"SuchThat\",\"∋\"],[\"Sum\",\"∑\"],[\"Sup\",\"⋑\"],[\"Superset\",\"⊃\"],[\"SupersetEqual\",\"⊇\"],[\"Supset\",\"⋑\"],[\"THORN\",\"Þ\"],[\"TRADE\",\"™\"],[\"TSHcy\",\"Ћ\"],[\"TScy\",\"Ц\"],[\"Tab\",\"\\t\"],[\"Tau\",\"Τ\"],[\"Tcaron\",\"Ť\"],[\"Tcedil\",\"Ţ\"],[\"Tcy\",\"Т\"],[\"Tfr\",\"𝔗\"],[\"Therefore\",\"∴\"],[\"Theta\",\"Θ\"],[\"ThickSpace\",\"  \"],[\"ThinSpace\",\" \"],[\"Tilde\",\"∼\"],[\"TildeEqual\",\"≃\"],[\"TildeFullEqual\",\"≅\"],[\"TildeTilde\",\"≈\"],[\"Topf\",\"𝕋\"],[\"TripleDot\",\"⃛\"],[\"Tscr\",\"𝒯\"],[\"Tstrok\",\"Ŧ\"],[\"Uacute\",\"Ú\"],[\"Uarr\",\"↟\"],[\"Uarrocir\",\"⥉\"],[\"Ubrcy\",\"Ў\"],[\"Ubreve\",\"Ŭ\"],[\"Ucirc\",\"Û\"],[\"Ucy\",\"У\"],[\"Udblac\",\"Ű\"],[\"Ufr\",\"𝔘\"],[\"Ugrave\",\"Ù\"],[\"Umacr\",\"Ū\"],[\"UnderBar\",\"_\"],[\"UnderBrace\",\"⏟\"],[\"UnderBracket\",\"⎵\"],[\"UnderParenthesis\",\"⏝\"],[\"Union\",\"⋃\"],[\"UnionPlus\",\"⊎\"],[\"Uogon\",\"Ų\"],[\"Uopf\",\"𝕌\"],[\"UpArrow\",\"↑\"],[\"UpArrowBar\",\"⤒\"],[\"UpArrowDownArrow\",\"⇅\"],[\"UpDownArrow\",\"↕\"],[\"UpEquilibrium\",\"⥮\"],[\"UpTee\",\"⊥\"],[\"UpTeeArrow\",\"↥\"],[\"Uparrow\",\"⇑\"],[\"Updownarrow\",\"⇕\"],[\"UpperLeftArrow\",\"↖\"],[\"UpperRightArrow\",\"↗\"],[\"Upsi\",\"ϒ\"],[\"Upsilon\",\"Υ\"],[\"Uring\",\"Ů\"],[\"Uscr\",\"𝒰\"],[\"Utilde\",\"Ũ\"],[\"Uuml\",\"Ü\"],[\"VDash\",\"⊫\"],[\"Vbar\",\"⫫\"],[\"Vcy\",\"В\"],[\"Vdash\",\"⊩\"],[\"Vdashl\",\"⫦\"],[\"Vee\",\"⋁\"],[\"Verbar\",\"‖\"],[\"Vert\",\"‖\"],[\"VerticalBar\",\"∣\"],[\"VerticalLine\",\"|\"],[\"VerticalSeparator\",\"❘\"],[\"VerticalTilde\",\"≀\"],[\"VeryThinSpace\",\" \"],[\"Vfr\",\"𝔙\"],[\"Vopf\",\"𝕍\"],[\"Vscr\",\"𝒱\"],[\"Vvdash\",\"⊪\"],[\"Wcirc\",\"Ŵ\"],[\"Wedge\",\"⋀\"],[\"Wfr\",\"𝔚\"],[\"Wopf\",\"𝕎\"],[\"Wscr\",\"𝒲\"],[\"Xfr\",\"𝔛\"],[\"Xi\",\"Ξ\"],[\"Xopf\",\"𝕏\"],[\"Xscr\",\"𝒳\"],[\"YAcy\",\"Я\"],[\"YIcy\",\"Ї\"],[\"YUcy\",\"Ю\"],[\"Yacute\",\"Ý\"],[\"Ycirc\",\"Ŷ\"],[\"Ycy\",\"Ы\"],[\"Yfr\",\"𝔜\"],[\"Yopf\",\"𝕐\"],[\"Yscr\",\"𝒴\"],[\"Yuml\",\"Ÿ\"],[\"ZHcy\",\"Ж\"],[\"Zacute\",\"Ź\"],[\"Zcaron\",\"Ž\"],[\"Zcy\",\"З\"],[\"Zdot\",\"Ż\"],[\"ZeroWidthSpace\",\"​\"],[\"Zeta\",\"Ζ\"],[\"Zfr\",\"ℨ\"],[\"Zopf\",\"ℤ\"],[\"Zscr\",\"𝒵\"],[\"aacute\",\"á\"],[\"abreve\",\"ă\"],[\"ac\",\"∾\"],[\"acE\",\"∾̳\"],[\"acd\",\"∿\"],[\"acirc\",\"â\"],[\"acute\",\"´\"],[\"acy\",\"а\"],[\"aelig\",\"æ\"],[\"af\",\"⁡\"],[\"afr\",\"𝔞\"],[\"agrave\",\"à\"],[\"alefsym\",\"ℵ\"],[\"aleph\",\"ℵ\"],[\"alpha\",\"α\"],[\"amacr\",\"ā\"],[\"amalg\",\"⨿\"],[\"amp\",\"&\"],[\"and\",\"∧\"],[\"andand\",\"⩕\"],[\"andd\",\"⩜\"],[\"andslope\",\"⩘\"],[\"andv\",\"⩚\"],[\"ang\",\"∠\"],[\"ange\",\"⦤\"],[\"angle\",\"∠\"],[\"angmsd\",\"∡\"],[\"angmsdaa\",\"⦨\"],[\"angmsdab\",\"⦩\"],[\"angmsdac\",\"⦪\"],[\"angmsdad\",\"⦫\"],[\"angmsdae\",\"⦬\"],[\"angmsdaf\",\"⦭\"],[\"angmsdag\",\"⦮\"],[\"angmsdah\",\"⦯\"],[\"angrt\",\"∟\"],[\"angrtvb\",\"⊾\"],[\"angrtvbd\",\"⦝\"],[\"angsph\",\"∢\"],[\"angst\",\"Å\"],[\"angzarr\",\"⍼\"],[\"aogon\",\"ą\"],[\"aopf\",\"𝕒\"],[\"ap\",\"≈\"],[\"apE\",\"⩰\"],[\"apacir\",\"⩯\"],[\"ape\",\"≊\"],[\"apid\",\"≋\"],[\"apos\",\"'\"],[\"approx\",\"≈\"],[\"approxeq\",\"≊\"],[\"aring\",\"å\"],[\"ascr\",\"𝒶\"],[\"ast\",\"*\"],[\"asymp\",\"≈\"],[\"asympeq\",\"≍\"],[\"atilde\",\"ã\"],[\"auml\",\"ä\"],[\"awconint\",\"∳\"],[\"awint\",\"⨑\"],[\"bNot\",\"⫭\"],[\"backcong\",\"≌\"],[\"backepsilon\",\"϶\"],[\"backprime\",\"‵\"],[\"backsim\",\"∽\"],[\"backsimeq\",\"⋍\"],[\"barvee\",\"⊽\"],[\"barwed\",\"⌅\"],[\"barwedge\",\"⌅\"],[\"bbrk\",\"⎵\"],[\"bbrktbrk\",\"⎶\"],[\"bcong\",\"≌\"],[\"bcy\",\"б\"],[\"bdquo\",\"„\"],[\"becaus\",\"∵\"],[\"because\",\"∵\"],[\"bemptyv\",\"⦰\"],[\"bepsi\",\"϶\"],[\"bernou\",\"ℬ\"],[\"beta\",\"β\"],[\"beth\",\"ℶ\"],[\"between\",\"≬\"],[\"bfr\",\"𝔟\"],[\"bigcap\",\"⋂\"],[\"bigcirc\",\"◯\"],[\"bigcup\",\"⋃\"],[\"bigodot\",\"⨀\"],[\"bigoplus\",\"⨁\"],[\"bigotimes\",\"⨂\"],[\"bigsqcup\",\"⨆\"],[\"bigstar\",\"★\"],[\"bigtriangledown\",\"▽\"],[\"bigtriangleup\",\"△\"],[\"biguplus\",\"⨄\"],[\"bigvee\",\"⋁\"],[\"bigwedge\",\"⋀\"],[\"bkarow\",\"⤍\"],[\"blacklozenge\",\"⧫\"],[\"blacksquare\",\"▪\"],[\"blacktriangle\",\"▴\"],[\"blacktriangledown\",\"▾\"],[\"blacktriangleleft\",\"◂\"],[\"blacktriangleright\",\"▸\"],[\"blank\",\"␣\"],[\"blk12\",\"▒\"],[\"blk14\",\"░\"],[\"blk34\",\"▓\"],[\"block\",\"█\"],[\"bne\",\"=⃥\"],[\"bnequiv\",\"≡⃥\"],[\"bnot\",\"⌐\"],[\"bopf\",\"𝕓\"],[\"bot\",\"⊥\"],[\"bottom\",\"⊥\"],[\"bowtie\",\"⋈\"],[\"boxDL\",\"╗\"],[\"boxDR\",\"╔\"],[\"boxDl\",\"╖\"],[\"boxDr\",\"╓\"],[\"boxH\",\"═\"],[\"boxHD\",\"╦\"],[\"boxHU\",\"╩\"],[\"boxHd\",\"╤\"],[\"boxHu\",\"╧\"],[\"boxUL\",\"╝\"],[\"boxUR\",\"╚\"],[\"boxUl\",\"╜\"],[\"boxUr\",\"╙\"],[\"boxV\",\"║\"],[\"boxVH\",\"╬\"],[\"boxVL\",\"╣\"],[\"boxVR\",\"╠\"],[\"boxVh\",\"╫\"],[\"boxVl\",\"╢\"],[\"boxVr\",\"╟\"],[\"boxbox\",\"⧉\"],[\"boxdL\",\"╕\"],[\"boxdR\",\"╒\"],[\"boxdl\",\"┐\"],[\"boxdr\",\"┌\"],[\"boxh\",\"─\"],[\"boxhD\",\"╥\"],[\"boxhU\",\"╨\"],[\"boxhd\",\"┬\"],[\"boxhu\",\"┴\"],[\"boxminus\",\"⊟\"],[\"boxplus\",\"⊞\"],[\"boxtimes\",\"⊠\"],[\"boxuL\",\"╛\"],[\"boxuR\",\"╘\"],[\"boxul\",\"┘\"],[\"boxur\",\"└\"],[\"boxv\",\"│\"],[\"boxvH\",\"╪\"],[\"boxvL\",\"╡\"],[\"boxvR\",\"╞\"],[\"boxvh\",\"┼\"],[\"boxvl\",\"┤\"],[\"boxvr\",\"├\"],[\"bprime\",\"‵\"],[\"breve\",\"˘\"],[\"brvbar\",\"¦\"],[\"bscr\",\"𝒷\"],[\"bsemi\",\"⁏\"],[\"bsim\",\"∽\"],[\"bsime\",\"⋍\"],[\"bsol\",\"\\\\\"],[\"bsolb\",\"⧅\"],[\"bsolhsub\",\"⟈\"],[\"bull\",\"•\"],[\"bullet\",\"•\"],[\"bump\",\"≎\"],[\"bumpE\",\"⪮\"],[\"bumpe\",\"≏\"],[\"bumpeq\",\"≏\"],[\"cacute\",\"ć\"],[\"cap\",\"∩\"],[\"capand\",\"⩄\"],[\"capbrcup\",\"⩉\"],[\"capcap\",\"⩋\"],[\"capcup\",\"⩇\"],[\"capdot\",\"⩀\"],[\"caps\",\"∩︀\"],[\"caret\",\"⁁\"],[\"caron\",\"ˇ\"],[\"ccaps\",\"⩍\"],[\"ccaron\",\"č\"],[\"ccedil\",\"ç\"],[\"ccirc\",\"ĉ\"],[\"ccups\",\"⩌\"],[\"ccupssm\",\"⩐\"],[\"cdot\",\"ċ\"],[\"cedil\",\"¸\"],[\"cemptyv\",\"⦲\"],[\"cent\",\"¢\"],[\"centerdot\",\"·\"],[\"cfr\",\"𝔠\"],[\"chcy\",\"ч\"],[\"check\",\"✓\"],[\"checkmark\",\"✓\"],[\"chi\",\"χ\"],[\"cir\",\"○\"],[\"cirE\",\"⧃\"],[\"circ\",\"ˆ\"],[\"circeq\",\"≗\"],[\"circlearrowleft\",\"↺\"],[\"circlearrowright\",\"↻\"],[\"circledR\",\"®\"],[\"circledS\",\"Ⓢ\"],[\"circledast\",\"⊛\"],[\"circledcirc\",\"⊚\"],[\"circleddash\",\"⊝\"],[\"cire\",\"≗\"],[\"cirfnint\",\"⨐\"],[\"cirmid\",\"⫯\"],[\"cirscir\",\"⧂\"],[\"clubs\",\"♣\"],[\"clubsuit\",\"♣\"],[\"colon\",\":\"],[\"colone\",\"≔\"],[\"coloneq\",\"≔\"],[\"comma\",\",\"],[\"commat\",\"@\"],[\"comp\",\"∁\"],[\"compfn\",\"∘\"],[\"complement\",\"∁\"],[\"complexes\",\"ℂ\"],[\"cong\",\"≅\"],[\"congdot\",\"⩭\"],[\"conint\",\"∮\"],[\"copf\",\"𝕔\"],[\"coprod\",\"∐\"],[\"copy\",\"©\"],[\"copysr\",\"℗\"],[\"crarr\",\"↵\"],[\"cross\",\"✗\"],[\"cscr\",\"𝒸\"],[\"csub\",\"⫏\"],[\"csube\",\"⫑\"],[\"csup\",\"⫐\"],[\"csupe\",\"⫒\"],[\"ctdot\",\"⋯\"],[\"cudarrl\",\"⤸\"],[\"cudarrr\",\"⤵\"],[\"cuepr\",\"⋞\"],[\"cuesc\",\"⋟\"],[\"cularr\",\"↶\"],[\"cularrp\",\"⤽\"],[\"cup\",\"∪\"],[\"cupbrcap\",\"⩈\"],[\"cupcap\",\"⩆\"],[\"cupcup\",\"⩊\"],[\"cupdot\",\"⊍\"],[\"cupor\",\"⩅\"],[\"cups\",\"∪︀\"],[\"curarr\",\"↷\"],[\"curarrm\",\"⤼\"],[\"curlyeqprec\",\"⋞\"],[\"curlyeqsucc\",\"⋟\"],[\"curlyvee\",\"⋎\"],[\"curlywedge\",\"⋏\"],[\"curren\",\"¤\"],[\"curvearrowleft\",\"↶\"],[\"curvearrowright\",\"↷\"],[\"cuvee\",\"⋎\"],[\"cuwed\",\"⋏\"],[\"cwconint\",\"∲\"],[\"cwint\",\"∱\"],[\"cylcty\",\"⌭\"],[\"dArr\",\"⇓\"],[\"dHar\",\"⥥\"],[\"dagger\",\"†\"],[\"daleth\",\"ℸ\"],[\"darr\",\"↓\"],[\"dash\",\"‐\"],[\"dashv\",\"⊣\"],[\"dbkarow\",\"⤏\"],[\"dblac\",\"˝\"],[\"dcaron\",\"ď\"],[\"dcy\",\"д\"],[\"dd\",\"ⅆ\"],[\"ddagger\",\"‡\"],[\"ddarr\",\"⇊\"],[\"ddotseq\",\"⩷\"],[\"deg\",\"°\"],[\"delta\",\"δ\"],[\"demptyv\",\"⦱\"],[\"dfisht\",\"⥿\"],[\"dfr\",\"𝔡\"],[\"dharl\",\"⇃\"],[\"dharr\",\"⇂\"],[\"diam\",\"⋄\"],[\"diamond\",\"⋄\"],[\"diamondsuit\",\"♦\"],[\"diams\",\"♦\"],[\"die\",\"¨\"],[\"digamma\",\"ϝ\"],[\"disin\",\"⋲\"],[\"div\",\"÷\"],[\"divide\",\"÷\"],[\"divideontimes\",\"⋇\"],[\"divonx\",\"⋇\"],[\"djcy\",\"ђ\"],[\"dlcorn\",\"⌞\"],[\"dlcrop\",\"⌍\"],[\"dollar\",\"$\"],[\"dopf\",\"𝕕\"],[\"dot\",\"˙\"],[\"doteq\",\"≐\"],[\"doteqdot\",\"≑\"],[\"dotminus\",\"∸\"],[\"dotplus\",\"∔\"],[\"dotsquare\",\"⊡\"],[\"doublebarwedge\",\"⌆\"],[\"downarrow\",\"↓\"],[\"downdownarrows\",\"⇊\"],[\"downharpoonleft\",\"⇃\"],[\"downharpoonright\",\"⇂\"],[\"drbkarow\",\"⤐\"],[\"drcorn\",\"⌟\"],[\"drcrop\",\"⌌\"],[\"dscr\",\"𝒹\"],[\"dscy\",\"ѕ\"],[\"dsol\",\"⧶\"],[\"dstrok\",\"đ\"],[\"dtdot\",\"⋱\"],[\"dtri\",\"▿\"],[\"dtrif\",\"▾\"],[\"duarr\",\"⇵\"],[\"duhar\",\"⥯\"],[\"dwangle\",\"⦦\"],[\"dzcy\",\"џ\"],[\"dzigrarr\",\"⟿\"],[\"eDDot\",\"⩷\"],[\"eDot\",\"≑\"],[\"eacute\",\"é\"],[\"easter\",\"⩮\"],[\"ecaron\",\"ě\"],[\"ecir\",\"≖\"],[\"ecirc\",\"ê\"],[\"ecolon\",\"≕\"],[\"ecy\",\"э\"],[\"edot\",\"ė\"],[\"ee\",\"ⅇ\"],[\"efDot\",\"≒\"],[\"efr\",\"𝔢\"],[\"eg\",\"⪚\"],[\"egrave\",\"è\"],[\"egs\",\"⪖\"],[\"egsdot\",\"⪘\"],[\"el\",\"⪙\"],[\"elinters\",\"⏧\"],[\"ell\",\"ℓ\"],[\"els\",\"⪕\"],[\"elsdot\",\"⪗\"],[\"emacr\",\"ē\"],[\"empty\",\"∅\"],[\"emptyset\",\"∅\"],[\"emptyv\",\"∅\"],[\"emsp\",\" \"],[\"emsp13\",\" \"],[\"emsp14\",\" \"],[\"eng\",\"ŋ\"],[\"ensp\",\" \"],[\"eogon\",\"ę\"],[\"eopf\",\"𝕖\"],[\"epar\",\"⋕\"],[\"eparsl\",\"⧣\"],[\"eplus\",\"⩱\"],[\"epsi\",\"ε\"],[\"epsilon\",\"ε\"],[\"epsiv\",\"ϵ\"],[\"eqcirc\",\"≖\"],[\"eqcolon\",\"≕\"],[\"eqsim\",\"≂\"],[\"eqslantgtr\",\"⪖\"],[\"eqslantless\",\"⪕\"],[\"equals\",\"=\"],[\"equest\",\"≟\"],[\"equiv\",\"≡\"],[\"equivDD\",\"⩸\"],[\"eqvparsl\",\"⧥\"],[\"erDot\",\"≓\"],[\"erarr\",\"⥱\"],[\"escr\",\"ℯ\"],[\"esdot\",\"≐\"],[\"esim\",\"≂\"],[\"eta\",\"η\"],[\"eth\",\"ð\"],[\"euml\",\"ë\"],[\"euro\",\"€\"],[\"excl\",\"!\"],[\"exist\",\"∃\"],[\"expectation\",\"ℰ\"],[\"exponentiale\",\"ⅇ\"],[\"fallingdotseq\",\"≒\"],[\"fcy\",\"ф\"],[\"female\",\"♀\"],[\"ffilig\",\"ffi\"],[\"fflig\",\"ff\"],[\"ffllig\",\"ffl\"],[\"ffr\",\"𝔣\"],[\"filig\",\"fi\"],[\"fjlig\",\"fj\"],[\"flat\",\"♭\"],[\"fllig\",\"fl\"],[\"fltns\",\"▱\"],[\"fnof\",\"ƒ\"],[\"fopf\",\"𝕗\"],[\"forall\",\"∀\"],[\"fork\",\"⋔\"],[\"forkv\",\"⫙\"],[\"fpartint\",\"⨍\"],[\"frac12\",\"½\"],[\"frac13\",\"⅓\"],[\"frac14\",\"¼\"],[\"frac15\",\"⅕\"],[\"frac16\",\"⅙\"],[\"frac18\",\"⅛\"],[\"frac23\",\"⅔\"],[\"frac25\",\"⅖\"],[\"frac34\",\"¾\"],[\"frac35\",\"⅗\"],[\"frac38\",\"⅜\"],[\"frac45\",\"⅘\"],[\"frac56\",\"⅚\"],[\"frac58\",\"⅝\"],[\"frac78\",\"⅞\"],[\"frasl\",\"⁄\"],[\"frown\",\"⌢\"],[\"fscr\",\"𝒻\"],[\"gE\",\"≧\"],[\"gEl\",\"⪌\"],[\"gacute\",\"ǵ\"],[\"gamma\",\"γ\"],[\"gammad\",\"ϝ\"],[\"gap\",\"⪆\"],[\"gbreve\",\"ğ\"],[\"gcirc\",\"ĝ\"],[\"gcy\",\"г\"],[\"gdot\",\"ġ\"],[\"ge\",\"≥\"],[\"gel\",\"⋛\"],[\"geq\",\"≥\"],[\"geqq\",\"≧\"],[\"geqslant\",\"⩾\"],[\"ges\",\"⩾\"],[\"gescc\",\"⪩\"],[\"gesdot\",\"⪀\"],[\"gesdoto\",\"⪂\"],[\"gesdotol\",\"⪄\"],[\"gesl\",\"⋛︀\"],[\"gesles\",\"⪔\"],[\"gfr\",\"𝔤\"],[\"gg\",\"≫\"],[\"ggg\",\"⋙\"],[\"gimel\",\"ℷ\"],[\"gjcy\",\"ѓ\"],[\"gl\",\"≷\"],[\"glE\",\"⪒\"],[\"gla\",\"⪥\"],[\"glj\",\"⪤\"],[\"gnE\",\"≩\"],[\"gnap\",\"⪊\"],[\"gnapprox\",\"⪊\"],[\"gne\",\"⪈\"],[\"gneq\",\"⪈\"],[\"gneqq\",\"≩\"],[\"gnsim\",\"⋧\"],[\"gopf\",\"𝕘\"],[\"grave\",\"`\"],[\"gscr\",\"ℊ\"],[\"gsim\",\"≳\"],[\"gsime\",\"⪎\"],[\"gsiml\",\"⪐\"],[\"gt\",\">\"],[\"gtcc\",\"⪧\"],[\"gtcir\",\"⩺\"],[\"gtdot\",\"⋗\"],[\"gtlPar\",\"⦕\"],[\"gtquest\",\"⩼\"],[\"gtrapprox\",\"⪆\"],[\"gtrarr\",\"⥸\"],[\"gtrdot\",\"⋗\"],[\"gtreqless\",\"⋛\"],[\"gtreqqless\",\"⪌\"],[\"gtrless\",\"≷\"],[\"gtrsim\",\"≳\"],[\"gvertneqq\",\"≩︀\"],[\"gvnE\",\"≩︀\"],[\"hArr\",\"⇔\"],[\"hairsp\",\" \"],[\"half\",\"½\"],[\"hamilt\",\"ℋ\"],[\"hardcy\",\"ъ\"],[\"harr\",\"↔\"],[\"harrcir\",\"⥈\"],[\"harrw\",\"↭\"],[\"hbar\",\"ℏ\"],[\"hcirc\",\"ĥ\"],[\"hearts\",\"♥\"],[\"heartsuit\",\"♥\"],[\"hellip\",\"…\"],[\"hercon\",\"⊹\"],[\"hfr\",\"𝔥\"],[\"hksearow\",\"⤥\"],[\"hkswarow\",\"⤦\"],[\"hoarr\",\"⇿\"],[\"homtht\",\"∻\"],[\"hookleftarrow\",\"↩\"],[\"hookrightarrow\",\"↪\"],[\"hopf\",\"𝕙\"],[\"horbar\",\"―\"],[\"hscr\",\"𝒽\"],[\"hslash\",\"ℏ\"],[\"hstrok\",\"ħ\"],[\"hybull\",\"⁃\"],[\"hyphen\",\"‐\"],[\"iacute\",\"í\"],[\"ic\",\"⁣\"],[\"icirc\",\"î\"],[\"icy\",\"и\"],[\"iecy\",\"е\"],[\"iexcl\",\"¡\"],[\"iff\",\"⇔\"],[\"ifr\",\"𝔦\"],[\"igrave\",\"ì\"],[\"ii\",\"ⅈ\"],[\"iiiint\",\"⨌\"],[\"iiint\",\"∭\"],[\"iinfin\",\"⧜\"],[\"iiota\",\"℩\"],[\"ijlig\",\"ij\"],[\"imacr\",\"ī\"],[\"image\",\"ℑ\"],[\"imagline\",\"ℐ\"],[\"imagpart\",\"ℑ\"],[\"imath\",\"ı\"],[\"imof\",\"⊷\"],[\"imped\",\"Ƶ\"],[\"in\",\"∈\"],[\"incare\",\"℅\"],[\"infin\",\"∞\"],[\"infintie\",\"⧝\"],[\"inodot\",\"ı\"],[\"int\",\"∫\"],[\"intcal\",\"⊺\"],[\"integers\",\"ℤ\"],[\"intercal\",\"⊺\"],[\"intlarhk\",\"⨗\"],[\"intprod\",\"⨼\"],[\"iocy\",\"ё\"],[\"iogon\",\"į\"],[\"iopf\",\"𝕚\"],[\"iota\",\"ι\"],[\"iprod\",\"⨼\"],[\"iquest\",\"¿\"],[\"iscr\",\"𝒾\"],[\"isin\",\"∈\"],[\"isinE\",\"⋹\"],[\"isindot\",\"⋵\"],[\"isins\",\"⋴\"],[\"isinsv\",\"⋳\"],[\"isinv\",\"∈\"],[\"it\",\"⁢\"],[\"itilde\",\"ĩ\"],[\"iukcy\",\"і\"],[\"iuml\",\"ï\"],[\"jcirc\",\"ĵ\"],[\"jcy\",\"й\"],[\"jfr\",\"𝔧\"],[\"jmath\",\"ȷ\"],[\"jopf\",\"𝕛\"],[\"jscr\",\"𝒿\"],[\"jsercy\",\"ј\"],[\"jukcy\",\"є\"],[\"kappa\",\"κ\"],[\"kappav\",\"ϰ\"],[\"kcedil\",\"ķ\"],[\"kcy\",\"к\"],[\"kfr\",\"𝔨\"],[\"kgreen\",\"ĸ\"],[\"khcy\",\"х\"],[\"kjcy\",\"ќ\"],[\"kopf\",\"𝕜\"],[\"kscr\",\"𝓀\"],[\"lAarr\",\"⇚\"],[\"lArr\",\"⇐\"],[\"lAtail\",\"⤛\"],[\"lBarr\",\"⤎\"],[\"lE\",\"≦\"],[\"lEg\",\"⪋\"],[\"lHar\",\"⥢\"],[\"lacute\",\"ĺ\"],[\"laemptyv\",\"⦴\"],[\"lagran\",\"ℒ\"],[\"lambda\",\"λ\"],[\"lang\",\"⟨\"],[\"langd\",\"⦑\"],[\"langle\",\"⟨\"],[\"lap\",\"⪅\"],[\"laquo\",\"«\"],[\"larr\",\"←\"],[\"larrb\",\"⇤\"],[\"larrbfs\",\"⤟\"],[\"larrfs\",\"⤝\"],[\"larrhk\",\"↩\"],[\"larrlp\",\"↫\"],[\"larrpl\",\"⤹\"],[\"larrsim\",\"⥳\"],[\"larrtl\",\"↢\"],[\"lat\",\"⪫\"],[\"latail\",\"⤙\"],[\"late\",\"⪭\"],[\"lates\",\"⪭︀\"],[\"lbarr\",\"⤌\"],[\"lbbrk\",\"❲\"],[\"lbrace\",\"{\"],[\"lbrack\",\"[\"],[\"lbrke\",\"⦋\"],[\"lbrksld\",\"⦏\"],[\"lbrkslu\",\"⦍\"],[\"lcaron\",\"ľ\"],[\"lcedil\",\"ļ\"],[\"lceil\",\"⌈\"],[\"lcub\",\"{\"],[\"lcy\",\"л\"],[\"ldca\",\"⤶\"],[\"ldquo\",\"“\"],[\"ldquor\",\"„\"],[\"ldrdhar\",\"⥧\"],[\"ldrushar\",\"⥋\"],[\"ldsh\",\"↲\"],[\"le\",\"≤\"],[\"leftarrow\",\"←\"],[\"leftarrowtail\",\"↢\"],[\"leftharpoondown\",\"↽\"],[\"leftharpoonup\",\"↼\"],[\"leftleftarrows\",\"⇇\"],[\"leftrightarrow\",\"↔\"],[\"leftrightarrows\",\"⇆\"],[\"leftrightharpoons\",\"⇋\"],[\"leftrightsquigarrow\",\"↭\"],[\"leftthreetimes\",\"⋋\"],[\"leg\",\"⋚\"],[\"leq\",\"≤\"],[\"leqq\",\"≦\"],[\"leqslant\",\"⩽\"],[\"les\",\"⩽\"],[\"lescc\",\"⪨\"],[\"lesdot\",\"⩿\"],[\"lesdoto\",\"⪁\"],[\"lesdotor\",\"⪃\"],[\"lesg\",\"⋚︀\"],[\"lesges\",\"⪓\"],[\"lessapprox\",\"⪅\"],[\"lessdot\",\"⋖\"],[\"lesseqgtr\",\"⋚\"],[\"lesseqqgtr\",\"⪋\"],[\"lessgtr\",\"≶\"],[\"lesssim\",\"≲\"],[\"lfisht\",\"⥼\"],[\"lfloor\",\"⌊\"],[\"lfr\",\"𝔩\"],[\"lg\",\"≶\"],[\"lgE\",\"⪑\"],[\"lhard\",\"↽\"],[\"lharu\",\"↼\"],[\"lharul\",\"⥪\"],[\"lhblk\",\"▄\"],[\"ljcy\",\"љ\"],[\"ll\",\"≪\"],[\"llarr\",\"⇇\"],[\"llcorner\",\"⌞\"],[\"llhard\",\"⥫\"],[\"lltri\",\"◺\"],[\"lmidot\",\"ŀ\"],[\"lmoust\",\"⎰\"],[\"lmoustache\",\"⎰\"],[\"lnE\",\"≨\"],[\"lnap\",\"⪉\"],[\"lnapprox\",\"⪉\"],[\"lne\",\"⪇\"],[\"lneq\",\"⪇\"],[\"lneqq\",\"≨\"],[\"lnsim\",\"⋦\"],[\"loang\",\"⟬\"],[\"loarr\",\"⇽\"],[\"lobrk\",\"⟦\"],[\"longleftarrow\",\"⟵\"],[\"longleftrightarrow\",\"⟷\"],[\"longmapsto\",\"⟼\"],[\"longrightarrow\",\"⟶\"],[\"looparrowleft\",\"↫\"],[\"looparrowright\",\"↬\"],[\"lopar\",\"⦅\"],[\"lopf\",\"𝕝\"],[\"loplus\",\"⨭\"],[\"lotimes\",\"⨴\"],[\"lowast\",\"∗\"],[\"lowbar\",\"_\"],[\"loz\",\"◊\"],[\"lozenge\",\"◊\"],[\"lozf\",\"⧫\"],[\"lpar\",\"(\"],[\"lparlt\",\"⦓\"],[\"lrarr\",\"⇆\"],[\"lrcorner\",\"⌟\"],[\"lrhar\",\"⇋\"],[\"lrhard\",\"⥭\"],[\"lrm\",\"‎\"],[\"lrtri\",\"⊿\"],[\"lsaquo\",\"‹\"],[\"lscr\",\"𝓁\"],[\"lsh\",\"↰\"],[\"lsim\",\"≲\"],[\"lsime\",\"⪍\"],[\"lsimg\",\"⪏\"],[\"lsqb\",\"[\"],[\"lsquo\",\"‘\"],[\"lsquor\",\"‚\"],[\"lstrok\",\"ł\"],[\"lt\",\"<\"],[\"ltcc\",\"⪦\"],[\"ltcir\",\"⩹\"],[\"ltdot\",\"⋖\"],[\"lthree\",\"⋋\"],[\"ltimes\",\"⋉\"],[\"ltlarr\",\"⥶\"],[\"ltquest\",\"⩻\"],[\"ltrPar\",\"⦖\"],[\"ltri\",\"◃\"],[\"ltrie\",\"⊴\"],[\"ltrif\",\"◂\"],[\"lurdshar\",\"⥊\"],[\"luruhar\",\"⥦\"],[\"lvertneqq\",\"≨︀\"],[\"lvnE\",\"≨︀\"],[\"mDDot\",\"∺\"],[\"macr\",\"¯\"],[\"male\",\"♂\"],[\"malt\",\"✠\"],[\"maltese\",\"✠\"],[\"map\",\"↦\"],[\"mapsto\",\"↦\"],[\"mapstodown\",\"↧\"],[\"mapstoleft\",\"↤\"],[\"mapstoup\",\"↥\"],[\"marker\",\"▮\"],[\"mcomma\",\"⨩\"],[\"mcy\",\"м\"],[\"mdash\",\"—\"],[\"measuredangle\",\"∡\"],[\"mfr\",\"𝔪\"],[\"mho\",\"℧\"],[\"micro\",\"µ\"],[\"mid\",\"∣\"],[\"midast\",\"*\"],[\"midcir\",\"⫰\"],[\"middot\",\"·\"],[\"minus\",\"−\"],[\"minusb\",\"⊟\"],[\"minusd\",\"∸\"],[\"minusdu\",\"⨪\"],[\"mlcp\",\"⫛\"],[\"mldr\",\"…\"],[\"mnplus\",\"∓\"],[\"models\",\"⊧\"],[\"mopf\",\"𝕞\"],[\"mp\",\"∓\"],[\"mscr\",\"𝓂\"],[\"mstpos\",\"∾\"],[\"mu\",\"μ\"],[\"multimap\",\"⊸\"],[\"mumap\",\"⊸\"],[\"nGg\",\"⋙̸\"],[\"nGt\",\"≫⃒\"],[\"nGtv\",\"≫̸\"],[\"nLeftarrow\",\"⇍\"],[\"nLeftrightarrow\",\"⇎\"],[\"nLl\",\"⋘̸\"],[\"nLt\",\"≪⃒\"],[\"nLtv\",\"≪̸\"],[\"nRightarrow\",\"⇏\"],[\"nVDash\",\"⊯\"],[\"nVdash\",\"⊮\"],[\"nabla\",\"∇\"],[\"nacute\",\"ń\"],[\"nang\",\"∠⃒\"],[\"nap\",\"≉\"],[\"napE\",\"⩰̸\"],[\"napid\",\"≋̸\"],[\"napos\",\"ʼn\"],[\"napprox\",\"≉\"],[\"natur\",\"♮\"],[\"natural\",\"♮\"],[\"naturals\",\"ℕ\"],[\"nbsp\",\"\xA0\"],[\"nbump\",\"≎̸\"],[\"nbumpe\",\"≏̸\"],[\"ncap\",\"⩃\"],[\"ncaron\",\"ň\"],[\"ncedil\",\"ņ\"],[\"ncong\",\"≇\"],[\"ncongdot\",\"⩭̸\"],[\"ncup\",\"⩂\"],[\"ncy\",\"н\"],[\"ndash\",\"–\"],[\"ne\",\"≠\"],[\"neArr\",\"⇗\"],[\"nearhk\",\"⤤\"],[\"nearr\",\"↗\"],[\"nearrow\",\"↗\"],[\"nedot\",\"≐̸\"],[\"nequiv\",\"≢\"],[\"nesear\",\"⤨\"],[\"nesim\",\"≂̸\"],[\"nexist\",\"∄\"],[\"nexists\",\"∄\"],[\"nfr\",\"𝔫\"],[\"ngE\",\"≧̸\"],[\"nge\",\"≱\"],[\"ngeq\",\"≱\"],[\"ngeqq\",\"≧̸\"],[\"ngeqslant\",\"⩾̸\"],[\"nges\",\"⩾̸\"],[\"ngsim\",\"≵\"],[\"ngt\",\"≯\"],[\"ngtr\",\"≯\"],[\"nhArr\",\"⇎\"],[\"nharr\",\"↮\"],[\"nhpar\",\"⫲\"],[\"ni\",\"∋\"],[\"nis\",\"⋼\"],[\"nisd\",\"⋺\"],[\"niv\",\"∋\"],[\"njcy\",\"њ\"],[\"nlArr\",\"⇍\"],[\"nlE\",\"≦̸\"],[\"nlarr\",\"↚\"],[\"nldr\",\"‥\"],[\"nle\",\"≰\"],[\"nleftarrow\",\"↚\"],[\"nleftrightarrow\",\"↮\"],[\"nleq\",\"≰\"],[\"nleqq\",\"≦̸\"],[\"nleqslant\",\"⩽̸\"],[\"nles\",\"⩽̸\"],[\"nless\",\"≮\"],[\"nlsim\",\"≴\"],[\"nlt\",\"≮\"],[\"nltri\",\"⋪\"],[\"nltrie\",\"⋬\"],[\"nmid\",\"∤\"],[\"nopf\",\"𝕟\"],[\"not\",\"¬\"],[\"notin\",\"∉\"],[\"notinE\",\"⋹̸\"],[\"notindot\",\"⋵̸\"],[\"notinva\",\"∉\"],[\"notinvb\",\"⋷\"],[\"notinvc\",\"⋶\"],[\"notni\",\"∌\"],[\"notniva\",\"∌\"],[\"notnivb\",\"⋾\"],[\"notnivc\",\"⋽\"],[\"npar\",\"∦\"],[\"nparallel\",\"∦\"],[\"nparsl\",\"⫽⃥\"],[\"npart\",\"∂̸\"],[\"npolint\",\"⨔\"],[\"npr\",\"⊀\"],[\"nprcue\",\"⋠\"],[\"npre\",\"⪯̸\"],[\"nprec\",\"⊀\"],[\"npreceq\",\"⪯̸\"],[\"nrArr\",\"⇏\"],[\"nrarr\",\"↛\"],[\"nrarrc\",\"⤳̸\"],[\"nrarrw\",\"↝̸\"],[\"nrightarrow\",\"↛\"],[\"nrtri\",\"⋫\"],[\"nrtrie\",\"⋭\"],[\"nsc\",\"⊁\"],[\"nsccue\",\"⋡\"],[\"nsce\",\"⪰̸\"],[\"nscr\",\"𝓃\"],[\"nshortmid\",\"∤\"],[\"nshortparallel\",\"∦\"],[\"nsim\",\"≁\"],[\"nsime\",\"≄\"],[\"nsimeq\",\"≄\"],[\"nsmid\",\"∤\"],[\"nspar\",\"∦\"],[\"nsqsube\",\"⋢\"],[\"nsqsupe\",\"⋣\"],[\"nsub\",\"⊄\"],[\"nsubE\",\"⫅̸\"],[\"nsube\",\"⊈\"],[\"nsubset\",\"⊂⃒\"],[\"nsubseteq\",\"⊈\"],[\"nsubseteqq\",\"⫅̸\"],[\"nsucc\",\"⊁\"],[\"nsucceq\",\"⪰̸\"],[\"nsup\",\"⊅\"],[\"nsupE\",\"⫆̸\"],[\"nsupe\",\"⊉\"],[\"nsupset\",\"⊃⃒\"],[\"nsupseteq\",\"⊉\"],[\"nsupseteqq\",\"⫆̸\"],[\"ntgl\",\"≹\"],[\"ntilde\",\"ñ\"],[\"ntlg\",\"≸\"],[\"ntriangleleft\",\"⋪\"],[\"ntrianglelefteq\",\"⋬\"],[\"ntriangleright\",\"⋫\"],[\"ntrianglerighteq\",\"⋭\"],[\"nu\",\"ν\"],[\"num\",\"#\"],[\"numero\",\"№\"],[\"numsp\",\" \"],[\"nvDash\",\"⊭\"],[\"nvHarr\",\"⤄\"],[\"nvap\",\"≍⃒\"],[\"nvdash\",\"⊬\"],[\"nvge\",\"≥⃒\"],[\"nvgt\",\">⃒\"],[\"nvinfin\",\"⧞\"],[\"nvlArr\",\"⤂\"],[\"nvle\",\"≤⃒\"],[\"nvlt\",\"<⃒\"],[\"nvltrie\",\"⊴⃒\"],[\"nvrArr\",\"⤃\"],[\"nvrtrie\",\"⊵⃒\"],[\"nvsim\",\"∼⃒\"],[\"nwArr\",\"⇖\"],[\"nwarhk\",\"⤣\"],[\"nwarr\",\"↖\"],[\"nwarrow\",\"↖\"],[\"nwnear\",\"⤧\"],[\"oS\",\"Ⓢ\"],[\"oacute\",\"ó\"],[\"oast\",\"⊛\"],[\"ocir\",\"⊚\"],[\"ocirc\",\"ô\"],[\"ocy\",\"о\"],[\"odash\",\"⊝\"],[\"odblac\",\"ő\"],[\"odiv\",\"⨸\"],[\"odot\",\"⊙\"],[\"odsold\",\"⦼\"],[\"oelig\",\"œ\"],[\"ofcir\",\"⦿\"],[\"ofr\",\"𝔬\"],[\"ogon\",\"˛\"],[\"ograve\",\"ò\"],[\"ogt\",\"⧁\"],[\"ohbar\",\"⦵\"],[\"ohm\",\"Ω\"],[\"oint\",\"∮\"],[\"olarr\",\"↺\"],[\"olcir\",\"⦾\"],[\"olcross\",\"⦻\"],[\"oline\",\"‾\"],[\"olt\",\"⧀\"],[\"omacr\",\"ō\"],[\"omega\",\"ω\"],[\"omicron\",\"ο\"],[\"omid\",\"⦶\"],[\"ominus\",\"⊖\"],[\"oopf\",\"𝕠\"],[\"opar\",\"⦷\"],[\"operp\",\"⦹\"],[\"oplus\",\"⊕\"],[\"or\",\"∨\"],[\"orarr\",\"↻\"],[\"ord\",\"⩝\"],[\"order\",\"ℴ\"],[\"orderof\",\"ℴ\"],[\"ordf\",\"ª\"],[\"ordm\",\"º\"],[\"origof\",\"⊶\"],[\"oror\",\"⩖\"],[\"orslope\",\"⩗\"],[\"orv\",\"⩛\"],[\"oscr\",\"ℴ\"],[\"oslash\",\"ø\"],[\"osol\",\"⊘\"],[\"otilde\",\"õ\"],[\"otimes\",\"⊗\"],[\"otimesas\",\"⨶\"],[\"ouml\",\"ö\"],[\"ovbar\",\"⌽\"],[\"par\",\"∥\"],[\"para\",\"¶\"],[\"parallel\",\"∥\"],[\"parsim\",\"⫳\"],[\"parsl\",\"⫽\"],[\"part\",\"∂\"],[\"pcy\",\"п\"],[\"percnt\",\"%\"],[\"period\",\".\"],[\"permil\",\"‰\"],[\"perp\",\"⊥\"],[\"pertenk\",\"‱\"],[\"pfr\",\"𝔭\"],[\"phi\",\"φ\"],[\"phiv\",\"ϕ\"],[\"phmmat\",\"ℳ\"],[\"phone\",\"☎\"],[\"pi\",\"π\"],[\"pitchfork\",\"⋔\"],[\"piv\",\"ϖ\"],[\"planck\",\"ℏ\"],[\"planckh\",\"ℎ\"],[\"plankv\",\"ℏ\"],[\"plus\",\"+\"],[\"plusacir\",\"⨣\"],[\"plusb\",\"⊞\"],[\"pluscir\",\"⨢\"],[\"plusdo\",\"∔\"],[\"plusdu\",\"⨥\"],[\"pluse\",\"⩲\"],[\"plusmn\",\"±\"],[\"plussim\",\"⨦\"],[\"plustwo\",\"⨧\"],[\"pm\",\"±\"],[\"pointint\",\"⨕\"],[\"popf\",\"𝕡\"],[\"pound\",\"£\"],[\"pr\",\"≺\"],[\"prE\",\"⪳\"],[\"prap\",\"⪷\"],[\"prcue\",\"≼\"],[\"pre\",\"⪯\"],[\"prec\",\"≺\"],[\"precapprox\",\"⪷\"],[\"preccurlyeq\",\"≼\"],[\"preceq\",\"⪯\"],[\"precnapprox\",\"⪹\"],[\"precneqq\",\"⪵\"],[\"precnsim\",\"⋨\"],[\"precsim\",\"≾\"],[\"prime\",\"′\"],[\"primes\",\"ℙ\"],[\"prnE\",\"⪵\"],[\"prnap\",\"⪹\"],[\"prnsim\",\"⋨\"],[\"prod\",\"∏\"],[\"profalar\",\"⌮\"],[\"profline\",\"⌒\"],[\"profsurf\",\"⌓\"],[\"prop\",\"∝\"],[\"propto\",\"∝\"],[\"prsim\",\"≾\"],[\"prurel\",\"⊰\"],[\"pscr\",\"𝓅\"],[\"psi\",\"ψ\"],[\"puncsp\",\" \"],[\"qfr\",\"𝔮\"],[\"qint\",\"⨌\"],[\"qopf\",\"𝕢\"],[\"qprime\",\"⁗\"],[\"qscr\",\"𝓆\"],[\"quaternions\",\"ℍ\"],[\"quatint\",\"⨖\"],[\"quest\",\"?\"],[\"questeq\",\"≟\"],[\"quot\",\"\\\"\"],[\"rAarr\",\"⇛\"],[\"rArr\",\"⇒\"],[\"rAtail\",\"⤜\"],[\"rBarr\",\"⤏\"],[\"rHar\",\"⥤\"],[\"race\",\"∽̱\"],[\"racute\",\"ŕ\"],[\"radic\",\"√\"],[\"raemptyv\",\"⦳\"],[\"rang\",\"⟩\"],[\"rangd\",\"⦒\"],[\"range\",\"⦥\"],[\"rangle\",\"⟩\"],[\"raquo\",\"»\"],[\"rarr\",\"→\"],[\"rarrap\",\"⥵\"],[\"rarrb\",\"⇥\"],[\"rarrbfs\",\"⤠\"],[\"rarrc\",\"⤳\"],[\"rarrfs\",\"⤞\"],[\"rarrhk\",\"↪\"],[\"rarrlp\",\"↬\"],[\"rarrpl\",\"⥅\"],[\"rarrsim\",\"⥴\"],[\"rarrtl\",\"↣\"],[\"rarrw\",\"↝\"],[\"ratail\",\"⤚\"],[\"ratio\",\"∶\"],[\"rationals\",\"ℚ\"],[\"rbarr\",\"⤍\"],[\"rbbrk\",\"❳\"],[\"rbrace\",\"}\"],[\"rbrack\",\"]\"],[\"rbrke\",\"⦌\"],[\"rbrksld\",\"⦎\"],[\"rbrkslu\",\"⦐\"],[\"rcaron\",\"ř\"],[\"rcedil\",\"ŗ\"],[\"rceil\",\"⌉\"],[\"rcub\",\"}\"],[\"rcy\",\"р\"],[\"rdca\",\"⤷\"],[\"rdldhar\",\"⥩\"],[\"rdquo\",\"”\"],[\"rdquor\",\"”\"],[\"rdsh\",\"↳\"],[\"real\",\"ℜ\"],[\"realine\",\"ℛ\"],[\"realpart\",\"ℜ\"],[\"reals\",\"ℝ\"],[\"rect\",\"▭\"],[\"reg\",\"®\"],[\"rfisht\",\"⥽\"],[\"rfloor\",\"⌋\"],[\"rfr\",\"𝔯\"],[\"rhard\",\"⇁\"],[\"rharu\",\"⇀\"],[\"rharul\",\"⥬\"],[\"rho\",\"ρ\"],[\"rhov\",\"ϱ\"],[\"rightarrow\",\"→\"],[\"rightarrowtail\",\"↣\"],[\"rightharpoondown\",\"⇁\"],[\"rightharpoonup\",\"⇀\"],[\"rightleftarrows\",\"⇄\"],[\"rightleftharpoons\",\"⇌\"],[\"rightrightarrows\",\"⇉\"],[\"rightsquigarrow\",\"↝\"],[\"rightthreetimes\",\"⋌\"],[\"ring\",\"˚\"],[\"risingdotseq\",\"≓\"],[\"rlarr\",\"⇄\"],[\"rlhar\",\"⇌\"],[\"rlm\",\"‏\"],[\"rmoust\",\"⎱\"],[\"rmoustache\",\"⎱\"],[\"rnmid\",\"⫮\"],[\"roang\",\"⟭\"],[\"roarr\",\"⇾\"],[\"robrk\",\"⟧\"],[\"ropar\",\"⦆\"],[\"ropf\",\"𝕣\"],[\"roplus\",\"⨮\"],[\"rotimes\",\"⨵\"],[\"rpar\",\")\"],[\"rpargt\",\"⦔\"],[\"rppolint\",\"⨒\"],[\"rrarr\",\"⇉\"],[\"rsaquo\",\"›\"],[\"rscr\",\"𝓇\"],[\"rsh\",\"↱\"],[\"rsqb\",\"]\"],[\"rsquo\",\"’\"],[\"rsquor\",\"’\"],[\"rthree\",\"⋌\"],[\"rtimes\",\"⋊\"],[\"rtri\",\"▹\"],[\"rtrie\",\"⊵\"],[\"rtrif\",\"▸\"],[\"rtriltri\",\"⧎\"],[\"ruluhar\",\"⥨\"],[\"rx\",\"℞\"],[\"sacute\",\"ś\"],[\"sbquo\",\"‚\"],[\"sc\",\"≻\"],[\"scE\",\"⪴\"],[\"scap\",\"⪸\"],[\"scaron\",\"š\"],[\"sccue\",\"≽\"],[\"sce\",\"⪰\"],[\"scedil\",\"ş\"],[\"scirc\",\"ŝ\"],[\"scnE\",\"⪶\"],[\"scnap\",\"⪺\"],[\"scnsim\",\"⋩\"],[\"scpolint\",\"⨓\"],[\"scsim\",\"≿\"],[\"scy\",\"с\"],[\"sdot\",\"⋅\"],[\"sdotb\",\"⊡\"],[\"sdote\",\"⩦\"],[\"seArr\",\"⇘\"],[\"searhk\",\"⤥\"],[\"searr\",\"↘\"],[\"searrow\",\"↘\"],[\"sect\",\"§\"],[\"semi\",\";\"],[\"seswar\",\"⤩\"],[\"setminus\",\"∖\"],[\"setmn\",\"∖\"],[\"sext\",\"✶\"],[\"sfr\",\"𝔰\"],[\"sfrown\",\"⌢\"],[\"sharp\",\"♯\"],[\"shchcy\",\"щ\"],[\"shcy\",\"ш\"],[\"shortmid\",\"∣\"],[\"shortparallel\",\"∥\"],[\"shy\",\"­\"],[\"sigma\",\"σ\"],[\"sigmaf\",\"ς\"],[\"sigmav\",\"ς\"],[\"sim\",\"∼\"],[\"simdot\",\"⩪\"],[\"sime\",\"≃\"],[\"simeq\",\"≃\"],[\"simg\",\"⪞\"],[\"simgE\",\"⪠\"],[\"siml\",\"⪝\"],[\"simlE\",\"⪟\"],[\"simne\",\"≆\"],[\"simplus\",\"⨤\"],[\"simrarr\",\"⥲\"],[\"slarr\",\"←\"],[\"smallsetminus\",\"∖\"],[\"smashp\",\"⨳\"],[\"smeparsl\",\"⧤\"],[\"smid\",\"∣\"],[\"smile\",\"⌣\"],[\"smt\",\"⪪\"],[\"smte\",\"⪬\"],[\"smtes\",\"⪬︀\"],[\"softcy\",\"ь\"],[\"sol\",\"/\"],[\"solb\",\"⧄\"],[\"solbar\",\"⌿\"],[\"sopf\",\"𝕤\"],[\"spades\",\"♠\"],[\"spadesuit\",\"♠\"],[\"spar\",\"∥\"],[\"sqcap\",\"⊓\"],[\"sqcaps\",\"⊓︀\"],[\"sqcup\",\"⊔\"],[\"sqcups\",\"⊔︀\"],[\"sqsub\",\"⊏\"],[\"sqsube\",\"⊑\"],[\"sqsubset\",\"⊏\"],[\"sqsubseteq\",\"⊑\"],[\"sqsup\",\"⊐\"],[\"sqsupe\",\"⊒\"],[\"sqsupset\",\"⊐\"],[\"sqsupseteq\",\"⊒\"],[\"squ\",\"□\"],[\"square\",\"□\"],[\"squarf\",\"▪\"],[\"squf\",\"▪\"],[\"srarr\",\"→\"],[\"sscr\",\"𝓈\"],[\"ssetmn\",\"∖\"],[\"ssmile\",\"⌣\"],[\"sstarf\",\"⋆\"],[\"star\",\"☆\"],[\"starf\",\"★\"],[\"straightepsilon\",\"ϵ\"],[\"straightphi\",\"ϕ\"],[\"strns\",\"¯\"],[\"sub\",\"⊂\"],[\"subE\",\"⫅\"],[\"subdot\",\"⪽\"],[\"sube\",\"⊆\"],[\"subedot\",\"⫃\"],[\"submult\",\"⫁\"],[\"subnE\",\"⫋\"],[\"subne\",\"⊊\"],[\"subplus\",\"⪿\"],[\"subrarr\",\"⥹\"],[\"subset\",\"⊂\"],[\"subseteq\",\"⊆\"],[\"subseteqq\",\"⫅\"],[\"subsetneq\",\"⊊\"],[\"subsetneqq\",\"⫋\"],[\"subsim\",\"⫇\"],[\"subsub\",\"⫕\"],[\"subsup\",\"⫓\"],[\"succ\",\"≻\"],[\"succapprox\",\"⪸\"],[\"succcurlyeq\",\"≽\"],[\"succeq\",\"⪰\"],[\"succnapprox\",\"⪺\"],[\"succneqq\",\"⪶\"],[\"succnsim\",\"⋩\"],[\"succsim\",\"≿\"],[\"sum\",\"∑\"],[\"sung\",\"♪\"],[\"sup\",\"⊃\"],[\"sup1\",\"¹\"],[\"sup2\",\"²\"],[\"sup3\",\"³\"],[\"supE\",\"⫆\"],[\"supdot\",\"⪾\"],[\"supdsub\",\"⫘\"],[\"supe\",\"⊇\"],[\"supedot\",\"⫄\"],[\"suphsol\",\"⟉\"],[\"suphsub\",\"⫗\"],[\"suplarr\",\"⥻\"],[\"supmult\",\"⫂\"],[\"supnE\",\"⫌\"],[\"supne\",\"⊋\"],[\"supplus\",\"⫀\"],[\"supset\",\"⊃\"],[\"supseteq\",\"⊇\"],[\"supseteqq\",\"⫆\"],[\"supsetneq\",\"⊋\"],[\"supsetneqq\",\"⫌\"],[\"supsim\",\"⫈\"],[\"supsub\",\"⫔\"],[\"supsup\",\"⫖\"],[\"swArr\",\"⇙\"],[\"swarhk\",\"⤦\"],[\"swarr\",\"↙\"],[\"swarrow\",\"↙\"],[\"swnwar\",\"⤪\"],[\"szlig\",\"ß\"],[\"target\",\"⌖\"],[\"tau\",\"τ\"],[\"tbrk\",\"⎴\"],[\"tcaron\",\"ť\"],[\"tcedil\",\"ţ\"],[\"tcy\",\"т\"],[\"tdot\",\"⃛\"],[\"telrec\",\"⌕\"],[\"tfr\",\"𝔱\"],[\"there4\",\"∴\"],[\"therefore\",\"∴\"],[\"theta\",\"θ\"],[\"thetasym\",\"ϑ\"],[\"thetav\",\"ϑ\"],[\"thickapprox\",\"≈\"],[\"thicksim\",\"∼\"],[\"thinsp\",\" \"],[\"thkap\",\"≈\"],[\"thksim\",\"∼\"],[\"thorn\",\"þ\"],[\"tilde\",\"˜\"],[\"times\",\"×\"],[\"timesb\",\"⊠\"],[\"timesbar\",\"⨱\"],[\"timesd\",\"⨰\"],[\"tint\",\"∭\"],[\"toea\",\"⤨\"],[\"top\",\"⊤\"],[\"topbot\",\"⌶\"],[\"topcir\",\"⫱\"],[\"topf\",\"𝕥\"],[\"topfork\",\"⫚\"],[\"tosa\",\"⤩\"],[\"tprime\",\"‴\"],[\"trade\",\"™\"],[\"triangle\",\"▵\"],[\"triangledown\",\"▿\"],[\"triangleleft\",\"◃\"],[\"trianglelefteq\",\"⊴\"],[\"triangleq\",\"≜\"],[\"triangleright\",\"▹\"],[\"trianglerighteq\",\"⊵\"],[\"tridot\",\"◬\"],[\"trie\",\"≜\"],[\"triminus\",\"⨺\"],[\"triplus\",\"⨹\"],[\"trisb\",\"⧍\"],[\"tritime\",\"⨻\"],[\"trpezium\",\"⏢\"],[\"tscr\",\"𝓉\"],[\"tscy\",\"ц\"],[\"tshcy\",\"ћ\"],[\"tstrok\",\"ŧ\"],[\"twixt\",\"≬\"],[\"twoheadleftarrow\",\"↞\"],[\"twoheadrightarrow\",\"↠\"],[\"uArr\",\"⇑\"],[\"uHar\",\"⥣\"],[\"uacute\",\"ú\"],[\"uarr\",\"↑\"],[\"ubrcy\",\"ў\"],[\"ubreve\",\"ŭ\"],[\"ucirc\",\"û\"],[\"ucy\",\"у\"],[\"udarr\",\"⇅\"],[\"udblac\",\"ű\"],[\"udhar\",\"⥮\"],[\"ufisht\",\"⥾\"],[\"ufr\",\"𝔲\"],[\"ugrave\",\"ù\"],[\"uharl\",\"↿\"],[\"uharr\",\"↾\"],[\"uhblk\",\"▀\"],[\"ulcorn\",\"⌜\"],[\"ulcorner\",\"⌜\"],[\"ulcrop\",\"⌏\"],[\"ultri\",\"◸\"],[\"umacr\",\"ū\"],[\"uml\",\"¨\"],[\"uogon\",\"ų\"],[\"uopf\",\"𝕦\"],[\"uparrow\",\"↑\"],[\"updownarrow\",\"↕\"],[\"upharpoonleft\",\"↿\"],[\"upharpoonright\",\"↾\"],[\"uplus\",\"⊎\"],[\"upsi\",\"υ\"],[\"upsih\",\"ϒ\"],[\"upsilon\",\"υ\"],[\"upuparrows\",\"⇈\"],[\"urcorn\",\"⌝\"],[\"urcorner\",\"⌝\"],[\"urcrop\",\"⌎\"],[\"uring\",\"ů\"],[\"urtri\",\"◹\"],[\"uscr\",\"𝓊\"],[\"utdot\",\"⋰\"],[\"utilde\",\"ũ\"],[\"utri\",\"▵\"],[\"utrif\",\"▴\"],[\"uuarr\",\"⇈\"],[\"uuml\",\"ü\"],[\"uwangle\",\"⦧\"],[\"vArr\",\"⇕\"],[\"vBar\",\"⫨\"],[\"vBarv\",\"⫩\"],[\"vDash\",\"⊨\"],[\"vangrt\",\"⦜\"],[\"varepsilon\",\"ϵ\"],[\"varkappa\",\"ϰ\"],[\"varnothing\",\"∅\"],[\"varphi\",\"ϕ\"],[\"varpi\",\"ϖ\"],[\"varpropto\",\"∝\"],[\"varr\",\"↕\"],[\"varrho\",\"ϱ\"],[\"varsigma\",\"ς\"],[\"varsubsetneq\",\"⊊︀\"],[\"varsubsetneqq\",\"⫋︀\"],[\"varsupsetneq\",\"⊋︀\"],[\"varsupsetneqq\",\"⫌︀\"],[\"vartheta\",\"ϑ\"],[\"vartriangleleft\",\"⊲\"],[\"vartriangleright\",\"⊳\"],[\"vcy\",\"в\"],[\"vdash\",\"⊢\"],[\"vee\",\"∨\"],[\"veebar\",\"⊻\"],[\"veeeq\",\"≚\"],[\"vellip\",\"⋮\"],[\"verbar\",\"|\"],[\"vert\",\"|\"],[\"vfr\",\"𝔳\"],[\"vltri\",\"⊲\"],[\"vnsub\",\"⊂⃒\"],[\"vnsup\",\"⊃⃒\"],[\"vopf\",\"𝕧\"],[\"vprop\",\"∝\"],[\"vrtri\",\"⊳\"],[\"vscr\",\"𝓋\"],[\"vsubnE\",\"⫋︀\"],[\"vsubne\",\"⊊︀\"],[\"vsupnE\",\"⫌︀\"],[\"vsupne\",\"⊋︀\"],[\"vzigzag\",\"⦚\"],[\"wcirc\",\"ŵ\"],[\"wedbar\",\"⩟\"],[\"wedge\",\"∧\"],[\"wedgeq\",\"≙\"],[\"weierp\",\"℘\"],[\"wfr\",\"𝔴\"],[\"wopf\",\"𝕨\"],[\"wp\",\"℘\"],[\"wr\",\"≀\"],[\"wreath\",\"≀\"],[\"wscr\",\"𝓌\"],[\"xcap\",\"⋂\"],[\"xcirc\",\"◯\"],[\"xcup\",\"⋃\"],[\"xdtri\",\"▽\"],[\"xfr\",\"𝔵\"],[\"xhArr\",\"⟺\"],[\"xharr\",\"⟷\"],[\"xi\",\"ξ\"],[\"xlArr\",\"⟸\"],[\"xlarr\",\"⟵\"],[\"xmap\",\"⟼\"],[\"xnis\",\"⋻\"],[\"xodot\",\"⨀\"],[\"xopf\",\"𝕩\"],[\"xoplus\",\"⨁\"],[\"xotime\",\"⨂\"],[\"xrArr\",\"⟹\"],[\"xrarr\",\"⟶\"],[\"xscr\",\"𝓍\"],[\"xsqcup\",\"⨆\"],[\"xuplus\",\"⨄\"],[\"xutri\",\"△\"],[\"xvee\",\"⋁\"],[\"xwedge\",\"⋀\"],[\"yacute\",\"ý\"],[\"yacy\",\"я\"],[\"ycirc\",\"ŷ\"],[\"ycy\",\"ы\"],[\"yen\",\"¥\"],[\"yfr\",\"𝔶\"],[\"yicy\",\"ї\"],[\"yopf\",\"𝕪\"],[\"yscr\",\"𝓎\"],[\"yucy\",\"ю\"],[\"yuml\",\"ÿ\"],[\"zacute\",\"ź\"],[\"zcaron\",\"ž\"],[\"zcy\",\"з\"],[\"zdot\",\"ż\"],[\"zeetrf\",\"ℨ\"],[\"zeta\",\"ζ\"],[\"zfr\",\"𝔷\"],[\"zhcy\",\"ж\"],[\"zigrarr\",\"⇝\"],[\"zopf\",\"𝕫\"],[\"zscr\",\"𝓏\"],[\"zwj\",\"‍\"],[\"zwnj\",\"‌\"]]"));
57901
57991
  //#endregion
57902
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/entities.js
57992
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/entities.js
57903
57993
  /** The largest code point Unicode defines. */
57904
57994
  const MAX_CODE_POINT = 1114111;
57905
57995
  /**
@@ -57921,7 +58011,7 @@ const decodeEntity = (entity) => {
57921
58011
  return String.fromCodePoint(code);
57922
58012
  };
57923
58013
  //#endregion
57924
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/unescape.js
58014
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/unescape.js
57925
58015
  /** The punctuation set a backslash may escape, per the spec. */
57926
58016
  const ESCAPABLE$1 = "[!\"#$%&'()*+,./:;<=>?@[\\\\\\]^_`{|}~-]";
57927
58017
  /** One entity, in any of the three spec forms. */
@@ -57935,7 +58025,7 @@ const unescapeChar = (source) => {
57935
58025
  /** Replace every backslash escape and character reference with its literal. */
57936
58026
  const unescapeString = (source) => reBackslashOrAmp.test(source) ? source.replace(reEntityOrEscapedChar, unescapeChar) : source;
57937
58027
  //#endregion
57938
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/code.js
58028
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/code.js
57939
58029
  const reBlankLine = /^[ \t]*$/;
57940
58030
  const reClosingCodeFence = /^(?:`{3,}|~{3,})(?=[ \t]*$)/;
57941
58031
  /**
@@ -58019,7 +58109,7 @@ const codeConstruct = {
58019
58109
  }
58020
58110
  };
58021
58111
  //#endregion
58022
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/document.js
58112
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/document.js
58023
58113
  /** The document root: contains everything except a bare list item. */
58024
58114
  const documentConstruct = {
58025
58115
  type: "document",
@@ -58032,7 +58122,7 @@ const documentConstruct = {
58032
58122
  })
58033
58123
  };
58034
58124
  //#endregion
58035
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/fencedCode.js
58125
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/fencedCode.js
58036
58126
  const reCodeFence = /^`{3,}(?!.*`)|^~{3,}/;
58037
58127
  const fenceCharOf = (char) => char === "`" || char === "~" ? char : void 0;
58038
58128
  /** The fenced-code block start: three or more backticks or tildes. */
@@ -58056,7 +58146,7 @@ const fencedCodeStart = {
58056
58146
  }
58057
58147
  };
58058
58148
  //#endregion
58059
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/patterns.js
58149
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/patterns.js
58060
58150
  const stickyCache = /* @__PURE__ */ new WeakMap();
58061
58151
  const globalCache = /* @__PURE__ */ new WeakMap();
58062
58152
  const clone = (pattern, flag, dropCaret) => {
@@ -58080,7 +58170,7 @@ const globalOf = (pattern) => {
58080
58170
  return made;
58081
58171
  };
58082
58172
  //#endregion
58083
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/references.js
58173
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/references.js
58084
58174
  const ESCAPABLE = "[!\"#$%&'()*+,./:;<=>?@[\\\\\\]^_`{|}~-]";
58085
58175
  const ESCAPED_CHAR = `\\\\${ESCAPABLE}`;
58086
58176
  const reLinkTitle = new RegExp(`^(?:"(${ESCAPED_CHAR}|\\\\[^\\\\]|[^\\\\"\\x00])*"|'(${ESCAPED_CHAR}|\\\\[^\\\\]|[^\\\\'\\x00])*'|\\((${ESCAPED_CHAR}|\\\\[^\\\\]|[^\\\\()\\x00])*\\))`);
@@ -58254,7 +58344,7 @@ const parseReference = (text) => {
58254
58344
  };
58255
58345
  };
58256
58346
  //#endregion
58257
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/footnoteDefinition.js
58347
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/footnoteDefinition.js
58258
58348
  /**
58259
58349
  * `_scan_footnote_definition` from `src/scanners.re`:
58260
58350
  *
@@ -58331,7 +58421,7 @@ const footnoteDefinitionStart = {
58331
58421
  }
58332
58422
  };
58333
58423
  //#endregion
58334
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/indentedCode.js
58424
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/indentedCode.js
58335
58425
  /** The indented-code block start: four columns of indentation. */
58336
58426
  const indentedCodeStart = {
58337
58427
  name: "indentedCode",
@@ -58345,7 +58435,7 @@ const indentedCodeStart = {
58345
58435
  }
58346
58436
  };
58347
58437
  //#endregion
58348
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/segments.js
58438
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/segments.js
58349
58439
  /**
58350
58440
  * The absolute source offset of `textIndex` within a segmented content run.
58351
58441
  *
@@ -58379,7 +58469,7 @@ const sliceWithSegments = (segments, from, to) => {
58379
58469
  return sliced;
58380
58470
  };
58381
58471
  //#endregion
58382
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/linkReferenceDefinition.js
58472
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/linkReferenceDefinition.js
58383
58473
  const C_OPEN_BRACKET$1 = 91;
58384
58474
  /**
58385
58475
  * Split every leading link reference definition out of `block`, inserting one
@@ -58444,7 +58534,7 @@ const definitionConstruct = {
58444
58534
  }
58445
58535
  };
58446
58536
  //#endregion
58447
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/list.js
58537
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/list.js
58448
58538
  const reBulletListMarker = /^[*+-]/;
58449
58539
  const reOrderedListMarker = /^(\d{1,9})([.)])/;
58450
58540
  const reNonSpace$1 = /[^ \t\f\v\r\n]/;
@@ -58597,7 +58687,7 @@ const listItemStart = {
58597
58687
  }
58598
58688
  };
58599
58689
  //#endregion
58600
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/paragraph.js
58690
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/paragraph.js
58601
58691
  /** Paragraph: absorbs lines until a blank one, and contains nothing. */
58602
58692
  const paragraphConstruct = {
58603
58693
  type: "paragraph",
@@ -58619,7 +58709,7 @@ const paragraphConstruct = {
58619
58709
  }
58620
58710
  };
58621
58711
  //#endregion
58622
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/setextHeading.js
58712
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/setextHeading.js
58623
58713
  const reSetextHeadingLine = /^(?:=+|-+)[ \t]*$/;
58624
58714
  /** The setext heading block start: a run of `=` or `-` under a paragraph. */
58625
58715
  const setextHeadingStart = {
@@ -58639,7 +58729,7 @@ const setextHeadingStart = {
58639
58729
  }
58640
58730
  };
58641
58731
  //#endregion
58642
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/table.js
58732
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/table.js
58643
58733
  /**
58644
58734
  * Upstream's `MAX_AUTOCOMPLETED_CELLS`: the ceiling on cells the parser
58645
58735
  * invents to pad short rows, which is what stops a wide header followed by a
@@ -59010,7 +59100,7 @@ const tableCellConstruct = {
59010
59100
  }
59011
59101
  };
59012
59102
  //#endregion
59013
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/taskListItem.js
59103
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/taskListItem.js
59014
59104
  /**
59015
59105
  * `_scan_tasklist`, as the generated scanner accepts it.
59016
59106
  *
@@ -59044,7 +59134,7 @@ const taskListItemStart = {
59044
59134
  }
59045
59135
  };
59046
59136
  //#endregion
59047
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blocks/thematicBreak.js
59137
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blocks/thematicBreak.js
59048
59138
  const reThematicBreak = /^(?:\*[ \t]*){3,}$|^(?:_[ \t]*){3,}$|^(?:-[ \t]*){3,}$/;
59049
59139
  const markerCharOf$1 = (char) => char === "-" || char === "_" || char === "*" ? char : void 0;
59050
59140
  /** Thematic break: one line, no children. */
@@ -59075,7 +59165,7 @@ const thematicBreakStart = {
59075
59165
  }
59076
59166
  };
59077
59167
  //#endregion
59078
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blockRegistry.js
59168
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blockRegistry.js
59079
59169
  const constructTable = (constructs) => new Map(constructs.map((construct) => [construct.type, construct]));
59080
59170
  const commonmarkDialect$1 = {
59081
59171
  constructs: constructTable([
@@ -59147,7 +59237,7 @@ const blockDialect = (dialect) => {
59147
59237
  return found;
59148
59238
  };
59149
59239
  //#endregion
59150
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/lineIndex.js
59240
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/lineIndex.js
59151
59241
  /**
59152
59242
  * A precomputed index of line-start offsets over a fixed source text,
59153
59243
  * answering `positionAt(offset)` in `O(log n)` via binary search rather than
@@ -59221,7 +59311,7 @@ var LineIndex = class LineIndex {
59221
59311
  }
59222
59312
  };
59223
59313
  //#endregion
59224
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlineNode.js
59314
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlineNode.js
59225
59315
  /** Open a node with no links. */
59226
59316
  const makeInlineNode = (type, start, end, value = "") => ({
59227
59317
  type,
@@ -59273,7 +59363,7 @@ const childrenOf = (node) => {
59273
59363
  return children;
59274
59364
  };
59275
59365
  //#endregion
59276
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlines/emphasis.js
59366
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlines/emphasis.js
59277
59367
  const C_ASTERISK$1 = 42;
59278
59368
  const C_UNDERSCORE$1 = 95;
59279
59369
  const rePunctuation = /^[!"#$%&'()*+,\-./:;<=>?@[\]\\^_`{|}~\p{P}\p{S}]/u;
@@ -59350,7 +59440,7 @@ const emphasisConstruct = {
59350
59440
  parse: (scanner) => handleDelim(scanner, scanner.peek())
59351
59441
  };
59352
59442
  //#endregion
59353
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlines/strikethrough.js
59443
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlines/strikethrough.js
59354
59444
  /**
59355
59445
  * Consume a `~` run as literal text and, when it is a viable one- or
59356
59446
  * two-tilde run, push it onto the shared delimiter stack.
@@ -59424,7 +59514,7 @@ const strikethroughConstruct = {
59424
59514
  parse: (scanner) => handleTilde(scanner)
59425
59515
  };
59426
59516
  //#endregion
59427
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlines/autolink.js
59517
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlines/autolink.js
59428
59518
  const C_LESSTHAN$1 = 60;
59429
59519
  const reEmailAutolink = /^<([a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)>/;
59430
59520
  const reAutolink = /^<[A-Za-z][A-Za-z0-9.+-]{1,31}:[^<>\0- ]*>/i;
@@ -59456,7 +59546,7 @@ const autolinkConstruct = {
59456
59546
  }
59457
59547
  };
59458
59548
  //#endregion
59459
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlines/autolinkLiteral.js
59549
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlines/autolinkLiteral.js
59460
59550
  const C_LOWER_W = 119;
59461
59551
  const C_COLON = 58;
59462
59552
  /** `cmark_isspace`: ASCII only, deliberately — upstream's URL scan uses it. */
@@ -59826,7 +59916,7 @@ const linkifyEmails = (root) => {
59826
59916
  }
59827
59917
  };
59828
59918
  //#endregion
59829
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlines/codeSpan.js
59919
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlines/codeSpan.js
59830
59920
  const C_BACKTICK$1 = 96;
59831
59921
  const reTicksHere = /^`+/;
59832
59922
  const reNewline = /\n/gm;
@@ -59854,7 +59944,7 @@ const codeSpanConstruct = {
59854
59944
  }
59855
59945
  };
59856
59946
  //#endregion
59857
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlines/entity.js
59947
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlines/entity.js
59858
59948
  const C_AMPERSAND = 38;
59859
59949
  const reEntityHere = new RegExp(`^${ENTITY}`, "i");
59860
59950
  /** A named, decimal or hexadecimal character reference. */
@@ -59870,7 +59960,7 @@ const entityConstruct = {
59870
59960
  }
59871
59961
  };
59872
59962
  //#endregion
59873
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlines/escape.js
59963
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlines/escape.js
59874
59964
  const C_BACKSLASH = 92;
59875
59965
  const C_NEWLINE$1 = 10;
59876
59966
  const reEscapable = new RegExp(`^${ESCAPABLE$1}`);
@@ -59899,7 +59989,7 @@ const escapeConstruct = {
59899
59989
  }
59900
59990
  };
59901
59991
  //#endregion
59902
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlines/link.js
59992
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlines/link.js
59903
59993
  const C_BANG = 33;
59904
59994
  const C_CARET$1 = 94;
59905
59995
  const C_OPEN_BRACKET = 91;
@@ -60106,7 +60196,7 @@ const makeLinkCloseConstruct = (onNoMatch) => ({
60106
60196
  /** `]` — closes a link or image, or stays literal. The CommonMark spelling. */
60107
60197
  const linkCloseConstruct = makeLinkCloseConstruct();
60108
60198
  //#endregion
60109
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlines/footnoteReference.js
60199
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlines/footnoteReference.js
60110
60200
  const C_CARET = 94;
60111
60201
  /**
60112
60202
  * Whether the bracket that just closed looks like `[^...]` with something
@@ -60163,7 +60253,7 @@ const gfmLinkCloseConstruct = makeLinkCloseConstruct(footnoteReferenceFallback);
60163
60253
  */
60164
60254
  const gfmImageOpenConstruct = makeImageOpenConstruct(false);
60165
60255
  //#endregion
60166
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlines/lineBreak.js
60256
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlines/lineBreak.js
60167
60257
  const C_NEWLINE = 10;
60168
60258
  const reInitialSpace = /^ */;
60169
60259
  /** A soft or hard line break. */
@@ -60184,7 +60274,7 @@ const lineBreakConstruct = {
60184
60274
  }
60185
60275
  };
60186
60276
  //#endregion
60187
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlines/rawHtml.js
60277
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlines/rawHtml.js
60188
60278
  const C_LESSTHAN = 60;
60189
60279
  /** The raw-HTML forms that scan forward for a fixed closing sequence. */
60190
60280
  const UNTERMINATED_FORMS = [
@@ -60206,7 +60296,7 @@ const rawHtmlConstruct = {
60206
60296
  }
60207
60297
  };
60208
60298
  //#endregion
60209
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlines/text.js
60299
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlines/text.js
60210
60300
  const reMain = /^[^\n`[\]\\!<&*_'"]+/;
60211
60301
  const reMainGfm = /^[^\n`[\]\\!<&*_'"~w:]+/;
60212
60302
  /** Consume a run of ordinary characters, stopping before any construct's. */
@@ -60226,7 +60316,7 @@ const textConstruct = runConstruct("text", reMain);
60226
60316
  /** Ordinary text under `gfm`, which has three more characters to yield to. */
60227
60317
  const gfmTextConstruct = runConstruct("text", reMainGfm);
60228
60318
  //#endregion
60229
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlineRegistry.js
60319
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlineRegistry.js
60230
60320
  const triggerTable = (constructs) => {
60231
60321
  const table = /* @__PURE__ */ new Map();
60232
60322
  for (const construct of constructs) for (const trigger of construct.triggers) {
@@ -60279,7 +60369,7 @@ const inlineDialect = (dialect) => {
60279
60369
  return found;
60280
60370
  };
60281
60371
  //#endregion
60282
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/inlineParser.js
60372
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/inlineParser.js
60283
60373
  const C_UNDERSCORE = 95;
60284
60374
  const C_ASTERISK = 42;
60285
60375
  const reTrailingSpaces = / +$/;
@@ -60673,7 +60763,7 @@ var InlineParser = class {
60673
60763
  */
60674
60764
  const parseInlines = (source, refmap, position, dialect = "commonmark", footnoteLabels = /* @__PURE__ */ new Set()) => new InlineParser(source, inlineDialect(dialect), position, refmap, footnoteLabels).parse();
60675
60765
  //#endregion
60676
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/rawInline.js
60766
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/rawInline.js
60677
60767
  const reWhitespace = /\s/;
60678
60768
  const reCmarkSpace = /[ \t\n\r]/;
60679
60769
  /**
@@ -60728,7 +60818,7 @@ const prepareInline = (block, position, refmap, dialect = "commonmark", footnote
60728
60818
  };
60729
60819
  };
60730
60820
  //#endregion
60731
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/blockParser.js
60821
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/blockParser.js
60732
60822
  /** Upstream's cheap pre-filter: a line that cannot start any block. */
60733
60823
  const reMaybeSpecial = /^[#`~*+_=<>0-9-]/;
60734
60824
  var BlockParser = class {
@@ -61135,7 +61225,7 @@ var BlockParser = class {
61135
61225
  */
61136
61226
  const parseBlocks = (text, dialect = "commonmark", frontmatter = false) => new BlockParser(text, blockDialect(dialect), dialect, frontmatter).parse();
61137
61227
  //#endregion
61138
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/phrasing.js
61228
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/phrasing.js
61139
61229
  const EMPTY_REFMAP = /* @__PURE__ */ new Map();
61140
61230
  const EMPTY_FOOTNOTE_LABELS = /* @__PURE__ */ new Set();
61141
61231
  /**
@@ -61184,7 +61274,7 @@ const parsePhrasingText = (text, dialect) => {
61184
61274
  }, EMPTY_REFMAP, positionOf, dialect, EMPTY_FOOTNOTE_LABELS);
61185
61275
  };
61186
61276
  //#endregion
61187
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/internal/stringify.js
61277
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/internal/stringify.js
61188
61278
  const FLOW_CONTEXT = {
61189
61279
  singleLine: false,
61190
61280
  inTable: false,
@@ -61880,7 +61970,7 @@ const stringifyTree = (root) => {
61880
61970
  return body === "" ? "" : `${body}\n`;
61881
61971
  };
61882
61972
  //#endregion
61883
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/Markdown.js
61973
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/Markdown.js
61884
61974
  /**
61885
61975
  * The markdown dialects the parser can be pointed at. `"gfm"` — CommonMark
61886
61976
  * 0.31.2 plus the GitHub extensions (tables, strikethrough, autolink
@@ -62256,7 +62346,7 @@ var Markdown = class Markdown {
62256
62346
  static MarkdownFromString = Markdown.fromString();
62257
62347
  };
62258
62348
  //#endregion
62259
- //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._fef2d84f4989873ee8536485b8b3c1ec/node_modules/@effected/markdown/Mdast.js
62349
+ //#region ../../node_modules/.pnpm/@effected+markdown@0.10.0_@effected+jsonc@0.11.0_effect@4.0.0-rc.115__@effected+toml@0._4ffc6d74fdaa440b34a57ec5985e76d9/node_modules/@effected/markdown/Mdast.js
62260
62350
  /**
62261
62351
  * The remark-ecosystem interop boundary: projection between this package's
62262
62352
  * node classes and plain mdast JSON.