@voxgig/sdkgen 4.14.0 → 4.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bin/voxgig-sdkgen CHANGED
@@ -8,7 +8,7 @@ const { Shape, One, Skip } = require('shape')
8
8
 
9
9
  const { SdkGen } = require('../dist/sdkgen.js')
10
10
 
11
- const VERSION = '4.14.0'
11
+ const VERSION = '4.15.0'
12
12
  const KONSOLE = console
13
13
 
14
14
 
@@ -20,6 +20,15 @@ const packageMeta_1 = require("../helpers/packageMeta");
20
20
  // deliberate act by someone who can see the result, which is what a release
21
21
  // should be.
22
22
  //
23
+ // IT TAGS WHAT IT PUBLISHED. A release that reaches the registry but leaves
24
+ // no ref behind cannot be answered later: `@voxgig-sdk/github-sdk@0.0.3` went
25
+ // out by dispatch and the repository had only v0.0.1 and v0.0.2, so nothing
26
+ // in git said which tree the published tarball came from, and nothing
27
+ // downstream could pin the SDK by tag. npm's trusted publisher is bound to
28
+ // ONE workflow file, so the tag has to be cut inside this one -- and a ref
29
+ // pushed with GITHUB_TOKEN starts no further workflow run, so it cannot be
30
+ // delegated to a tag-triggered publisher either.
31
+ //
23
32
  // THE WORKFLOW FILE NAME IS PART OF THE TRUST CONFIGURATION. npm binds a
24
33
  // trusted publisher to the repository AND the workflow filename, so renaming
25
34
  // this file silently breaks publishing until the npm side is updated to
@@ -55,7 +64,7 @@ const PublishWorkflow = (0, jostraca_1.cmp)(function PublishWorkflow(props) {
55
64
  (0, jostraca_1.Folder)({ name: 'workflows' }, () => {
56
65
  for (const target of npmTargets) {
57
66
  (0, jostraca_1.File)({ name: `publish-${target.name}.yml` }, () => {
58
- (0, jostraca_1.Content)(publishWorkflow(model, target));
67
+ (0, jostraca_1.Content)(publishWorkflow(model, target, npmTargets));
59
68
  });
60
69
  }
61
70
  });
@@ -71,8 +80,36 @@ const PublishWorkflow = (0, jostraca_1.cmp)(function PublishWorkflow(props) {
71
80
  });
72
81
  });
73
82
  exports.PublishWorkflow = PublishWorkflow;
74
- function publishWorkflow(model, target) {
83
+ // WHICH TAG A TARGET'S RELEASE CARRIES.
84
+ //
85
+ // A repo here publishes more than one npm package -- `ts/` and `js/` are
86
+ // separate packages from separate folders, on a lockstep version -- so a bare
87
+ // `v<version>` cut by each would be two targets racing for one tag name, and
88
+ // the loser would fail a release that had already published.
89
+ //
90
+ // The convention is the toolchain's own. @voxgig/apidef tags `v<version>` for
91
+ // its npm package and `go/v<version>` for its Go module; the generated root
92
+ // Makefile tags `<target>/v<version>` for every port. So: the ecosystem's
93
+ // PRIMARY npm target owns the bare tag, and any other npm target is prefixed
94
+ // with its own name.
95
+ //
96
+ // Resolved by comparing package names rather than hardcoding 'ts', so that a
97
+ // project that renamed or replaced its primary target still gets one bare tag
98
+ // -- and if none matches, every target is prefixed, which is wrong in no way
99
+ // that loses a release.
100
+ function isPrimaryNpm(model, target, npmTargets) {
101
+ if (1 === npmTargets.length) {
102
+ return true;
103
+ }
104
+ return (0, packageMeta_1.packageName)(model, target.name) === (0, packageMeta_1.packageName)(model, 'npm');
105
+ }
106
+ function releaseTag(model, target, npmTargets) {
107
+ return isPrimaryNpm(model, target, npmTargets) ?
108
+ 'v$VERSION' : `${target.name}/v$VERSION`;
109
+ }
110
+ function publishWorkflow(model, target, npmTargets) {
75
111
  const name = target.name;
112
+ const tag = releaseTag(model, target, npmTargets);
76
113
  // BY TARGET, NOT BY ECOSYSTEM. `packageName(model, 'npm')` resolves the
77
114
  // ecosystem's PRIMARY target — ts — so every npm target's workflow named
78
115
  // the ts package: publish-js.yml claimed `@voxgig-sdk/github-sdk` while
@@ -103,14 +140,25 @@ function publishWorkflow(model, target) {
103
140
  # version by two mechanisms. Releasing is an act someone performs and
104
141
  # watches.
105
142
  #
106
- # TWO JOBS, BECAUSE THEY NEED DIFFERENT PRIVILEGES. A dependency lifecycle
143
+ # THREE JOBS, BECAUSE THEY NEED DIFFERENT PRIVILEGES. A dependency lifecycle
107
144
  # script can ask the runner for any OIDC token its job is permitted to mint,
108
145
  # so a job that both installs dependencies and holds \`id-token: write\` can be
109
- # made to publish before its own gates finish.
146
+ # made to publish before its own gates finish. The same reasoning keeps
147
+ # \`contents: write\` out of both: checkout persists its token into the git
148
+ # config for the whole job.
110
149
  #
111
150
  # verify contents: read, nothing else. Installs, builds and tests.
112
151
  # publish id-token: write. Installs no dependencies and runs no project
113
152
  # code; it packs what is already in the tree.
153
+ # tag contents: write. Runs git and nothing else.
154
+ #
155
+ # THE TAG IS CUT HERE BECAUSE IT CANNOT BE CUT ANYWHERE ELSE. npm binds the
156
+ # trusted publisher to ONE workflow file, so whatever must accompany a publish
157
+ # belongs inside it; and a ref pushed with GITHUB_TOKEN starts no further
158
+ # workflow run, so "tag, and let a tag-triggered publisher fire" does not
159
+ # work. A release that publishes but leaves no ref cannot be answered later:
160
+ # nothing in git says which tree the tarball came from, and nothing
161
+ # downstream can pin this SDK by tag.
114
162
 
115
163
  name: publish-${name}
116
164
 
@@ -222,6 +270,55 @@ jobs:
222
270
  if: steps.registry.outputs.published == 'false'
223
271
  working-directory: ${name}
224
272
  run: npm publish --access public
273
+
274
+ # Runs git and nothing else. No install, no project code — so the
275
+ # repository-write credential is never in scope while third-party code runs.
276
+ #
277
+ # It runs even when the publish step SKIPPED because the version was already
278
+ # on the registry: that is what makes re-dispatching after a partial release
279
+ # finish the job rather than leave a published version permanently untagged.
280
+ tag:
281
+ name: tag
282
+ needs: [verify, publish]
283
+ runs-on: ubuntu-latest
284
+ timeout-minutes: 10
285
+
286
+ # The ONLY job that may write to the repository, and the only one that
287
+ # runs no project code.
288
+ permissions:
289
+ contents: write
290
+
291
+ steps:
292
+ - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
293
+ with:
294
+ # Tags are needed to tell "already tagged" from "not tagged yet".
295
+ fetch-depth: 0
296
+
297
+ - name: Tag the release
298
+ env:
299
+ VERSION: \${{ needs.verify.outputs.version }}
300
+ run: |
301
+ set -euo pipefail
302
+ TAG="${tag}"
303
+ HEAD_SHA="\$(git rev-parse HEAD)"
304
+
305
+ # EXISTENCE IS NOT ENOUGH. \`--verify\` only asks whether the name
306
+ # resolves; a tag created between the verify job's guard and this
307
+ # checkout could point anywhere. Treating that as idempotent would
308
+ # leave a green run with a published artifact from THIS commit and a
309
+ # release tag on a different one.
310
+ AT="\$(git rev-parse -q --verify "refs/tags/\$TAG^{commit}" 2>/dev/null || true)"
311
+ if [ -n "\$AT" ]; then
312
+ if [ "\$AT" != "\$HEAD_SHA" ]; then
313
+ echo "::error::\$TAG exists on \$AT, not this commit (\$HEAD_SHA)"
314
+ exit 1
315
+ fi
316
+ echo "\$TAG already points here — nothing to do" >> "\$GITHUB_STEP_SUMMARY"
317
+ exit 0
318
+ fi
319
+ git tag "\$TAG"
320
+ git push origin "refs/tags/\$TAG"
321
+ echo "pushed \$TAG" >> "\$GITHUB_STEP_SUMMARY"
225
322
  `;
226
323
  }
227
324
  function publishingDoc(model, targets, repoUrl) {
@@ -236,6 +333,12 @@ function publishingDoc(model, targets, repoUrl) {
236
333
  const owner = '' === repo ? '<owner>/<repo>' : repo;
237
334
  const rows = targets.map((t) => `| \`${t.name}/\` | ${(0, packageMeta_1.packageName)(model, t.name)} | ` +
238
335
  `\`.github/workflows/publish-${t.name}.yml\` |`).join('\n');
336
+ // WHICH TAG EACH TARGET CUTS. Worth a table rather than a sentence: the
337
+ // primary npm target owns the bare `v<version>` and every other one is
338
+ // prefixed, so with more than one npm target the answer differs per row.
339
+ const tagRows = '| target | tag |\n|---|---|\n' + targets.map((t) => `| \`${t.name}/\` | \`` +
340
+ releaseTag(model, t, targets).replace('$VERSION', '<version>') +
341
+ '\` |').join('\n');
239
342
  return `# Publishing
240
343
 
241
344
  GENERATED by @voxgig/sdkgen — regenerated on every \`npm run generate\`.
@@ -273,6 +376,26 @@ It is a DISPATCH rather than a tag push because the root \`Makefile\` also
273
376
  publishes, with a vault-injected token. A tag-triggered workflow racing it
274
377
  would publish one version by two mechanisms.
275
378
 
379
+ ## The release is tagged for you
380
+
381
+ The workflow cuts the git tag itself, after a successful publish, so a
382
+ released version always has a ref naming the tree it came from. Nothing to
383
+ do by hand.
384
+
385
+ ${tagRows}
386
+
387
+ Re-dispatching a version that is already on the registry skips the publish
388
+ and still cuts a missing tag, so a partial release is finished by running it
389
+ again rather than repaired by hand. If the tag already exists on a DIFFERENT
390
+ commit the run fails rather than moving it: that combination means the
391
+ published artifact and the tag disagree, and only a person should decide
392
+ which is wrong.
393
+
394
+ The tag job is the only one that may write to the repository, and it runs
395
+ git and nothing else. \`contents: write\` never shares a job with project
396
+ code, for the same reason \`id-token: write\` does not — \`checkout\` persists
397
+ its token into the git config for the whole job.
398
+
276
399
  ## One-time set-up
277
400
 
278
401
  npm has to be told which repository and which workflow file may publish this
@@ -299,7 +422,7 @@ package goes out by hand from an authenticated machine:
299
422
 
300
423
  After that, register the publisher and every later release is a dispatch.
301
424
 
302
- ## Why the workflow has two jobs
425
+ ## Why the workflow has three jobs
303
426
 
304
427
  A dependency lifecycle script can ask the runner for any OIDC token the job
305
428
  it runs in is permitted to mint. A job that both installs dependencies and
@@ -307,8 +430,14 @@ holds \`id-token: write\` can therefore be made to publish as this package
307
430
  before its own gates finish.
308
431
 
309
432
  So \`verify\` installs, builds and tests under \`contents: read\` and holds no
310
- credential, and \`publish\` holds \`id-token: write\` while installing nothing
311
- and running no project code.
433
+ credential; \`publish\` holds \`id-token: write\` while installing nothing and
434
+ running no project code; and \`tag\` holds \`contents: write\` while running
435
+ git and nothing else.
436
+
437
+ The tag cannot be moved out into its own workflow: npm binds the trusted
438
+ publisher to ONE workflow filename, so anything that must accompany a publish
439
+ has to live inside this file. Nor can it be left to a tag-triggered
440
+ publisher — a ref pushed with \`GITHUB_TOKEN\` starts no further workflow run.
312
441
  `;
313
442
  }
314
443
  //# sourceMappingURL=PublishWorkflow.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"PublishWorkflow.js","sourceRoot":"","sources":["../../src/cmp/PublishWorkflow.ts"],"names":[],"mappings":";AAAA,qDAAqD;;;AAErD,uCAA2D;AAE3D,oCAGiB;AAEjB,wDAA8E;AAG9E,+DAA+D;AAC/D,EAAE;AACF,wEAAwE;AACxE,2EAA2E;AAC3E,yEAAyE;AACzE,6EAA6E;AAC7E,2EAA2E;AAC3E,mBAAmB;AACnB,EAAE;AACF,4EAA4E;AAC5E,4EAA4E;AAC5E,sEAAsE;AACtE,4EAA4E;AAC5E,aAAa;AACb,EAAE;AACF,yEAAyE;AACzE,6EAA6E;AAC7E,wEAAwE;AACxE,uEAAuE;AACvE,4EAA4E;AAC5E,EAAE;AACF,0EAA0E;AAC1E,yEAAyE;AACzE,wEAAwE;AACxE,8CAA8C;AAC9C,MAAM,eAAe,GAAG,IAAA,cAAG,EAAC,SAAS,eAAe,CAAC,KAAU;IAC7D,MAAM,EAAE,IAAI,EAAE,GAAG,KAAK,CAAA;IACtB,MAAM,EAAE,KAAK,EAAE,GAAG,IAAI,CAAA;IAEtB,MAAM,SAAS,GAAG,IAAA,oBAAY,EAAC,KAAK,EAAE,QAAQ,WAAG,SAAS,CAAC,IAAI,EAAE,CAAA;IAEjE,uEAAuE;IACvE,wEAAwE;IACxE,0EAA0E;IAC1E,+CAA+C;IAC/C,MAAM,UAAU,GAAU,EAAE,CAAA;IAC5B,IAAA,eAAI,EAAC,SAAS,EAAE,CAAC,CAAM,EAAE,EAAE;QACzB,IAAI,KAAK,KAAK,CAAC,CAAC,MAAM,EAAE,CAAC;YACvB,OAAM;QACR,CAAC;QACD,IAAI,KAAK,KAAK,CAAC,CAAC,CAAC,OAAO,EAAE,QAAQ,EAAE,IAAI,IAAI,EAAE,CAAC,EAAE,CAAC;YAChD,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;QACpB,CAAC;IACH,CAAC,CAAC,CAAA;IAEF,IAAI,CAAC,KAAK,UAAU,CAAC,MAAM,EAAE,CAAC;QAC5B,OAAM;IACR,CAAC;IAED,MAAM,EAAE,OAAO,EAAE,GAAG,IAAA,sBAAQ,EAAC,KAAK,CAAC,CAAA;IAEnC,IAAA,iBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,EAAE,GAAG,EAAE;QAC/B,IAAA,iBAAM,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,EAAE,GAAG,EAAE;YACjC,KAAK,MAAM,MAAM,IAAI,UAAU,EAAE,CAAC;gBAChC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,WAAW,MAAM,CAAC,IAAI,MAAM,EAAE,EAAE,GAAG,EAAE;oBAChD,IAAA,kBAAO,EAAC,eAAe,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC,CAAA;gBACzC,CAAC,CAAC,CAAA;YACJ,CAAC;QACH,CAAC,CAAC,CAAA;IACJ,CAAC,CAAC,CAAA;IAEF,IAAA,iBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,GAAG,EAAE;QAC5B,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,eAAe,EAAE,EAAE,GAAG,EAAE;YACnC,IAAA,kBAAO,EAAC,aAAa,CAAC,KAAK,EAAE,UAAU,EAAE,OAAO,CAAC,CAAC,CAAA;QACpD,CAAC,CAAC,CAAA;IACJ,CAAC,CAAC,CAAA;IAEF,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC;QACZ,KAAK,EAAE,2BAA2B;QAClC,IAAI,EAAE,eAAe,GAAG,UAAU,CAAC,GAAG,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC;KACrE,CAAC,CAAA;AACJ,CAAC,CAAC,CAAA;QA4PA,eAAe;AAzPjB,SAAS,eAAe,CAAC,KAAU,EAAE,MAAW;IAC9C,MAAM,IAAI,GAAG,MAAM,CAAC,IAAI,CAAA;IACxB,wEAAwE;IACxE,yEAAyE;IACzE,wEAAwE;IACxE,2EAA2E;IAC3E,wEAAwE;IACxE,yEAAyE;IACzE,kBAAkB;IAClB,MAAM,GAAG,GAAG,IAAA,yBAAW,EAAC,KAAK,EAAE,IAAI,CAAC,CAAA;IAEpC,OAAO;;cAEK,GAAG,WAAW,IAAI;;;;;;;uBAOT,GAAG;;uBAEH,IAAI;;;;;;;;;;;;;;;;;;;;gBAoBX,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BAgDS,IAAI;;;;kEAIiC,IAAI;;kBAEpD,GAAG;;;6BAGQ,IAAI;;;6BAGJ,IAAI;;;6BAGJ,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAoCR,GAAG;;;;;;;;;6BASC,IAAI;;CAEhC,CAAA;AACD,CAAC;AAGD,SAAS,aAAa,CAAC,KAAU,EAAE,OAAc,EAAE,OAAe;IAChE,2EAA2E;IAC3E,6CAA6C;IAC7C,MAAM,GAAG,GAAG,IAAA,yBAAW,EAAC,KAAK,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC/C,MAAM,IAAI,GAAG,MAAM,CAAC,OAAO,IAAI,EAAE,CAAC;SAC/B,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC;SACrB,OAAO,CAAC,wCAAwC,EAAE,EAAE,CAAC;SACrD,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC;SACrB,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,CAAA;IACtB,MAAM,KAAK,GAAG,EAAE,KAAK,IAAI,CAAC,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,IAAI,CAAA;IAEnD,MAAM,IAAI,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC,CAAM,EAAE,EAAE,CAClC,OAAO,CAAC,CAAC,IAAI,SAAS,IAAA,yBAAW,EAAC,KAAK,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK;QACrD,+BAA+B,CAAC,CAAC,IAAI,UAAU,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;IAE7D,OAAO;;;;;;;;;;EAUP,IAAI;;;;sCAIgC,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI;;;;;;;;;4BASzB,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI;;;;;iCAKV,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI;;;;;;;;;;;;;;;uBAezB,GAAG;qBACL,KAAK;uBACH,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI;;;wBAGd,GAAG;qBACN,GAAG;;;YAGZ,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI;;;;;;;;;;;;;;;;;;;;;CAqB1B,CAAA;AACD,CAAC"}
1
+ {"version":3,"file":"PublishWorkflow.js","sourceRoot":"","sources":["../../src/cmp/PublishWorkflow.ts"],"names":[],"mappings":";AAAA,qDAAqD;;;AAErD,uCAA2D;AAE3D,oCAGiB;AAEjB,wDAA8E;AAG9E,+DAA+D;AAC/D,EAAE;AACF,wEAAwE;AACxE,2EAA2E;AAC3E,yEAAyE;AACzE,6EAA6E;AAC7E,2EAA2E;AAC3E,mBAAmB;AACnB,EAAE;AACF,4EAA4E;AAC5E,4EAA4E;AAC5E,sEAAsE;AACtE,4EAA4E;AAC5E,aAAa;AACb,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,4EAA4E;AAC5E,sEAAsE;AACtE,2EAA2E;AAC3E,2EAA2E;AAC3E,2EAA2E;AAC3E,iDAAiD;AACjD,EAAE;AACF,yEAAyE;AACzE,6EAA6E;AAC7E,wEAAwE;AACxE,uEAAuE;AACvE,4EAA4E;AAC5E,EAAE;AACF,0EAA0E;AAC1E,yEAAyE;AACzE,wEAAwE;AACxE,8CAA8C;AAC9C,MAAM,eAAe,GAAG,IAAA,cAAG,EAAC,SAAS,eAAe,CAAC,KAAU;IAC7D,MAAM,EAAE,IAAI,EAAE,GAAG,KAAK,CAAA;IACtB,MAAM,EAAE,KAAK,EAAE,GAAG,IAAI,CAAA;IAEtB,MAAM,SAAS,GAAG,IAAA,oBAAY,EAAC,KAAK,EAAE,QAAQ,WAAG,SAAS,CAAC,IAAI,EAAE,CAAA;IAEjE,uEAAuE;IACvE,wEAAwE;IACxE,0EAA0E;IAC1E,+CAA+C;IAC/C,MAAM,UAAU,GAAU,EAAE,CAAA;IAC5B,IAAA,eAAI,EAAC,SAAS,EAAE,CAAC,CAAM,EAAE,EAAE;QACzB,IAAI,KAAK,KAAK,CAAC,CAAC,MAAM,EAAE,CAAC;YACvB,OAAM;QACR,CAAC;QACD,IAAI,KAAK,KAAK,CAAC,CAAC,CAAC,OAAO,EAAE,QAAQ,EAAE,IAAI,IAAI,EAAE,CAAC,EAAE,CAAC;YAChD,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;QACpB,CAAC;IACH,CAAC,CAAC,CAAA;IAEF,IAAI,CAAC,KAAK,UAAU,CAAC,MAAM,EAAE,CAAC;QAC5B,OAAM;IACR,CAAC;IAED,MAAM,EAAE,OAAO,EAAE,GAAG,IAAA,sBAAQ,EAAC,KAAK,CAAC,CAAA;IAEnC,IAAA,iBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,EAAE,GAAG,EAAE;QAC/B,IAAA,iBAAM,EAAC,EAAE,IAAI,EAAE,WAAW,EAAE,EAAE,GAAG,EAAE;YACjC,KAAK,MAAM,MAAM,IAAI,UAAU,EAAE,CAAC;gBAChC,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,WAAW,MAAM,CAAC,IAAI,MAAM,EAAE,EAAE,GAAG,EAAE;oBAChD,IAAA,kBAAO,EAAC,eAAe,CAAC,KAAK,EAAE,MAAM,EAAE,UAAU,CAAC,CAAC,CAAA;gBACrD,CAAC,CAAC,CAAA;YACJ,CAAC;QACH,CAAC,CAAC,CAAA;IACJ,CAAC,CAAC,CAAA;IAEF,IAAA,iBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,GAAG,EAAE;QAC5B,IAAA,eAAI,EAAC,EAAE,IAAI,EAAE,eAAe,EAAE,EAAE,GAAG,EAAE;YACnC,IAAA,kBAAO,EAAC,aAAa,CAAC,KAAK,EAAE,UAAU,EAAE,OAAO,CAAC,CAAC,CAAA;QACpD,CAAC,CAAC,CAAA;IACJ,CAAC,CAAC,CAAA;IAEF,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC;QACZ,KAAK,EAAE,2BAA2B;QAClC,IAAI,EAAE,eAAe,GAAG,UAAU,CAAC,GAAG,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC;KACrE,CAAC,CAAA;AACJ,CAAC,CAAC,CAAA;QA0XA,eAAe;AAvXjB,wCAAwC;AACxC,EAAE;AACF,yEAAyE;AACzE,8EAA8E;AAC9E,6EAA6E;AAC7E,6DAA6D;AAC7D,EAAE;AACF,8EAA8E;AAC9E,4EAA4E;AAC5E,0EAA0E;AAC1E,6EAA6E;AAC7E,qBAAqB;AACrB,EAAE;AACF,6EAA6E;AAC7E,8EAA8E;AAC9E,6EAA6E;AAC7E,wBAAwB;AACxB,SAAS,YAAY,CAAC,KAAU,EAAE,MAAW,EAAE,UAAiB;IAC9D,IAAI,CAAC,KAAK,UAAU,CAAC,MAAM,EAAE,CAAC;QAC5B,OAAO,IAAI,CAAA;IACb,CAAC;IACD,OAAO,IAAA,yBAAW,EAAC,KAAK,EAAE,MAAM,CAAC,IAAI,CAAC,KAAK,IAAA,yBAAW,EAAC,KAAK,EAAE,KAAK,CAAC,CAAA;AACtE,CAAC;AAGD,SAAS,UAAU,CAAC,KAAU,EAAE,MAAW,EAAE,UAAiB;IAC5D,OAAO,YAAY,CAAC,KAAK,EAAE,MAAM,EAAE,UAAU,CAAC,CAAC,CAAC;QAC9C,WAAW,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,IAAI,YAAY,CAAA;AAC5C,CAAC;AAGD,SAAS,eAAe,CAAC,KAAU,EAAE,MAAW,EAAE,UAAiB;IACjE,MAAM,IAAI,GAAG,MAAM,CAAC,IAAI,CAAA;IACxB,MAAM,GAAG,GAAG,UAAU,CAAC,KAAK,EAAE,MAAM,EAAE,UAAU,CAAC,CAAA;IACjD,wEAAwE;IACxE,yEAAyE;IACzE,wEAAwE;IACxE,2EAA2E;IAC3E,wEAAwE;IACxE,yEAAyE;IACzE,kBAAkB;IAClB,MAAM,GAAG,GAAG,IAAA,yBAAW,EAAC,KAAK,EAAE,IAAI,CAAC,CAAA;IAEpC,OAAO;;cAEK,GAAG,WAAW,IAAI;;;;;;;uBAOT,GAAG;;uBAEH,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gBA+BX,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BAgDS,IAAI;;;;kEAIiC,IAAI;;kBAEpD,GAAG;;;6BAGQ,IAAI;;;6BAGJ,IAAI;;;6BAGJ,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAoCR,GAAG;;;;;;;;;6BASC,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA+BhB,GAAG;;;;;;;;;;;;;;;;;;;;CAoBnB,CAAA;AACD,CAAC;AAGD,SAAS,aAAa,CAAC,KAAU,EAAE,OAAc,EAAE,OAAe;IAChE,2EAA2E;IAC3E,6CAA6C;IAC7C,MAAM,GAAG,GAAG,IAAA,yBAAW,EAAC,KAAK,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAA;IAC/C,MAAM,IAAI,GAAG,MAAM,CAAC,OAAO,IAAI,EAAE,CAAC;SAC/B,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC;SACrB,OAAO,CAAC,wCAAwC,EAAE,EAAE,CAAC;SACrD,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC;SACrB,OAAO,CAAC,MAAM,EAAE,EAAE,CAAC,CAAA;IACtB,MAAM,KAAK,GAAG,EAAE,KAAK,IAAI,CAAC,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,IAAI,CAAA;IAEnD,MAAM,IAAI,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC,CAAM,EAAE,EAAE,CAClC,OAAO,CAAC,CAAC,IAAI,SAAS,IAAA,yBAAW,EAAC,KAAK,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK;QACrD,+BAA+B,CAAC,CAAC,IAAI,UAAU,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;IAE7D,wEAAwE;IACxE,uEAAuE;IACvE,yEAAyE;IACzE,MAAM,OAAO,GAAG,+BAA+B,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC,CAAM,EAAE,EAAE,CACvE,OAAO,CAAC,CAAC,IAAI,UAAU;QACvB,UAAU,CAAC,KAAK,EAAE,CAAC,EAAE,OAAO,CAAC,CAAC,OAAO,CAAC,UAAU,EAAE,WAAW,CAAC;QAC9D,MAAM,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAA;IAEpB,OAAO;;;;;;;;;;EAUP,IAAI;;;;sCAIgC,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI;;;;;;;;;4BASzB,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI;;;;;iCAKV,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI;;;;;;;;;;;;;;;EAe9C,OAAO;;;;;;;;;;;;;;;;;;;;uBAoBc,GAAG;qBACL,KAAK;uBACH,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI;;;wBAGd,GAAG;qBACN,GAAG;;;YAGZ,OAAO,CAAC,CAAC,CAAC,CAAC,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2B1B,CAAA;AACD,CAAC"}
@@ -1 +1 @@
1
- {"version":"7.0.2","root":[[250,307],[309,323]],"packageJsons":["../node_modules/@tabnas/directive/package.json","../node_modules/@tabnas/jsonic/package.json","../node_modules/@tabnas/multisource/package.json","../node_modules/@tabnas/parser/package.json","../node_modules/@tabnas/path/package.json","../node_modules/@tabnas/yaml/package.json","../node_modules/@types/node/package.json","../node_modules/@voxgig/apidef/package.json","../node_modules/@voxgig/struct/package.json","../node_modules/@voxgig/util/package.json","../node_modules/aontu/node_modules/@tabnas/jsonic/package.json","../node_modules/aontu/node_modules/@tabnas/parser/package.json","../node_modules/aontu/package.json","../node_modules/jostraca/package.json","../node_modules/memfs/package.json","../node_modules/pino-pretty/package.json","../node_modules/pino-std-serializers/package.json","../node_modules/pino/package.json","../node_modules/shape/package.json","../node_modules/sonic-boom/package.json","../node_modules/thread-stream/package.json","../node_modules/undici-types/package.json","../package.json"],"missingPackageJsons":["../node_modules/@tabnas/multisource/dist/package.json","../node_modules/@tabnas/parser/dist/package.json","../node_modules/@types/assert/package.json","../node_modules/@types/assert/strict/package.json","../node_modules/@types/async_hooks/package.json","../node_modules/@types/buffer/package.json","../node_modules/@types/child_process/package.json","../node_modules/@types/cluster/package.json","../node_modules/@types/console/package.json","../node_modules/@types/constants/package.json","../node_modules/@types/crypto/package.json","../node_modules/@types/dgram/package.json","../node_modules/@types/diagnostics_channel/package.json","../node_modules/@types/dns/package.json","../node_modules/@types/dns/promises/package.json","../node_modules/@types/domain/package.json","../node_modules/@types/events/package.json","../node_modules/@types/fs/package.json","../node_modules/@types/fs/promises/package.json","../node_modules/@types/http/package.json","../node_modules/@types/http2/package.json","../node_modules/@types/https/package.json","../node_modules/@types/inspector/package.json","../node_modules/@types/inspector/promises/package.json","../node_modules/@types/module/package.json","../node_modules/@types/net/package.json","../node_modules/@types/node/assert/package.json","../node_modules/@types/node/dns/package.json","../node_modules/@types/node/fs/package.json","../node_modules/@types/node/inspector/package.json","../node_modules/@types/node/path/package.json","../node_modules/@types/node/readline/package.json","../node_modules/@types/node/stream/package.json","../node_modules/@types/node/test/package.json","../node_modules/@types/node/timers/package.json","../node_modules/@types/node/util/package.json","../node_modules/@types/node/web-globals/package.json","../node_modules/@types/node/zlib/package.json","../node_modules/@types/os/package.json","../node_modules/@types/path/package.json","../node_modules/@types/path/posix/package.json","../node_modules/@types/path/win32/package.json","../node_modules/@types/perf_hooks/package.json","../node_modules/@types/process/package.json","../node_modules/@types/punycode/package.json","../node_modules/@types/querystring/package.json","../node_modules/@types/readline/package.json","../node_modules/@types/readline/promises/package.json","../node_modules/@types/repl/package.json","../node_modules/@types/stream/consumers/package.json","../node_modules/@types/stream/iter/package.json","../node_modules/@types/stream/package.json","../node_modules/@types/stream/promises/package.json","../node_modules/@types/stream/web/package.json","../node_modules/@types/string_decoder/package.json","../node_modules/@types/timers/package.json","../node_modules/@types/timers/promises/package.json","../node_modules/@types/tls/package.json","../node_modules/@types/trace_events/package.json","../node_modules/@types/tty/package.json","../node_modules/@types/url/package.json","../node_modules/@types/util/package.json","../node_modules/@types/util/types/package.json","../node_modules/@types/v8/package.json","../node_modules/@types/vm/package.json","../node_modules/@types/wasi/package.json","../node_modules/@types/worker_threads/package.json","../node_modules/@types/zlib/package.json","../node_modules/@voxgig/apidef/dist/builder/entity/package.json","../node_modules/@voxgig/apidef/dist/builder/package.json","../node_modules/@voxgig/apidef/dist/package.json","../node_modules/@voxgig/struct/dist/package.json","../node_modules/@voxgig/util/dist/package.json","../node_modules/aontu/dist/package.json","../node_modules/aontu/dist/val/package.json","../node_modules/aontu/node_modules/@tabnas/json/package.json","../node_modules/aontu/node_modules/@tabnas/jsonic/dist/package.json","../node_modules/aontu/node_modules/@tabnas/multisource/package.json","../node_modules/aontu/node_modules/@tabnas/parser/dist/package.json","../node_modules/assert/package.json","../node_modules/assert/strict/package.json","../node_modules/async_hooks/package.json","../node_modules/buffer/package.json","../node_modules/child_process/package.json","../node_modules/cluster/package.json","../node_modules/console/package.json","../node_modules/constants/package.json","../node_modules/crypto/package.json","../node_modules/dgram/package.json","../node_modules/diagnostics_channel/package.json","../node_modules/dns/package.json","../node_modules/dns/promises/package.json","../node_modules/domain/package.json","../node_modules/events/package.json","../node_modules/fs/package.json","../node_modules/fs/promises/package.json","../node_modules/graphql/package.json","../node_modules/http/package.json","../node_modules/http2/package.json","../node_modules/https/package.json","../node_modules/inspector/package.json","../node_modules/inspector/promises/package.json","../node_modules/jostraca/dist/build/package.json","../node_modules/jostraca/dist/cmp/package.json","../node_modules/jostraca/dist/package.json","../node_modules/jostraca/dist/util/package.json","../node_modules/module/package.json","../node_modules/net/package.json","../node_modules/os/package.json","../node_modules/path/package.json","../node_modules/path/posix/package.json","../node_modules/path/win32/package.json","../node_modules/perf_hooks/package.json","../node_modules/process/package.json","../node_modules/punycode/package.json","../node_modules/querystring/package.json","../node_modules/readline/package.json","../node_modules/readline/promises/package.json","../node_modules/repl/package.json","../node_modules/shape/dist/package.json","../node_modules/sonic-boom/types/package.json","../node_modules/stream/consumers/package.json","../node_modules/stream/iter/package.json","../node_modules/stream/package.json","../node_modules/stream/promises/package.json","../node_modules/stream/web/package.json","../node_modules/string_decoder/package.json","../node_modules/thread-stream/node_modules/events/package.json","../node_modules/thread-stream/node_modules/worker_threads/package.json","../node_modules/timers/package.json","../node_modules/timers/promises/package.json","../node_modules/tls/package.json","../node_modules/trace_events/package.json","../node_modules/tty/package.json","../node_modules/url/package.json","../node_modules/util/package.json","../node_modules/util/types/package.json","../node_modules/v8/package.json","../node_modules/vm/package.json","../node_modules/wasi/package.json","../node_modules/worker_threads/package.json","../node_modules/zlib/package.json"],"fileNames":["lib.es5.d.ts","lib.es2015.d.ts","lib.es2016.d.ts","lib.es2017.d.ts","lib.es2018.d.ts","lib.es2019.d.ts","lib.es2020.d.ts","lib.es2021.d.ts","lib.dom.d.ts","lib.dom.iterable.d.ts","lib.dom.asynciterable.d.ts","lib.webworker.importscripts.d.ts","lib.scripthost.d.ts","lib.es2015.core.d.ts","lib.es2015.collection.d.ts","lib.es2015.generator.d.ts","lib.es2015.iterable.d.ts","lib.es2015.promise.d.ts","lib.es2015.proxy.d.ts","lib.es2015.reflect.d.ts","lib.es2015.symbol.d.ts","lib.es2015.symbol.wellknown.d.ts","lib.es2016.array.include.d.ts","lib.es2016.intl.d.ts","lib.es2017.arraybuffer.d.ts","lib.es2017.date.d.ts","lib.es2017.object.d.ts","lib.es2017.sharedmemory.d.ts","lib.es2017.string.d.ts","lib.es2017.intl.d.ts","lib.es2017.typedarrays.d.ts","lib.es2018.asyncgenerator.d.ts","lib.es2018.asynciterable.d.ts","lib.es2018.intl.d.ts","lib.es2018.promise.d.ts","lib.es2018.regexp.d.ts","lib.es2019.array.d.ts","lib.es2019.object.d.ts","lib.es2019.string.d.ts","lib.es2019.symbol.d.ts","lib.es2019.intl.d.ts","lib.es2020.bigint.d.ts","lib.es2020.date.d.ts","lib.es2020.promise.d.ts","lib.es2020.sharedmemory.d.ts","lib.es2020.string.d.ts","lib.es2020.symbol.wellknown.d.ts","lib.es2020.intl.d.ts","lib.es2020.number.d.ts","lib.es2021.promise.d.ts","lib.es2021.string.d.ts","lib.es2021.weakref.d.ts","lib.es2021.intl.d.ts","lib.es2025.float16.d.ts","lib.esnext.disposable.d.ts","lib.decorators.d.ts","lib.decorators.legacy.d.ts","lib.es2021.full.d.ts","../node_modules/@types/node/globals.typedarray.d.ts","../node_modules/@types/node/buffer.buffer.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/web-globals/abortcontroller.d.ts","../node_modules/@types/node/web-globals/blob.d.ts","../node_modules/@types/node/web-globals/console.d.ts","../node_modules/@types/node/web-globals/crypto.d.ts","../node_modules/@types/node/web-globals/domexception.d.ts","../node_modules/@types/node/web-globals/encoding.d.ts","../node_modules/@types/node/web-globals/events.d.ts","../node_modules/undici-types/utility.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client-stats.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/round-robin-pool.d.ts","../node_modules/undici-types/h2c-client.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/dispatcher1-wrapper.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-call-history.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/snapshot-agent.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/socks5-proxy-agent.d.ts","../node_modules/undici-types/env-http-proxy-agent.d.ts","../node_modules/undici-types/retry-handler.d.ts","../node_modules/undici-types/retry-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/cache-interceptor.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/util.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/eventsource.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/web-globals/fetch.d.ts","../node_modules/@types/node/web-globals/importmeta.d.ts","../node_modules/@types/node/web-globals/messaging.d.ts","../node_modules/@types/node/web-globals/navigator.d.ts","../node_modules/@types/node/web-globals/performance.d.ts","../node_modules/@types/node/web-globals/storage.d.ts","../node_modules/@types/node/web-globals/streams.d.ts","../node_modules/@types/node/web-globals/timers.d.ts","../node_modules/@types/node/web-globals/url.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/ffi.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/inspector.generated.d.ts","../node_modules/@types/node/inspector/promises.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/path/posix.d.ts","../node_modules/@types/node/path/win32.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/quic.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/sea.d.ts","../node_modules/@types/node/sqlite.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/iter.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/test/reporters.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/util/types.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/zlib/iter.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/pino-std-serializers/index.d.ts","../node_modules/sonic-boom/types/index.d.ts","../node_modules/thread-stream/index.d.ts","../node_modules/pino/pino.d.ts","../node_modules/shape/dist/shape.d.ts","../node_modules/@voxgig/util/dist/util.d.ts","../node_modules/jostraca/dist/types.d.ts","../node_modules/jostraca/dist/build/FileHandler.d.ts","../node_modules/jostraca/dist/build/BuildMeta.d.ts","../node_modules/jostraca/dist/build/BuildContext.d.ts","../node_modules/jostraca/dist/util/basic.d.ts","../node_modules/jostraca/dist/util/point.d.ts","../node_modules/jostraca/dist/diff.d.ts","../node_modules/jostraca/dist/cmp/Content.d.ts","../node_modules/jostraca/dist/cmp/Line.d.ts","../node_modules/jostraca/dist/cmp/Slot.d.ts","../node_modules/jostraca/dist/cmp/Copy.d.ts","../node_modules/jostraca/dist/cmp/File.d.ts","../node_modules/jostraca/dist/cmp/Inject.d.ts","../node_modules/jostraca/dist/cmp/Fragment.d.ts","../node_modules/jostraca/dist/cmp/Folder.d.ts","../node_modules/jostraca/dist/cmp/Project.d.ts","../node_modules/jostraca/dist/cmp/List.d.ts","../node_modules/jostraca/dist/jostraca.d.ts","../node_modules/@tabnas/parser/dist/rules.d.ts","../node_modules/@tabnas/parser/dist/context.d.ts","../node_modules/@tabnas/parser/dist/lexer.d.ts","../node_modules/@tabnas/parser/dist/parser.d.ts","../node_modules/@tabnas/parser/dist/types.d.ts","../node_modules/@tabnas/parser/dist/utility.d.ts","../node_modules/@tabnas/parser/dist/builtins.d.ts","../node_modules/@tabnas/parser/dist/error.d.ts","../node_modules/@tabnas/parser/dist/tabnas.d.ts","../node_modules/@tabnas/multisource/dist/multisource.d.ts","../node_modules/aontu/dist/val/NilVal.d.ts","../node_modules/aontu/dist/ctx.d.ts","../node_modules/aontu/dist/site.d.ts","../node_modules/aontu/dist/val/Val.d.ts","../node_modules/aontu/dist/type.d.ts","../node_modules/aontu/node_modules/@tabnas/parser/dist/rules.d.ts","../node_modules/aontu/node_modules/@tabnas/parser/dist/context.d.ts","../node_modules/aontu/node_modules/@tabnas/parser/dist/lexer.d.ts","../node_modules/aontu/node_modules/@tabnas/parser/dist/parser.d.ts","../node_modules/aontu/node_modules/@tabnas/parser/dist/types.d.ts","../node_modules/aontu/node_modules/@tabnas/parser/dist/utility.d.ts","../node_modules/aontu/node_modules/@tabnas/parser/dist/builtins.d.ts","../node_modules/aontu/node_modules/@tabnas/parser/dist/error.d.ts","../node_modules/aontu/node_modules/@tabnas/parser/dist/tabnas.d.ts","../node_modules/aontu/node_modules/@tabnas/jsonic/dist/types.d.ts","../node_modules/aontu/node_modules/@tabnas/jsonic/dist/grammar.d.ts","../node_modules/aontu/node_modules/@tabnas/jsonic/dist/jsonic.d.ts","../node_modules/aontu/dist/lang.d.ts","../node_modules/aontu/dist/val/Decimal.d.ts","../node_modules/aontu/dist/exactjson.d.ts","../node_modules/aontu/dist/utility.d.ts","../node_modules/aontu/dist/err.d.ts","../node_modules/aontu/dist/aontu.d.ts","../node_modules/@voxgig/apidef/dist/utility.d.ts","../node_modules/@voxgig/apidef/dist/def.d.ts","../node_modules/@voxgig/apidef/dist/desc.d.ts","../node_modules/@voxgig/apidef/dist/model.d.ts","../node_modules/@voxgig/apidef/dist/types.d.ts","../node_modules/@voxgig/apidef/dist/parse.d.ts","../node_modules/@voxgig/apidef/dist/builder/entity/entity.d.ts","../node_modules/@voxgig/apidef/dist/apidef.d.ts","../src/types.ts","../src/helpers/applicability.ts","../src/helpers/serverVars.ts","../src/helpers/pointPath.ts","../src/helpers/packageMeta.ts","../src/utility.ts","../src/helpers/stdrep.ts","../src/cmp/Main.ts","../src/cmp/Entity.ts","../src/helpers/junk.ts","../src/helpers/definition.ts","../src/helpers/featureSource.ts","../src/cmp/Feature.ts","../src/cmp/ReadmeIntro.ts","../src/cmp/ReadmeInstall.ts","../src/cmp/ReadmeQuick.ts","../src/helpers/opShape.ts","../src/helpers/canonType.ts","../src/helpers/naming.ts","../src/helpers/opExample.ts","../src/cmp/ReadmeErrors.ts","../src/cmp/ReadmeStation.ts","../src/cmp/ReadmeModel.ts","../src/cmp/ReadmeOptions.ts","../src/cmp/ReadmeEntity.ts","../src/cmp/ReadmeUnions.ts","../src/cmp/ReadmeHowto.ts","../src/cmp/ReadmeExplanation.ts","../src/cmp/FeatureDocs.ts","../src/cmp/ReadmeFeatures.ts","../src/cmp/ReadmeRef.ts","../src/cmp/Readme.ts","../src/cmp/Test.ts","../src/cmp/AgentGuideContent.ts","../src/cmp/AgentGuideFeature.ts","../src/cmp/AgentGuide.ts","../src/cmp/ExternalTarget.ts","../src/cmp/Docs.ts","../src/cmp/ExternalDocs.ts","../src/cmp/Deploy.ts","../src/cmp/ReadmeTop.ts","../src/cmp/AgentGuideTop.ts","../src/cmp/License.ts","../src/cmp/Security.ts","../src/cmp/PublishWorkflow.ts","../src/cmp/Changelog.ts","../src/cmp/TestControl.ts","../src/cmp/ReadmeRefFeatures.ts","../src/cmp/FeatureHook.ts","../src/cmp/Registered.ts","../src/helpers/buildIdNames.ts","../src/helpers/getMatchEntries.ts","../src/helpers/collectDeps.ts","../src/helpers/modelNames.ts","../src/helpers/testPolicy.ts","../src/helpers/station.ts","../src/helpers/manifest.ts","../src/helpers/dryrun.ts","../node_modules/@voxgig/struct/dist/StructUtility.d.ts","../src/action/resolve.ts","../src/action/action.ts","../src/action/kind.ts","../src/action/feature.ts","../src/action/target.ts","../src/action/doctor.ts","../src/helpers/semver.ts","../src/helpers/shipped.ts","../src/helpers/modelcheck.ts","../src/action/check.ts","../src/action/package.ts","../src/action/docs.ts","../src/action/dispatch.ts","../src/sdkgen.ts","../src/testkit.ts"],"fileInfos":[{"version":"16934abaab7026ac114da441aabea1a0","affectsGlobalScope":true,"impliedNodeFormat":1},"d4306fb2e47f74835e8674ffac07d76f","e437c5c1302869326c3bb93da85bbbcf","e4324975a566567b21d350615f1fc6ac","333b1b9a2a9ac3b8497dba5c63b5ba50","6cffacd662b6eb5fa7a36aa2ea366bfa","b4c34f9c23304dbef2d23698637ed638","e5cb86a5fc491796ecd1d2dd348d208f",{"version":"aae8996e8b5684814785a42cbbefcd79","affectsGlobalScope":true,"impliedNodeFormat":1},"abad6dd56cc8caf095c165df8124d237","abad6dd56cc8caf095c165df8124d237",{"version":"2a9941db0809c9ad0e8837ed629b1dcc","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"d051b93324f36bcc68d152a5ca0988cd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"926204c28cd3d073865348473ae28d2e","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"f25e42c801b2cb3cf2b39792006a9beb","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"6344b55f26a4e81d9608777dbfb877dd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"3c0ed28e53d3695b363e256ec1c023fd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"4c2761daba7f17141c25baa0821ac5da","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b87656acabd63e69379ff6ffcfe52fc7","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"597469522da047a5af5222cc6989f405","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"1708ea4d34dc37fadadc63ca01127e80","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"55d97a8c6fbf34a30450a7b1e5f7a298","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"0ee05eb59426d33e374226d8dcfa708b","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"e347c14030993906efcfbb88915b6a05","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b0231263857c9b6a03641acdc9280ceb","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"3b15c4a83b598cacb4067676e6f0abed","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b417d97b7934cef63b1889abec0bbfbf","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"09a6cf4032ebba60ce22a501e663f881","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"2b056277dd138e8f5650fc04e20eaa8d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"e22cc07e3f3cc242ba52fa3f8ea1fc58","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"2c45da767a1bfbb220848df1bc4029e4","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b44c3e0fbaf2130cdcf6ac38b120ffa1","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b612fb5cf8e5d964b92063a75207632a","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"02705151a5e1551b9162a9ed8ab763f7","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"41025e398be9215d32e4337335da8f0b","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"52684c2b1f353a5538e4f275182a54cd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"6dedb6a4f90d1df3a6fbe5693e44886c","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"ca3f36fe3562c07e0f0d71c2bebd3f6d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"409974d6129befbb8226ddd1c6558568","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"4d9cfde2a1ae1b4925f1f9bc10848e5d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"7e1daecc66dd564144e3bb1a0266b5fd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"a8e1d9bb35fd0637f2f9fd2b2a54f2ec","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"4f168501772a6543182765bfd5f2fbfe","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"a19c80aad1b2162103496f5ba293a732","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b69afa63cd5d059851c78adb2856ee09","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"ae2fc5d954e9b0f5feee3d481b953c27","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"1cfd3091a071d8b6feec15277643bafe","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"1da2c1f258970fd3cc91184f69e91a9d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"a0d87491913d843139e0c993650a3235","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"4ef72aa378127e7b7abba915b0110b1e","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"3ec74c6a7d4463f0254db3a74cf75646","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"84c2bdfa470d075526cce6322d81b0b6","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"0b3844c2b8c73e4e1ab91431411cad11","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"0219894bfe5042c7e1aa2d22e4a91ed0","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"be41035d7b941482a1e1ae6a5c5dcca5","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"f64453cbf9671f28158677fa5c43967a","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"33f317af5428801f944a478d2c1e38e5","affectsGlobalScope":true,"impliedNodeFormat":1},"38cf6576be124e8937b39b9f927f2252",{"version":"014eb4d3e0618e548a7001fb52d9f78b","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"29aa5df597455c046c2c88185c75534b","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"c5eb15737c858d986e0d5a542103b1df","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"ec83150a952000d42a7e6ccedac2d892","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"494755686d9e421e630117d917760e4f","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"c3f3d4053311f68af31e07f6e167faf6","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"86013697f2045d357ef20d7a952cdc12","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"fbef359f7184dcd12e5b3b95b171cca0","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"1ca5302f6fe11154128eef397b5a285b","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"13835e9ba9b025ad7cab01fe7bad1fe3","affectsGlobalScope":true,"impliedNodeFormat":1},"49133c0dfbc32ab95668c3443dea49e5","d0b24ed45e91de84ca0fbafde3797006","9f970a4ba4bb3ed6326d46b3ddab3f63","7326b52c300bf65ac2f7e089fa536421","75de66fc4824402123c0d694ccc0a085","ff1283d1b4e6fa719203127857079e2e","fcd1a513c1e5802916fa602e8b8e64bc","78963d55a7500f2a08ecf81c3e2f2351","c1ace754853b3b972549a44a2316ca86","cf4561df3889c71b6b70fda4afe61f62","705645fe223430c696f47b708d592ca8","28d57c837c94adb42add03d499793cab","8c01a9bbae8449be21b3e018d59a74ac","b4a1cb50a619bde79c20d19aeb560633","21dc8b1a2dfd71b39278fd1db4055489","74d351e4ed233e82c6d74c444c1a6b86","35b9b5981aa2c74f808ba3334548e89b","81870445ff689f1a6c65a6d62e034298","d7131a7789ae06e6ba79d7cd1841fde7","dd373f44a8c44dd9286f3b43e07fc873","d7e5f7a0f1f883f28458f684106e7643","c2364011a80b6a9e3cc0e77895bad577","38da5c670190f4a35cbc204ca6c616bf","d95cc0eb29beed58f5ce72db21398f53","ecd53256b1ec7379c73316eaf392a69c","9871d4fb594b51eb13a3f6db71e01844","69c7bb9c3befe9ae37eed0e6a6310fee","c9351e1ed4d066672ad38be5c44f60b9","71e556084722c2a3f00f47d999db1e35","094ecadae30f65a82b77343dde77a666","f75df12d75dd783b03a0329b95abdb25","b438b08b2f0ed94a95a75c8990d9021b","f2becd2589591db92ab14e803eb8bdd5","230b29c24dac9c9800ba909debbaf7c4","518eaa3ff1153eacd0343a6bab2ce870","0468c0ccd0ec7770b76481b165564d62","188234d616a4f50ed9b14c8f84a39f33","4c116bcf0a47ea8fbf4072f380925fa7","213fda99209bff9d0330b6d9f5c9c7f3","add85ec26ba695fc99c698dbec065f8c","5bfde23f96fc502b5413d772c35e1abf","b744265d8ad12b7d4d5c5dc35d18d44e","eff32168b8348b822afeed9cbf61afa7","531a291f1cbe853ce3a138313c7448e9",{"version":"3b4fc11e9a5d20c846f1ba38889cbc8d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"53b0e86dfe96eb781a056e2662bf1e3b","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"d0bac56ae60094675c08a325b81d3b1a","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"292c9398a407b33b1d9c9812b673387a","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"83bc735c360e42b09f2b102d7b831ede","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"45df94b3c51b898624bacc2bcd6d9eb2","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"0b1a6b0b0f8828c286f9ae2ba01c4a5c","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"8617a23553d74c31be6da303c668bd18","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"3f2d808ba5f1ae3681bf7df616488dcd","affectsGlobalScope":true,"impliedNodeFormat":1},"4e58ba439fc661a1e2337fd17ae89d94","604aab8dd7c02abe3fcf1218fa951439","eb8c0e64b0e0e76f43e7c552937a365f",{"version":"d9f08c6ae1f16ca22e5a7ee7c02e8f55","affectsGlobalScope":true,"impliedNodeFormat":1},"e894ca92e848c9059a67e916bf4a5ccd","2c43726da10a0a524992e6fd4a561aba","75c6ee2c7a0e7d54f06ae1941553f44f","9af5958f27aacf7d18939d710f5b0da4","477debf4dddf6a7f1684cb0c082627f9","e83763b51773b219b802af074c41c158","dca9e0bed5a66eaef8e9d2533b733526","4fbcefaa3aa9d4af9d76d946c7c445cc","949ce92cb920c39fb4ff87098ebe56af","2d8ebe6eb639d14875e12acf069d9c65",{"version":"2d30f3e526b72134674afeee7eb5f870","affectsGlobalScope":true,"impliedNodeFormat":1},"3dc88bd6dd1ffa2f65dbb913face44d9","dcf2edcdc46db8eeae5612e2e6639d35","cd2631f28a9d8693684fdf8a4fd85b6c","fd2f650b7f74615ee5b2fe92e47597d6","85fa83ba26c02415ce3db83b2e93e420","8383fa58c2f75291c454f84915f12190","856e7f9f1e0e64dfa73b2026886d9380","fc81ee7b08868ee0973983110e2ef386","f7be6b8b253b7d07c8476f23bbdc98c1",{"version":"48b2540ad661c32ab2cf99d5d0300f98","affectsGlobalScope":true,"impliedNodeFormat":1},"552f49661c80ae3d5da105854ee1d892","beb256af4099983453b3f33660699c9a","860f49c8d6ad48b19bf7ed0bc5d2824e","235cc33b85ac998f0f2df0807648acb8","c0c62035e8f8a0b6da47b6277fd6dbb2","1b176e9abc725e3ab4838bc569ed6e3a",{"version":"087bfa2b5ba564e440ae7ce58cdaec26","affectsGlobalScope":true,"impliedNodeFormat":1},"196cd3003168b4ee2df015d15cfed000","66b5b9b84ab95e019a6e1f5edb8bd250","146fcbe77125b5445cfc8f768f476263","2e2ed32d5133fb4c60f95543217e669e","2580385b74019e646d76a9f68fdbf31b","aa0f7a546acda88ef0a5df40ff0e5122","b3bdce048b1c601e1a19a4c3ee32053b","745cd00eab8a5c34d9480b4fb7fdf30d",{"version":"c18928bec3bc65892c54962be1683163","affectsGlobalScope":true,"impliedNodeFormat":1},"f9c43b0225ab4f6dc8aff6e619d322a8","387ec148012e77360d5db33ba45b8b2f","6e1de2df81bd936ffb5509f921f1fc8c","c7576162a5c832fc7681771ad7a50357","9959a7e96eedcbc697460cf0d31bda74","9fb8d78102547ed86d26e45b0d0542de","0b355907ec29bf7f68cedaff3b6b71f5",{"version":"b73a052b5fd08948bd559dcca4424ede","affectsGlobalScope":true,"impliedNodeFormat":1},"e6ad9a1d5cc3099621a4a7bba328d248","13c7d30ec9c5b3f2e8030aa28afcd9f3","b4dbe09999921e219d6ff56b29720eae","4d2cb96ef76779819df8963314db8b6b","93f25f3a36ba4dd4c8efff0cc442f118","513ff65469f15b8059ed4edd7033614a","b0466c3034f5921a2c78e7da534f2b19","4c638ae62e5dbcc434c231576773dd6c","8e0c0fb59513333b77efcbd43da1ce7f","3b1ae8bab308b1e5ac7e7a26d27167ad","a41a5f7019678ba4b53936492dc465d1","35c1d312d8ffabf1e4546bfeaeb4142e","6728fae9ef4170f6403bf6db25cc60c6","9fd5b314bfba8a89299a1031ae1d82c0","8a5461a97d8700e7552b5f2de23355c5","19ea683f237d4f1a8d1fb5789ed7ff36","4606cd264859db2db4b881e9958b393b","8380977a7a864769d4c9d984bc964574","e3114f142e8293ca9230a78adf7945e8","1869b5a824d7e68d1bf7d829d82182fa","73f954f05b1f8f4a420d6f9a9dde0153","2f396b48529c3a75f3f064136381ec3a","d5fa7223c765ff1c72df545685819771","964b93fcaf4ada3a20898285060f6a4f","63bd166a09cd79156a53f10919313911","0ded228b608587b1cc732ed382250459","a6c9cd9b7d62864c0d1e43b46368a101","ccd12bf45eb7e2ff14f393e52b827adb","720db138494767a200574a0e42a5ba6b","bc571a2988b6bdda551dde33e763f0a9","564ea6121cd49bfa118da9b88f380a61","6ea8e818ae767cecaa148360c3a27bd0","c416cd4d6ac51cbef4e892a28c6a7a03","f38b3abd50ab377e9a9c7ac8a49bf19e","0f0b2fd5a27852e6d8d67ef228ba4eb9","4c6c78de4e3b7d373e59670f7c801519","8eb5d967b0720f3641574c4d6ccd6b5e","09a77ec4a0dd6723fecbd78e4c0bc045","6e75de1822cdb240653677a05aae07a7","798434aea27db1ffda7d7c1c5ec4dce6","76f859acbac8ad3e30ae218bb3b81758","a70aaaac9db6995a64a79667fb3be6f7","89c378fff3600fa323d3aa2ac7d0ee7e","6aea6a3ae0c80cc4ae693d3b114d88e5","ffb329796d6ddcad32ffd5623732bbc7","a0a21c5ce0f8a9047a411e27b12ccb84","265dd9b190ff08ccedc99f7199d78b40","683cbe54bcda8edb627be32c470e40c5","680ec032e98f5c98f3c3905d33440762","a1f7f61bcc55fe89478da41d3e1711ec","00aad7870247297581e6a8121fe0c326","55144215cda55b4de664c0a08e71585a","8f4b78dc627377674c90e0ea67714d2d","6e75de1822cdb240653677a05aae07a7","798434aea27db1ffda7d7c1c5ec4dce6","a5484437627fbef14aec45d69fd3c1b3","a70aaaac9db6995a64a79667fb3be6f7","49bad8a06713c6608772e0de91c42802","6aea6a3ae0c80cc4ae693d3b114d88e5","ffb329796d6ddcad32ffd5623732bbc7","a0a21c5ce0f8a9047a411e27b12ccb84","81e42469dff48fba7ae0502b1f455c5a","eb40f3fcb554ad63f29d4bad90aa7818","5dcc89cf119c72b67d6dc9875b8424dc","3b5f711353ee129aa8acaf4e7366799c","5c797dda13a5a834b3bc724585e663d6","89f0a81be532f0f548d1a0616db3acda","4e79d05df527c21f3ede8872ced08551","048bea3995610d1c905b6ba34f230483","c940dd5e148e57a09966576210a0edec","91decba6e8f8a6dc2cda06704e159354","d36c48fea6765e21f23675e540ad08cf","cfb93122b4878919d4f43cb0dfe3009f","872204553e3481fe5abc876f3b38a265","0e3ed348e930bc92f06faa5b2737cff1","c8d11d9e40c0fca25f66e66bd9eb2520","693f0c1d06ca1eda4ef97422331e60f4","d22b49c600da1ae44a4b0bd5e6b7520a","c402cfcd40c9b9f1b0dc9d99013e828f",{"version":"c03785a76203265171392822e96ebb39","signature":"f4bc0557ac04ff36ef9c6af3edd963a4","impliedNodeFormat":1},{"version":"06e6680b97d8ffc22f57bed37174bb5a","signature":"0166acffee22d74455f06c0d1c0670ca","impliedNodeFormat":1},{"version":"b0e8d0ed550692153eea7ca4dc4454c8","signature":"f43bdedc4f5bb091ee1962b022606a50","impliedNodeFormat":1},{"version":"43f4a0e9d1acacc37969ecc98e48988e","signature":"4bfb3be0601539d02d56d5959808ef10","impliedNodeFormat":1},{"version":"6d5365ecfb8d639f033a70f427f4142a","signature":"b701c12b08aa77336d05e78c9df11572","impliedNodeFormat":1},{"version":"cdbe00e6de6bac1687804383fa8e37e6","signature":"fb512329a37f31058f747543980cdd38","impliedNodeFormat":1},{"version":"b550e93b1ae7b0350a68808b0f0c0301","signature":"4edcb0058ab00e5dd4a6cbd2c2d5ce6c","impliedNodeFormat":1},{"version":"8959c26ca7d8481a76affc5d2e263895","signature":"e6c6e44fdc770f299d9b21316355db13","impliedNodeFormat":1},{"version":"1d034436db73e20c90bb0ca68a28c418","signature":"32027250a06fd60bb0f4e97858ec09c1","impliedNodeFormat":1},{"version":"590faf80c6423346d7b281758e2e60f8","signature":"317090a03ddf7c3af517379bfd13c8e8","impliedNodeFormat":1},{"version":"8335f28b31da9458ce3a0f31a8c0c198","signature":"4270935ce8deb80eb9b96775394f7f1c","impliedNodeFormat":1},{"version":"32f85093ab3fdbcb3812cd6db46bd78a","signature":"3ee84f0a4ca1f8f24a558a4a8df1fbfb","impliedNodeFormat":1},{"version":"1157b007a4b9f713d0eba8fed3b5065b","signature":"bf825e2c1688383a62f84c9b310a525c","impliedNodeFormat":1},{"version":"55e487d107026f950b753889ddf52842","signature":"6086dc8fab5be16745d27719cb21460d","impliedNodeFormat":1},{"version":"369fb9c6d3407ea863fe44f815049e3f","signature":"b078e85e918f0c10c05e70e74daf4d5b","impliedNodeFormat":1},{"version":"94a6b63e2287ede9e4ef0baa805e0211","signature":"ff8ab1272fcbfb97938ba2ca1bb5c87f","impliedNodeFormat":1},{"version":"7fa45a92961f12bb1d755e81d58cde9c","signature":"bcbc3fba6f33636d50e87806289b68e0","impliedNodeFormat":1},{"version":"2123efe072243dc38fffbadcccb3bc64","signature":"e79df17bf09b18d2b0a529f84829116a","impliedNodeFormat":1},{"version":"e679c37a2aebdc666bb072aa40271259","signature":"8141f90901f7ddcc5ba816226bf37f4d","impliedNodeFormat":1},{"version":"6222125fb01760668db0fd1236a4a8ba","signature":"d327ccfa6f907d74c68d254aa637e144","impliedNodeFormat":1},{"version":"aa03d499ed3af9a36e056045b0d55d18","signature":"8ec7d90dc414b0898acc2255f6ccb801","impliedNodeFormat":1},{"version":"b4c2c39f4fac3c7b00b4e3bc7c5cbc92","signature":"d938ea7306d2b1d65df9541a4d99790c","impliedNodeFormat":1},{"version":"4396368a041d46f43dac3461d0bc3876","signature":"adbb5a05829a9296f4599222a2fd5c1c","impliedNodeFormat":1},{"version":"7a473f49c4a67001fab4fed92d82d323","signature":"573c5a2d2abb23a3eed63018a2912ecc","impliedNodeFormat":1},{"version":"a07233dea8f354196d61870208a1e0f8","signature":"af69ebef82a5018aeb76abdebd3469d5","impliedNodeFormat":1},{"version":"48ac53e6f75a4d95f42b3552d5f87209","signature":"965efca0ead04ac7a24d343a230bf858","impliedNodeFormat":1},{"version":"003f48453335924a626b1b83b9294df9","signature":"b775b6020a2e757266b5134eeda10adb","impliedNodeFormat":1},{"version":"945d23ca6d8f0fb181d0d712d1d4c118","signature":"e754f1d4f7b3f5ec768871bb308fcf99","impliedNodeFormat":1},{"version":"007a9405d67b935195358f07f1d68812","signature":"f33f7eb094950960d15fc50a9dfe4a0a","impliedNodeFormat":1},{"version":"43ba30338897ebaaefcabddf6b5b9902","signature":"2214c073febde09435469bdb9b731b1e","impliedNodeFormat":1},{"version":"9f7d6560dc4963aff2f6a68fcba65627","signature":"9d58f318ecdacd2df6fc20d31c081268","impliedNodeFormat":1},{"version":"236890dd868dedb2bd4256eeeeb5a83e","signature":"6161dd322fef2b5dce109775491c70be","impliedNodeFormat":1},{"version":"f5abf9dd9e878ebd06015502a5641074","signature":"65966e59164055f68b179af7d9c689f7","impliedNodeFormat":1},{"version":"548f0befe90f0ca0a0f02c05cd46f675","signature":"b94c79843d05d03d940e339a56444580","impliedNodeFormat":1},{"version":"4cf4d1cbbe8201f2f7d3182a0bc43574","signature":"f5a7a2eb0404c7611d1edc9b598a3954","impliedNodeFormat":1},{"version":"152d31326cf7dcdec8c11eb2208bedbe","signature":"b86621a36f1985bb0f48ffca3a2aee79","impliedNodeFormat":1},{"version":"3f0086dcc6f512e95e8e3f3e3984c6e3","signature":"a9e1fd63893011d2bf191c8a68864944","impliedNodeFormat":1},{"version":"bed2b41295ca3b69a9fab5c04ca0afda","signature":"5c8ba3da60ceb1ef62910a57b11ec25b","impliedNodeFormat":1},{"version":"57ea2c4bfce6b569d66c116adb0d6c2f","signature":"a483299392ca2918d3fc1f05d0a24f23","impliedNodeFormat":1},{"version":"adec1354265ffdf6777c843079813d75","signature":"efc8b431cc32b07eec1d53a338481a36","impliedNodeFormat":1},{"version":"ddb0f1955410b45ba6faf0468674b22a","signature":"56ce02a69771790214706b50e0114331","impliedNodeFormat":1},{"version":"75d754bd020fe0ee1af7f2db10516dd3","signature":"f9daebeaf64f7148e821f2e8afd78c10","impliedNodeFormat":1},{"version":"19e5e3efd6acbb8ba9601f997914dfae","signature":"8e8a29f2a81bc3eec29397ea19e061a1","impliedNodeFormat":1},{"version":"04228d5f522c98ec969b5ce958ff04c4","signature":"cd599d07665d0aba3623debf2252a932","impliedNodeFormat":1},{"version":"471c892992b2df014d8b2e9c7046885f","signature":"af1bf43eceed9194f1f5674d6767ba5f","impliedNodeFormat":1},{"version":"023b06a8c8660f6d8dc34af3135f53f6","signature":"c9ee6ec05583599998a5e8dd9f7ff677","impliedNodeFormat":1},{"version":"8b28fc5797e024d92352dd4159a5925c","signature":"204d79698496d1c86799a1dcaacb6915","impliedNodeFormat":1},{"version":"eb76b57760f32d44f7f2d5c04a62f6d0","signature":"ebd8f38635d44fb32ca53c062f601dc9","impliedNodeFormat":1},{"version":"e5369000b114c1fd6069482e6e1693aa","signature":"999e13284bc3bae3d0b035a890f557f7","impliedNodeFormat":1},{"version":"98cbf6e3749f2cb3b3b63a2a803c2d9f","signature":"1097b43115b8ee2ced952cbec6c2d8a9","impliedNodeFormat":1},{"version":"41c102df520915af9aa5d229bbacd6d9","signature":"4d8d595a2d6bf42f711eb7e3ec3cf67d","impliedNodeFormat":1},{"version":"86f35566e9208dc992db72ae0973d44d","signature":"050542523f9a34c14da62d3a55befe45","impliedNodeFormat":1},{"version":"532ee6f92c2171d448ba7ccd5f63c6cd","signature":"3260106be8bb66c0bc82ddd0f61098e8","impliedNodeFormat":1},{"version":"31fc00482da8f1042096763d5fd11ff9","signature":"06f204e94bb5f7d7c57ce0975b74d512","impliedNodeFormat":1},{"version":"190032522a1e1b8a563a59aa500fc681","signature":"a045381fb8557a796139c174c9812f9a","impliedNodeFormat":1},{"version":"09bb652f6bb48876210245019b7e75a5","signature":"4d8dbb504e62caf464ed6b18ca8928d3","impliedNodeFormat":1},{"version":"bea2270e9a45438951cf05b941272d7b","signature":"c259245cd6413e259142fde7e97bab13","impliedNodeFormat":1},{"version":"b8a4b53cf8daf966f75b30afb74dd85b","signature":"b6e2d367c2f26a913207d6ebe12da91c","impliedNodeFormat":1},"ef468f45a9c0a754afecd35aa1583230",{"version":"03ef0211bf15a4bff584af88bec12884","signature":"886c772e464976a673fd24d55e036e38","impliedNodeFormat":1},{"version":"453d69d6fc740f317b02444831f91a15","signature":"15a1b614bfbc4ebc68e8bcebd1c88bcc","impliedNodeFormat":1},{"version":"bfe9eae464bbf3fcc9d7236ff5e0c60b","signature":"b53911713cb26d0adda41aa631362be7","impliedNodeFormat":1},{"version":"86036704fd9512a129fe8aecf0e63df2","signature":"2b92dca00b1847bfc6ad1a83d60b3d59","impliedNodeFormat":1},{"version":"24bbce7adf9cdd41f24175adef1580fd","signature":"7657cf1bf4d5f3ca5fe009cf8839ce36","impliedNodeFormat":1},{"version":"c610797587ddd2f856887931bc3e0f5e","signature":"7efbcf66b1a7dcc9494513cda4e662df","impliedNodeFormat":1},{"version":"db672e1f9addc5f042d694c79b8df8f0","signature":"c12c9b737116c195aa8abb2ef852f7ed","impliedNodeFormat":1},{"version":"aeb9d7eb85f214073485fae0912d6368","signature":"71521efa092162b21f6acbd4f073cc6d","impliedNodeFormat":1},{"version":"269f0dcc96d1a5c5fe1005138257b2a7","signature":"fca445e138b235df0d73aa028cb66420","impliedNodeFormat":1},{"version":"0052ede845674f468b9545ee9b4eda60","signature":"965aaaebad1f363dcc4d9dfead91f649","impliedNodeFormat":1},{"version":"0af69ca5247310a580a10b52f98c1bbc","signature":"53ddaceacfc1e42e7677684f9403957f","impliedNodeFormat":1},{"version":"46633cb53070e000d5ae5a68a3515de5","signature":"3806eb50d2d68f9c89d82f583403b326","impliedNodeFormat":1},{"version":"24dd0ea660e950879ebadd31bb85a98b","signature":"74eac5becd1b8e350018d79a6f49aada","impliedNodeFormat":1},{"version":"e49ba5c82021fba77f258bea7fe16f98","signature":"7f962e35a53ea1b9f33d903b92054d36","impliedNodeFormat":1},{"version":"72caf78df783c09c5dedcc05ac9df8f2","signature":"2d4a8253b70e6e45014ff5b95859878f","impliedNodeFormat":1}],"fileIdsList":[[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,217],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,213],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,209,213],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,209,211,212,213,214,215,216],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,209,210,211,212,217],[60,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,112,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[59,60,61,62,63,64,65,66,67,68,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,181,182,183],[60,112,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,112,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,242,243,244,245,246,247,248],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,246],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,242,243,246],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,189,190,244,245],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,188,189],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,220,223,236,237,238,239,240],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,219,223],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,219,220,223],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,221,223,235],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,223],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,218,222],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,220,222,223],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,220,221],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,232,235],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,232,233,234],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,232],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,228],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,224,228],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,224,226,227,228,229,230,231],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,224,225,226,227,232],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,191,192,193,208],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,192],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,191,194],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,191],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,189,191,194,195,196,197,198,199,200,201,202,203,204,205,206,207],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,189],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187],[60,75,78,81,82,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,78,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,78,82,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,72,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,76,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,74,75,78,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,72,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184],[60,74,78,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,69,70,71,73,77,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,78,87,96,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,70,76,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,78,106,107,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,70,73,78,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184],[60,69,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,72,73,74,76,77,78,79,80,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,78,99,102,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,78,87,89,90,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,76,78,89,91,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,77,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,70,72,78,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,78,82,89,91,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,82,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,76,78,81,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,70,74,78,87,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,78,99,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,91,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,70,74,78,82,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,72,78,106,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,250],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,250,251,255,260,261,306,311,316,317],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,250,311,312,313,314,319,320],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,250,255,256,259,309,310,311,313],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,250,255,256,259,260,261,309,311,313],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,190,208,250,255,256,259,261,307,310,311],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,250,255,256,309,310],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,250,255,306,309,311,314,315,318],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,250,260,306,308],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,190,208,241,250,255,256,259,261,307,309,310,311,312],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,255,283,284],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,250,251],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,283],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,250,255,256],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,250,287],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,249,257,258,262,281,282,285],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,251,256,261],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,254],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,250,254],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,263,264,265,270,271,272,273,274,275,276,277,279,280],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,255],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,250,266,268,269],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,250,251,255,266,268,269],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,255,278],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,250,255],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,278],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,250,254,255,266,267,268,269,278],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,255,256],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,249],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,249,250,251],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,259],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,249,259,260],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,260],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,249,268],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,241,316],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,266,267,268],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,249,253],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,249],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,255],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,249,250,255],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,254],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,250],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,190,208,241,249,250,251,252,253,254,255,257,258,259,260,261,262,263,264,265,266,267,268,269,270,272,273,274,276,277,280,281,282,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,312,313,314,318,319,320,321],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,250,319,321,322],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,249,251,252,253,254]],"options":{"composite":true,"declaration":true,"declarationDir":"./","module":199,"noEmitOnError":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"strict":true,"sourceMap":true,"target":8,"esModuleInterop":true},"referencedMap":[[218,1],[215,2],[210,2],[216,2],[211,2],[212,3],[209,2],[217,4],[213,5],[214,2],[122,6],[123,7],[124,8],[60,9],[125,10],[126,11],[127,12],[128,13],[129,14],[130,15],[131,16],[132,17],[133,18],[134,19],[135,20],[136,21],[137,22],[138,23],[139,24],[61,25],[59,25],[140,26],[141,27],[142,28],[184,29],[143,30],[144,31],[145,32],[146,33],[147,34],[148,35],[149,36],[150,37],[151,38],[152,39],[153,40],[154,41],[155,42],[156,43],[157,44],[158,45],[159,46],[160,47],[161,48],[162,49],[163,50],[164,51],[165,52],[166,53],[167,54],[168,55],[169,56],[170,57],[171,58],[172,59],[173,60],[174,61],[175,62],[176,63],[177,64],[178,65],[179,66],[180,67],[62,25],[63,25],[64,25],[65,25],[66,25],[67,25],[68,25],[113,68],[114,25],[115,25],[116,25],[117,25],[118,25],[119,25],[120,25],[121,25],[181,69],[182,70],[183,71],[56,25],[57,25],[11,25],[9,25],[10,25],[15,25],[14,25],[2,25],[16,25],[17,25],[18,25],[19,25],[20,25],[21,25],[22,25],[23,25],[3,25],[24,25],[25,25],[4,25],[26,25],[30,25],[27,25],[28,25],[29,25],[31,25],[32,25],[33,25],[5,25],[34,25],[35,25],[36,25],[37,25],[6,25],[41,25],[38,25],[39,25],[40,25],[42,25],[7,25],[43,25],[48,25],[49,25],[44,25],[45,25],[46,25],[47,25],[8,25],[58,25],[53,25],[50,25],[51,25],[52,25],[54,25],[1,25],[55,25],[13,25],[12,25],[249,72],[248,73],[243,25],[244,74],[245,73],[247,25],[246,75],[242,73],[308,25],[190,76],[241,77],[220,78],[240,79],[238,25],[236,80],[221,81],[223,82],[239,81],[237,25],[219,83],[222,84],[234,85],[235,86],[233,87],[230,88],[225,88],[231,88],[226,88],[227,89],[224,88],[232,90],[228,91],[229,88],[194,92],[193,93],[192,94],[198,95],[201,95],[202,95],[205,95],[204,95],[203,95],[199,95],[207,95],[206,95],[200,95],[197,25],[208,96],[191,25],[195,25],[196,97],[185,98],[188,99],[189,25],[186,98],[187,25],[87,100],[101,101],[84,102],[102,25],[111,103],[75,104],[76,105],[74,25],[110,98],[105,106],[109,107],[78,108],[88,101],[98,109],[77,110],[108,111],[72,112],[73,106],[79,101],[80,25],[86,107],[83,101],[70,113],[112,114],[103,115],[91,116],[90,101],[92,117],[95,118],[89,119],[93,120],[106,98],[81,121],[82,122],[96,123],[71,25],[100,124],[99,101],[85,122],[94,125],[97,126],[104,25],[69,25],[107,127],[310,128],[318,129],[321,130],[320,131],[314,132],[312,133],[311,134],[319,135],[309,136],[313,137],[285,138],[283,139],[284,140],[291,140],[295,141],[289,128],[287,142],[258,142],[288,143],[286,144],[262,145],[278,139],[298,128],[292,146],[257,142],[294,147],[281,148],[274,149],[270,150],[277,151],[279,152],[276,149],[264,149],[263,149],[272,153],[273,149],[265,149],[280,149],[297,154],[271,147],[290,155],[275,128],[299,156],[293,146],[282,142],[296,141],[251,157],[300,25],[267,25],[302,158],[260,159],[307,25],[261,160],[301,25],[259,25],[306,161],[303,162],[317,163],[268,25],[269,164],[266,165],[254,166],[253,167],[315,25],[252,25],[316,25],[305,168],[256,169],[304,170],[322,171],[323,172],[250,166],[255,173]],"latestChangedDtsFile":"./testkit.d.ts"}
1
+ {"version":"7.0.2","root":[[250,307],[309,323]],"packageJsons":["../node_modules/@tabnas/directive/package.json","../node_modules/@tabnas/jsonic/package.json","../node_modules/@tabnas/multisource/package.json","../node_modules/@tabnas/parser/package.json","../node_modules/@tabnas/path/package.json","../node_modules/@tabnas/yaml/package.json","../node_modules/@types/node/package.json","../node_modules/@voxgig/apidef/package.json","../node_modules/@voxgig/struct/package.json","../node_modules/@voxgig/util/package.json","../node_modules/aontu/node_modules/@tabnas/jsonic/package.json","../node_modules/aontu/node_modules/@tabnas/parser/package.json","../node_modules/aontu/package.json","../node_modules/jostraca/package.json","../node_modules/memfs/package.json","../node_modules/pino-pretty/package.json","../node_modules/pino-std-serializers/package.json","../node_modules/pino/package.json","../node_modules/shape/package.json","../node_modules/sonic-boom/package.json","../node_modules/thread-stream/package.json","../node_modules/undici-types/package.json","../package.json"],"missingPackageJsons":["../node_modules/@tabnas/multisource/dist/package.json","../node_modules/@tabnas/parser/dist/package.json","../node_modules/@types/assert/package.json","../node_modules/@types/assert/strict/package.json","../node_modules/@types/async_hooks/package.json","../node_modules/@types/buffer/package.json","../node_modules/@types/child_process/package.json","../node_modules/@types/cluster/package.json","../node_modules/@types/console/package.json","../node_modules/@types/constants/package.json","../node_modules/@types/crypto/package.json","../node_modules/@types/dgram/package.json","../node_modules/@types/diagnostics_channel/package.json","../node_modules/@types/dns/package.json","../node_modules/@types/dns/promises/package.json","../node_modules/@types/domain/package.json","../node_modules/@types/events/package.json","../node_modules/@types/fs/package.json","../node_modules/@types/fs/promises/package.json","../node_modules/@types/http/package.json","../node_modules/@types/http2/package.json","../node_modules/@types/https/package.json","../node_modules/@types/inspector/package.json","../node_modules/@types/inspector/promises/package.json","../node_modules/@types/module/package.json","../node_modules/@types/net/package.json","../node_modules/@types/node/assert/package.json","../node_modules/@types/node/dns/package.json","../node_modules/@types/node/fs/package.json","../node_modules/@types/node/inspector/package.json","../node_modules/@types/node/path/package.json","../node_modules/@types/node/readline/package.json","../node_modules/@types/node/stream/package.json","../node_modules/@types/node/test/package.json","../node_modules/@types/node/timers/package.json","../node_modules/@types/node/util/package.json","../node_modules/@types/node/web-globals/package.json","../node_modules/@types/node/zlib/package.json","../node_modules/@types/os/package.json","../node_modules/@types/path/package.json","../node_modules/@types/path/posix/package.json","../node_modules/@types/path/win32/package.json","../node_modules/@types/perf_hooks/package.json","../node_modules/@types/process/package.json","../node_modules/@types/punycode/package.json","../node_modules/@types/querystring/package.json","../node_modules/@types/readline/package.json","../node_modules/@types/readline/promises/package.json","../node_modules/@types/repl/package.json","../node_modules/@types/stream/consumers/package.json","../node_modules/@types/stream/iter/package.json","../node_modules/@types/stream/package.json","../node_modules/@types/stream/promises/package.json","../node_modules/@types/stream/web/package.json","../node_modules/@types/string_decoder/package.json","../node_modules/@types/timers/package.json","../node_modules/@types/timers/promises/package.json","../node_modules/@types/tls/package.json","../node_modules/@types/trace_events/package.json","../node_modules/@types/tty/package.json","../node_modules/@types/url/package.json","../node_modules/@types/util/package.json","../node_modules/@types/util/types/package.json","../node_modules/@types/v8/package.json","../node_modules/@types/vm/package.json","../node_modules/@types/wasi/package.json","../node_modules/@types/worker_threads/package.json","../node_modules/@types/zlib/package.json","../node_modules/@voxgig/apidef/dist/builder/entity/package.json","../node_modules/@voxgig/apidef/dist/builder/package.json","../node_modules/@voxgig/apidef/dist/package.json","../node_modules/@voxgig/struct/dist/package.json","../node_modules/@voxgig/util/dist/package.json","../node_modules/aontu/dist/package.json","../node_modules/aontu/dist/val/package.json","../node_modules/aontu/node_modules/@tabnas/json/package.json","../node_modules/aontu/node_modules/@tabnas/jsonic/dist/package.json","../node_modules/aontu/node_modules/@tabnas/multisource/package.json","../node_modules/aontu/node_modules/@tabnas/parser/dist/package.json","../node_modules/assert/package.json","../node_modules/assert/strict/package.json","../node_modules/async_hooks/package.json","../node_modules/buffer/package.json","../node_modules/child_process/package.json","../node_modules/cluster/package.json","../node_modules/console/package.json","../node_modules/constants/package.json","../node_modules/crypto/package.json","../node_modules/dgram/package.json","../node_modules/diagnostics_channel/package.json","../node_modules/dns/package.json","../node_modules/dns/promises/package.json","../node_modules/domain/package.json","../node_modules/events/package.json","../node_modules/fs/package.json","../node_modules/fs/promises/package.json","../node_modules/graphql/package.json","../node_modules/http/package.json","../node_modules/http2/package.json","../node_modules/https/package.json","../node_modules/inspector/package.json","../node_modules/inspector/promises/package.json","../node_modules/jostraca/dist/build/package.json","../node_modules/jostraca/dist/cmp/package.json","../node_modules/jostraca/dist/package.json","../node_modules/jostraca/dist/util/package.json","../node_modules/module/package.json","../node_modules/net/package.json","../node_modules/os/package.json","../node_modules/path/package.json","../node_modules/path/posix/package.json","../node_modules/path/win32/package.json","../node_modules/perf_hooks/package.json","../node_modules/process/package.json","../node_modules/punycode/package.json","../node_modules/querystring/package.json","../node_modules/readline/package.json","../node_modules/readline/promises/package.json","../node_modules/repl/package.json","../node_modules/shape/dist/package.json","../node_modules/sonic-boom/types/package.json","../node_modules/stream/consumers/package.json","../node_modules/stream/iter/package.json","../node_modules/stream/package.json","../node_modules/stream/promises/package.json","../node_modules/stream/web/package.json","../node_modules/string_decoder/package.json","../node_modules/thread-stream/node_modules/events/package.json","../node_modules/thread-stream/node_modules/worker_threads/package.json","../node_modules/timers/package.json","../node_modules/timers/promises/package.json","../node_modules/tls/package.json","../node_modules/trace_events/package.json","../node_modules/tty/package.json","../node_modules/url/package.json","../node_modules/util/package.json","../node_modules/util/types/package.json","../node_modules/v8/package.json","../node_modules/vm/package.json","../node_modules/wasi/package.json","../node_modules/worker_threads/package.json","../node_modules/zlib/package.json"],"fileNames":["lib.es5.d.ts","lib.es2015.d.ts","lib.es2016.d.ts","lib.es2017.d.ts","lib.es2018.d.ts","lib.es2019.d.ts","lib.es2020.d.ts","lib.es2021.d.ts","lib.dom.d.ts","lib.dom.iterable.d.ts","lib.dom.asynciterable.d.ts","lib.webworker.importscripts.d.ts","lib.scripthost.d.ts","lib.es2015.core.d.ts","lib.es2015.collection.d.ts","lib.es2015.generator.d.ts","lib.es2015.iterable.d.ts","lib.es2015.promise.d.ts","lib.es2015.proxy.d.ts","lib.es2015.reflect.d.ts","lib.es2015.symbol.d.ts","lib.es2015.symbol.wellknown.d.ts","lib.es2016.array.include.d.ts","lib.es2016.intl.d.ts","lib.es2017.arraybuffer.d.ts","lib.es2017.date.d.ts","lib.es2017.object.d.ts","lib.es2017.sharedmemory.d.ts","lib.es2017.string.d.ts","lib.es2017.intl.d.ts","lib.es2017.typedarrays.d.ts","lib.es2018.asyncgenerator.d.ts","lib.es2018.asynciterable.d.ts","lib.es2018.intl.d.ts","lib.es2018.promise.d.ts","lib.es2018.regexp.d.ts","lib.es2019.array.d.ts","lib.es2019.object.d.ts","lib.es2019.string.d.ts","lib.es2019.symbol.d.ts","lib.es2019.intl.d.ts","lib.es2020.bigint.d.ts","lib.es2020.date.d.ts","lib.es2020.promise.d.ts","lib.es2020.sharedmemory.d.ts","lib.es2020.string.d.ts","lib.es2020.symbol.wellknown.d.ts","lib.es2020.intl.d.ts","lib.es2020.number.d.ts","lib.es2021.promise.d.ts","lib.es2021.string.d.ts","lib.es2021.weakref.d.ts","lib.es2021.intl.d.ts","lib.es2025.float16.d.ts","lib.esnext.disposable.d.ts","lib.decorators.d.ts","lib.decorators.legacy.d.ts","lib.es2021.full.d.ts","../node_modules/@types/node/globals.typedarray.d.ts","../node_modules/@types/node/buffer.buffer.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/web-globals/abortcontroller.d.ts","../node_modules/@types/node/web-globals/blob.d.ts","../node_modules/@types/node/web-globals/console.d.ts","../node_modules/@types/node/web-globals/crypto.d.ts","../node_modules/@types/node/web-globals/domexception.d.ts","../node_modules/@types/node/web-globals/encoding.d.ts","../node_modules/@types/node/web-globals/events.d.ts","../node_modules/undici-types/utility.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client-stats.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/round-robin-pool.d.ts","../node_modules/undici-types/h2c-client.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/dispatcher1-wrapper.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-call-history.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/snapshot-agent.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/socks5-proxy-agent.d.ts","../node_modules/undici-types/env-http-proxy-agent.d.ts","../node_modules/undici-types/retry-handler.d.ts","../node_modules/undici-types/retry-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/cache-interceptor.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/util.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/eventsource.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/web-globals/fetch.d.ts","../node_modules/@types/node/web-globals/importmeta.d.ts","../node_modules/@types/node/web-globals/messaging.d.ts","../node_modules/@types/node/web-globals/navigator.d.ts","../node_modules/@types/node/web-globals/performance.d.ts","../node_modules/@types/node/web-globals/storage.d.ts","../node_modules/@types/node/web-globals/streams.d.ts","../node_modules/@types/node/web-globals/timers.d.ts","../node_modules/@types/node/web-globals/url.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/ffi.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/inspector.generated.d.ts","../node_modules/@types/node/inspector/promises.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/path/posix.d.ts","../node_modules/@types/node/path/win32.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/quic.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/sea.d.ts","../node_modules/@types/node/sqlite.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/iter.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/test/reporters.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/util/types.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/zlib/iter.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/pino-std-serializers/index.d.ts","../node_modules/sonic-boom/types/index.d.ts","../node_modules/thread-stream/index.d.ts","../node_modules/pino/pino.d.ts","../node_modules/shape/dist/shape.d.ts","../node_modules/@voxgig/util/dist/util.d.ts","../node_modules/jostraca/dist/types.d.ts","../node_modules/jostraca/dist/build/FileHandler.d.ts","../node_modules/jostraca/dist/build/BuildMeta.d.ts","../node_modules/jostraca/dist/build/BuildContext.d.ts","../node_modules/jostraca/dist/util/basic.d.ts","../node_modules/jostraca/dist/util/point.d.ts","../node_modules/jostraca/dist/diff.d.ts","../node_modules/jostraca/dist/cmp/Content.d.ts","../node_modules/jostraca/dist/cmp/Line.d.ts","../node_modules/jostraca/dist/cmp/Slot.d.ts","../node_modules/jostraca/dist/cmp/Copy.d.ts","../node_modules/jostraca/dist/cmp/File.d.ts","../node_modules/jostraca/dist/cmp/Inject.d.ts","../node_modules/jostraca/dist/cmp/Fragment.d.ts","../node_modules/jostraca/dist/cmp/Folder.d.ts","../node_modules/jostraca/dist/cmp/Project.d.ts","../node_modules/jostraca/dist/cmp/List.d.ts","../node_modules/jostraca/dist/jostraca.d.ts","../node_modules/@tabnas/parser/dist/rules.d.ts","../node_modules/@tabnas/parser/dist/context.d.ts","../node_modules/@tabnas/parser/dist/lexer.d.ts","../node_modules/@tabnas/parser/dist/parser.d.ts","../node_modules/@tabnas/parser/dist/types.d.ts","../node_modules/@tabnas/parser/dist/utility.d.ts","../node_modules/@tabnas/parser/dist/builtins.d.ts","../node_modules/@tabnas/parser/dist/error.d.ts","../node_modules/@tabnas/parser/dist/tabnas.d.ts","../node_modules/@tabnas/multisource/dist/multisource.d.ts","../node_modules/aontu/dist/val/NilVal.d.ts","../node_modules/aontu/dist/ctx.d.ts","../node_modules/aontu/dist/site.d.ts","../node_modules/aontu/dist/val/Val.d.ts","../node_modules/aontu/dist/type.d.ts","../node_modules/aontu/node_modules/@tabnas/parser/dist/rules.d.ts","../node_modules/aontu/node_modules/@tabnas/parser/dist/context.d.ts","../node_modules/aontu/node_modules/@tabnas/parser/dist/lexer.d.ts","../node_modules/aontu/node_modules/@tabnas/parser/dist/parser.d.ts","../node_modules/aontu/node_modules/@tabnas/parser/dist/types.d.ts","../node_modules/aontu/node_modules/@tabnas/parser/dist/utility.d.ts","../node_modules/aontu/node_modules/@tabnas/parser/dist/builtins.d.ts","../node_modules/aontu/node_modules/@tabnas/parser/dist/error.d.ts","../node_modules/aontu/node_modules/@tabnas/parser/dist/tabnas.d.ts","../node_modules/aontu/node_modules/@tabnas/jsonic/dist/types.d.ts","../node_modules/aontu/node_modules/@tabnas/jsonic/dist/grammar.d.ts","../node_modules/aontu/node_modules/@tabnas/jsonic/dist/jsonic.d.ts","../node_modules/aontu/dist/lang.d.ts","../node_modules/aontu/dist/val/Decimal.d.ts","../node_modules/aontu/dist/exactjson.d.ts","../node_modules/aontu/dist/utility.d.ts","../node_modules/aontu/dist/err.d.ts","../node_modules/aontu/dist/aontu.d.ts","../node_modules/@voxgig/apidef/dist/utility.d.ts","../node_modules/@voxgig/apidef/dist/def.d.ts","../node_modules/@voxgig/apidef/dist/desc.d.ts","../node_modules/@voxgig/apidef/dist/model.d.ts","../node_modules/@voxgig/apidef/dist/types.d.ts","../node_modules/@voxgig/apidef/dist/parse.d.ts","../node_modules/@voxgig/apidef/dist/builder/entity/entity.d.ts","../node_modules/@voxgig/apidef/dist/apidef.d.ts","../src/types.ts","../src/helpers/applicability.ts","../src/helpers/serverVars.ts","../src/helpers/pointPath.ts","../src/helpers/packageMeta.ts","../src/utility.ts","../src/helpers/stdrep.ts","../src/cmp/Main.ts","../src/cmp/Entity.ts","../src/helpers/junk.ts","../src/helpers/definition.ts","../src/helpers/featureSource.ts","../src/cmp/Feature.ts","../src/cmp/ReadmeIntro.ts","../src/cmp/ReadmeInstall.ts","../src/cmp/ReadmeQuick.ts","../src/helpers/opShape.ts","../src/helpers/canonType.ts","../src/helpers/naming.ts","../src/helpers/opExample.ts","../src/cmp/ReadmeErrors.ts","../src/cmp/ReadmeStation.ts","../src/cmp/ReadmeModel.ts","../src/cmp/ReadmeOptions.ts","../src/cmp/ReadmeEntity.ts","../src/cmp/ReadmeUnions.ts","../src/cmp/ReadmeHowto.ts","../src/cmp/ReadmeExplanation.ts","../src/cmp/FeatureDocs.ts","../src/cmp/ReadmeFeatures.ts","../src/cmp/ReadmeRef.ts","../src/cmp/Readme.ts","../src/cmp/Test.ts","../src/cmp/AgentGuideContent.ts","../src/cmp/AgentGuideFeature.ts","../src/cmp/AgentGuide.ts","../src/cmp/ExternalTarget.ts","../src/cmp/Docs.ts","../src/cmp/ExternalDocs.ts","../src/cmp/Deploy.ts","../src/cmp/ReadmeTop.ts","../src/cmp/AgentGuideTop.ts","../src/cmp/License.ts","../src/cmp/Security.ts","../src/cmp/PublishWorkflow.ts","../src/cmp/Changelog.ts","../src/cmp/TestControl.ts","../src/cmp/ReadmeRefFeatures.ts","../src/cmp/FeatureHook.ts","../src/cmp/Registered.ts","../src/helpers/buildIdNames.ts","../src/helpers/getMatchEntries.ts","../src/helpers/collectDeps.ts","../src/helpers/modelNames.ts","../src/helpers/testPolicy.ts","../src/helpers/station.ts","../src/helpers/manifest.ts","../src/helpers/dryrun.ts","../node_modules/@voxgig/struct/dist/StructUtility.d.ts","../src/action/resolve.ts","../src/action/action.ts","../src/action/kind.ts","../src/action/feature.ts","../src/action/target.ts","../src/action/doctor.ts","../src/helpers/semver.ts","../src/helpers/shipped.ts","../src/helpers/modelcheck.ts","../src/action/check.ts","../src/action/package.ts","../src/action/docs.ts","../src/action/dispatch.ts","../src/sdkgen.ts","../src/testkit.ts"],"fileInfos":[{"version":"16934abaab7026ac114da441aabea1a0","affectsGlobalScope":true,"impliedNodeFormat":1},"d4306fb2e47f74835e8674ffac07d76f","e437c5c1302869326c3bb93da85bbbcf","e4324975a566567b21d350615f1fc6ac","333b1b9a2a9ac3b8497dba5c63b5ba50","6cffacd662b6eb5fa7a36aa2ea366bfa","b4c34f9c23304dbef2d23698637ed638","e5cb86a5fc491796ecd1d2dd348d208f",{"version":"aae8996e8b5684814785a42cbbefcd79","affectsGlobalScope":true,"impliedNodeFormat":1},"abad6dd56cc8caf095c165df8124d237","abad6dd56cc8caf095c165df8124d237",{"version":"2a9941db0809c9ad0e8837ed629b1dcc","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"d051b93324f36bcc68d152a5ca0988cd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"926204c28cd3d073865348473ae28d2e","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"f25e42c801b2cb3cf2b39792006a9beb","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"6344b55f26a4e81d9608777dbfb877dd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"3c0ed28e53d3695b363e256ec1c023fd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"4c2761daba7f17141c25baa0821ac5da","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b87656acabd63e69379ff6ffcfe52fc7","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"597469522da047a5af5222cc6989f405","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"1708ea4d34dc37fadadc63ca01127e80","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"55d97a8c6fbf34a30450a7b1e5f7a298","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"0ee05eb59426d33e374226d8dcfa708b","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"e347c14030993906efcfbb88915b6a05","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b0231263857c9b6a03641acdc9280ceb","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"3b15c4a83b598cacb4067676e6f0abed","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b417d97b7934cef63b1889abec0bbfbf","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"09a6cf4032ebba60ce22a501e663f881","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"2b056277dd138e8f5650fc04e20eaa8d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"e22cc07e3f3cc242ba52fa3f8ea1fc58","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"2c45da767a1bfbb220848df1bc4029e4","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b44c3e0fbaf2130cdcf6ac38b120ffa1","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b612fb5cf8e5d964b92063a75207632a","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"02705151a5e1551b9162a9ed8ab763f7","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"41025e398be9215d32e4337335da8f0b","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"52684c2b1f353a5538e4f275182a54cd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"6dedb6a4f90d1df3a6fbe5693e44886c","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"ca3f36fe3562c07e0f0d71c2bebd3f6d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"409974d6129befbb8226ddd1c6558568","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"4d9cfde2a1ae1b4925f1f9bc10848e5d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"7e1daecc66dd564144e3bb1a0266b5fd","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"a8e1d9bb35fd0637f2f9fd2b2a54f2ec","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"4f168501772a6543182765bfd5f2fbfe","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"a19c80aad1b2162103496f5ba293a732","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"b69afa63cd5d059851c78adb2856ee09","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"ae2fc5d954e9b0f5feee3d481b953c27","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"1cfd3091a071d8b6feec15277643bafe","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"1da2c1f258970fd3cc91184f69e91a9d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"a0d87491913d843139e0c993650a3235","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"4ef72aa378127e7b7abba915b0110b1e","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"3ec74c6a7d4463f0254db3a74cf75646","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"84c2bdfa470d075526cce6322d81b0b6","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"0b3844c2b8c73e4e1ab91431411cad11","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"0219894bfe5042c7e1aa2d22e4a91ed0","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"be41035d7b941482a1e1ae6a5c5dcca5","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"f64453cbf9671f28158677fa5c43967a","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"33f317af5428801f944a478d2c1e38e5","affectsGlobalScope":true,"impliedNodeFormat":1},"38cf6576be124e8937b39b9f927f2252",{"version":"014eb4d3e0618e548a7001fb52d9f78b","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"29aa5df597455c046c2c88185c75534b","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"c5eb15737c858d986e0d5a542103b1df","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"ec83150a952000d42a7e6ccedac2d892","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"494755686d9e421e630117d917760e4f","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"c3f3d4053311f68af31e07f6e167faf6","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"86013697f2045d357ef20d7a952cdc12","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"fbef359f7184dcd12e5b3b95b171cca0","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"1ca5302f6fe11154128eef397b5a285b","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"13835e9ba9b025ad7cab01fe7bad1fe3","affectsGlobalScope":true,"impliedNodeFormat":1},"49133c0dfbc32ab95668c3443dea49e5","d0b24ed45e91de84ca0fbafde3797006","9f970a4ba4bb3ed6326d46b3ddab3f63","7326b52c300bf65ac2f7e089fa536421","75de66fc4824402123c0d694ccc0a085","ff1283d1b4e6fa719203127857079e2e","fcd1a513c1e5802916fa602e8b8e64bc","78963d55a7500f2a08ecf81c3e2f2351","c1ace754853b3b972549a44a2316ca86","cf4561df3889c71b6b70fda4afe61f62","705645fe223430c696f47b708d592ca8","28d57c837c94adb42add03d499793cab","8c01a9bbae8449be21b3e018d59a74ac","b4a1cb50a619bde79c20d19aeb560633","21dc8b1a2dfd71b39278fd1db4055489","74d351e4ed233e82c6d74c444c1a6b86","35b9b5981aa2c74f808ba3334548e89b","81870445ff689f1a6c65a6d62e034298","d7131a7789ae06e6ba79d7cd1841fde7","dd373f44a8c44dd9286f3b43e07fc873","d7e5f7a0f1f883f28458f684106e7643","c2364011a80b6a9e3cc0e77895bad577","38da5c670190f4a35cbc204ca6c616bf","d95cc0eb29beed58f5ce72db21398f53","ecd53256b1ec7379c73316eaf392a69c","9871d4fb594b51eb13a3f6db71e01844","69c7bb9c3befe9ae37eed0e6a6310fee","c9351e1ed4d066672ad38be5c44f60b9","71e556084722c2a3f00f47d999db1e35","094ecadae30f65a82b77343dde77a666","f75df12d75dd783b03a0329b95abdb25","b438b08b2f0ed94a95a75c8990d9021b","f2becd2589591db92ab14e803eb8bdd5","230b29c24dac9c9800ba909debbaf7c4","518eaa3ff1153eacd0343a6bab2ce870","0468c0ccd0ec7770b76481b165564d62","188234d616a4f50ed9b14c8f84a39f33","4c116bcf0a47ea8fbf4072f380925fa7","213fda99209bff9d0330b6d9f5c9c7f3","add85ec26ba695fc99c698dbec065f8c","5bfde23f96fc502b5413d772c35e1abf","b744265d8ad12b7d4d5c5dc35d18d44e","eff32168b8348b822afeed9cbf61afa7","531a291f1cbe853ce3a138313c7448e9",{"version":"3b4fc11e9a5d20c846f1ba38889cbc8d","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"53b0e86dfe96eb781a056e2662bf1e3b","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"d0bac56ae60094675c08a325b81d3b1a","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"292c9398a407b33b1d9c9812b673387a","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"83bc735c360e42b09f2b102d7b831ede","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"45df94b3c51b898624bacc2bcd6d9eb2","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"0b1a6b0b0f8828c286f9ae2ba01c4a5c","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"8617a23553d74c31be6da303c668bd18","affectsGlobalScope":true,"impliedNodeFormat":1},{"version":"3f2d808ba5f1ae3681bf7df616488dcd","affectsGlobalScope":true,"impliedNodeFormat":1},"4e58ba439fc661a1e2337fd17ae89d94","604aab8dd7c02abe3fcf1218fa951439","eb8c0e64b0e0e76f43e7c552937a365f",{"version":"d9f08c6ae1f16ca22e5a7ee7c02e8f55","affectsGlobalScope":true,"impliedNodeFormat":1},"e894ca92e848c9059a67e916bf4a5ccd","2c43726da10a0a524992e6fd4a561aba","75c6ee2c7a0e7d54f06ae1941553f44f","9af5958f27aacf7d18939d710f5b0da4","477debf4dddf6a7f1684cb0c082627f9","e83763b51773b219b802af074c41c158","dca9e0bed5a66eaef8e9d2533b733526","4fbcefaa3aa9d4af9d76d946c7c445cc","949ce92cb920c39fb4ff87098ebe56af","2d8ebe6eb639d14875e12acf069d9c65",{"version":"2d30f3e526b72134674afeee7eb5f870","affectsGlobalScope":true,"impliedNodeFormat":1},"3dc88bd6dd1ffa2f65dbb913face44d9","dcf2edcdc46db8eeae5612e2e6639d35","cd2631f28a9d8693684fdf8a4fd85b6c","fd2f650b7f74615ee5b2fe92e47597d6","85fa83ba26c02415ce3db83b2e93e420","8383fa58c2f75291c454f84915f12190","856e7f9f1e0e64dfa73b2026886d9380","fc81ee7b08868ee0973983110e2ef386","f7be6b8b253b7d07c8476f23bbdc98c1",{"version":"48b2540ad661c32ab2cf99d5d0300f98","affectsGlobalScope":true,"impliedNodeFormat":1},"552f49661c80ae3d5da105854ee1d892","beb256af4099983453b3f33660699c9a","860f49c8d6ad48b19bf7ed0bc5d2824e","235cc33b85ac998f0f2df0807648acb8","c0c62035e8f8a0b6da47b6277fd6dbb2","1b176e9abc725e3ab4838bc569ed6e3a",{"version":"087bfa2b5ba564e440ae7ce58cdaec26","affectsGlobalScope":true,"impliedNodeFormat":1},"196cd3003168b4ee2df015d15cfed000","66b5b9b84ab95e019a6e1f5edb8bd250","146fcbe77125b5445cfc8f768f476263","2e2ed32d5133fb4c60f95543217e669e","2580385b74019e646d76a9f68fdbf31b","aa0f7a546acda88ef0a5df40ff0e5122","b3bdce048b1c601e1a19a4c3ee32053b","745cd00eab8a5c34d9480b4fb7fdf30d",{"version":"c18928bec3bc65892c54962be1683163","affectsGlobalScope":true,"impliedNodeFormat":1},"f9c43b0225ab4f6dc8aff6e619d322a8","387ec148012e77360d5db33ba45b8b2f","6e1de2df81bd936ffb5509f921f1fc8c","c7576162a5c832fc7681771ad7a50357","9959a7e96eedcbc697460cf0d31bda74","9fb8d78102547ed86d26e45b0d0542de","0b355907ec29bf7f68cedaff3b6b71f5",{"version":"b73a052b5fd08948bd559dcca4424ede","affectsGlobalScope":true,"impliedNodeFormat":1},"e6ad9a1d5cc3099621a4a7bba328d248","13c7d30ec9c5b3f2e8030aa28afcd9f3","b4dbe09999921e219d6ff56b29720eae","4d2cb96ef76779819df8963314db8b6b","93f25f3a36ba4dd4c8efff0cc442f118","513ff65469f15b8059ed4edd7033614a","b0466c3034f5921a2c78e7da534f2b19","4c638ae62e5dbcc434c231576773dd6c","8e0c0fb59513333b77efcbd43da1ce7f","3b1ae8bab308b1e5ac7e7a26d27167ad","a41a5f7019678ba4b53936492dc465d1","35c1d312d8ffabf1e4546bfeaeb4142e","6728fae9ef4170f6403bf6db25cc60c6","9fd5b314bfba8a89299a1031ae1d82c0","8a5461a97d8700e7552b5f2de23355c5","19ea683f237d4f1a8d1fb5789ed7ff36","4606cd264859db2db4b881e9958b393b","8380977a7a864769d4c9d984bc964574","e3114f142e8293ca9230a78adf7945e8","1869b5a824d7e68d1bf7d829d82182fa","73f954f05b1f8f4a420d6f9a9dde0153","2f396b48529c3a75f3f064136381ec3a","d5fa7223c765ff1c72df545685819771","964b93fcaf4ada3a20898285060f6a4f","63bd166a09cd79156a53f10919313911","0ded228b608587b1cc732ed382250459","a6c9cd9b7d62864c0d1e43b46368a101","ccd12bf45eb7e2ff14f393e52b827adb","720db138494767a200574a0e42a5ba6b","bc571a2988b6bdda551dde33e763f0a9","564ea6121cd49bfa118da9b88f380a61","6ea8e818ae767cecaa148360c3a27bd0","c416cd4d6ac51cbef4e892a28c6a7a03","f38b3abd50ab377e9a9c7ac8a49bf19e","0f0b2fd5a27852e6d8d67ef228ba4eb9","4c6c78de4e3b7d373e59670f7c801519","8eb5d967b0720f3641574c4d6ccd6b5e","09a77ec4a0dd6723fecbd78e4c0bc045","6e75de1822cdb240653677a05aae07a7","798434aea27db1ffda7d7c1c5ec4dce6","76f859acbac8ad3e30ae218bb3b81758","a70aaaac9db6995a64a79667fb3be6f7","89c378fff3600fa323d3aa2ac7d0ee7e","6aea6a3ae0c80cc4ae693d3b114d88e5","ffb329796d6ddcad32ffd5623732bbc7","a0a21c5ce0f8a9047a411e27b12ccb84","265dd9b190ff08ccedc99f7199d78b40","683cbe54bcda8edb627be32c470e40c5","680ec032e98f5c98f3c3905d33440762","a1f7f61bcc55fe89478da41d3e1711ec","00aad7870247297581e6a8121fe0c326","55144215cda55b4de664c0a08e71585a","8f4b78dc627377674c90e0ea67714d2d","6e75de1822cdb240653677a05aae07a7","798434aea27db1ffda7d7c1c5ec4dce6","a5484437627fbef14aec45d69fd3c1b3","a70aaaac9db6995a64a79667fb3be6f7","49bad8a06713c6608772e0de91c42802","6aea6a3ae0c80cc4ae693d3b114d88e5","ffb329796d6ddcad32ffd5623732bbc7","a0a21c5ce0f8a9047a411e27b12ccb84","81e42469dff48fba7ae0502b1f455c5a","eb40f3fcb554ad63f29d4bad90aa7818","5dcc89cf119c72b67d6dc9875b8424dc","3b5f711353ee129aa8acaf4e7366799c","5c797dda13a5a834b3bc724585e663d6","89f0a81be532f0f548d1a0616db3acda","4e79d05df527c21f3ede8872ced08551","048bea3995610d1c905b6ba34f230483","c940dd5e148e57a09966576210a0edec","91decba6e8f8a6dc2cda06704e159354","d36c48fea6765e21f23675e540ad08cf","cfb93122b4878919d4f43cb0dfe3009f","872204553e3481fe5abc876f3b38a265","0e3ed348e930bc92f06faa5b2737cff1","c8d11d9e40c0fca25f66e66bd9eb2520","693f0c1d06ca1eda4ef97422331e60f4","d22b49c600da1ae44a4b0bd5e6b7520a","c402cfcd40c9b9f1b0dc9d99013e828f",{"version":"c03785a76203265171392822e96ebb39","signature":"f4bc0557ac04ff36ef9c6af3edd963a4","impliedNodeFormat":1},{"version":"06e6680b97d8ffc22f57bed37174bb5a","signature":"0166acffee22d74455f06c0d1c0670ca","impliedNodeFormat":1},{"version":"b0e8d0ed550692153eea7ca4dc4454c8","signature":"f43bdedc4f5bb091ee1962b022606a50","impliedNodeFormat":1},{"version":"43f4a0e9d1acacc37969ecc98e48988e","signature":"4bfb3be0601539d02d56d5959808ef10","impliedNodeFormat":1},{"version":"6d5365ecfb8d639f033a70f427f4142a","signature":"b701c12b08aa77336d05e78c9df11572","impliedNodeFormat":1},{"version":"cdbe00e6de6bac1687804383fa8e37e6","signature":"fb512329a37f31058f747543980cdd38","impliedNodeFormat":1},{"version":"b550e93b1ae7b0350a68808b0f0c0301","signature":"4edcb0058ab00e5dd4a6cbd2c2d5ce6c","impliedNodeFormat":1},{"version":"8959c26ca7d8481a76affc5d2e263895","signature":"e6c6e44fdc770f299d9b21316355db13","impliedNodeFormat":1},{"version":"1d034436db73e20c90bb0ca68a28c418","signature":"32027250a06fd60bb0f4e97858ec09c1","impliedNodeFormat":1},{"version":"590faf80c6423346d7b281758e2e60f8","signature":"317090a03ddf7c3af517379bfd13c8e8","impliedNodeFormat":1},{"version":"8335f28b31da9458ce3a0f31a8c0c198","signature":"4270935ce8deb80eb9b96775394f7f1c","impliedNodeFormat":1},{"version":"32f85093ab3fdbcb3812cd6db46bd78a","signature":"3ee84f0a4ca1f8f24a558a4a8df1fbfb","impliedNodeFormat":1},{"version":"1157b007a4b9f713d0eba8fed3b5065b","signature":"bf825e2c1688383a62f84c9b310a525c","impliedNodeFormat":1},{"version":"55e487d107026f950b753889ddf52842","signature":"6086dc8fab5be16745d27719cb21460d","impliedNodeFormat":1},{"version":"369fb9c6d3407ea863fe44f815049e3f","signature":"b078e85e918f0c10c05e70e74daf4d5b","impliedNodeFormat":1},{"version":"94a6b63e2287ede9e4ef0baa805e0211","signature":"ff8ab1272fcbfb97938ba2ca1bb5c87f","impliedNodeFormat":1},{"version":"7fa45a92961f12bb1d755e81d58cde9c","signature":"bcbc3fba6f33636d50e87806289b68e0","impliedNodeFormat":1},{"version":"2123efe072243dc38fffbadcccb3bc64","signature":"e79df17bf09b18d2b0a529f84829116a","impliedNodeFormat":1},{"version":"e679c37a2aebdc666bb072aa40271259","signature":"8141f90901f7ddcc5ba816226bf37f4d","impliedNodeFormat":1},{"version":"6222125fb01760668db0fd1236a4a8ba","signature":"d327ccfa6f907d74c68d254aa637e144","impliedNodeFormat":1},{"version":"aa03d499ed3af9a36e056045b0d55d18","signature":"8ec7d90dc414b0898acc2255f6ccb801","impliedNodeFormat":1},{"version":"b4c2c39f4fac3c7b00b4e3bc7c5cbc92","signature":"d938ea7306d2b1d65df9541a4d99790c","impliedNodeFormat":1},{"version":"4396368a041d46f43dac3461d0bc3876","signature":"adbb5a05829a9296f4599222a2fd5c1c","impliedNodeFormat":1},{"version":"7a473f49c4a67001fab4fed92d82d323","signature":"573c5a2d2abb23a3eed63018a2912ecc","impliedNodeFormat":1},{"version":"a07233dea8f354196d61870208a1e0f8","signature":"af69ebef82a5018aeb76abdebd3469d5","impliedNodeFormat":1},{"version":"48ac53e6f75a4d95f42b3552d5f87209","signature":"965efca0ead04ac7a24d343a230bf858","impliedNodeFormat":1},{"version":"003f48453335924a626b1b83b9294df9","signature":"b775b6020a2e757266b5134eeda10adb","impliedNodeFormat":1},{"version":"945d23ca6d8f0fb181d0d712d1d4c118","signature":"e754f1d4f7b3f5ec768871bb308fcf99","impliedNodeFormat":1},{"version":"007a9405d67b935195358f07f1d68812","signature":"f33f7eb094950960d15fc50a9dfe4a0a","impliedNodeFormat":1},{"version":"43ba30338897ebaaefcabddf6b5b9902","signature":"2214c073febde09435469bdb9b731b1e","impliedNodeFormat":1},{"version":"9f7d6560dc4963aff2f6a68fcba65627","signature":"9d58f318ecdacd2df6fc20d31c081268","impliedNodeFormat":1},{"version":"236890dd868dedb2bd4256eeeeb5a83e","signature":"6161dd322fef2b5dce109775491c70be","impliedNodeFormat":1},{"version":"f5abf9dd9e878ebd06015502a5641074","signature":"65966e59164055f68b179af7d9c689f7","impliedNodeFormat":1},{"version":"548f0befe90f0ca0a0f02c05cd46f675","signature":"b94c79843d05d03d940e339a56444580","impliedNodeFormat":1},{"version":"4cf4d1cbbe8201f2f7d3182a0bc43574","signature":"f5a7a2eb0404c7611d1edc9b598a3954","impliedNodeFormat":1},{"version":"152d31326cf7dcdec8c11eb2208bedbe","signature":"b86621a36f1985bb0f48ffca3a2aee79","impliedNodeFormat":1},{"version":"3f0086dcc6f512e95e8e3f3e3984c6e3","signature":"a9e1fd63893011d2bf191c8a68864944","impliedNodeFormat":1},{"version":"bed2b41295ca3b69a9fab5c04ca0afda","signature":"5c8ba3da60ceb1ef62910a57b11ec25b","impliedNodeFormat":1},{"version":"57ea2c4bfce6b569d66c116adb0d6c2f","signature":"a483299392ca2918d3fc1f05d0a24f23","impliedNodeFormat":1},{"version":"adec1354265ffdf6777c843079813d75","signature":"efc8b431cc32b07eec1d53a338481a36","impliedNodeFormat":1},{"version":"ddb0f1955410b45ba6faf0468674b22a","signature":"56ce02a69771790214706b50e0114331","impliedNodeFormat":1},{"version":"75d754bd020fe0ee1af7f2db10516dd3","signature":"f9daebeaf64f7148e821f2e8afd78c10","impliedNodeFormat":1},{"version":"19e5e3efd6acbb8ba9601f997914dfae","signature":"8e8a29f2a81bc3eec29397ea19e061a1","impliedNodeFormat":1},{"version":"04228d5f522c98ec969b5ce958ff04c4","signature":"cd599d07665d0aba3623debf2252a932","impliedNodeFormat":1},{"version":"d7b7bc4a9c05e3c3a6907ab855a844d4","signature":"af1bf43eceed9194f1f5674d6767ba5f","impliedNodeFormat":1},{"version":"023b06a8c8660f6d8dc34af3135f53f6","signature":"c9ee6ec05583599998a5e8dd9f7ff677","impliedNodeFormat":1},{"version":"8b28fc5797e024d92352dd4159a5925c","signature":"204d79698496d1c86799a1dcaacb6915","impliedNodeFormat":1},{"version":"eb76b57760f32d44f7f2d5c04a62f6d0","signature":"ebd8f38635d44fb32ca53c062f601dc9","impliedNodeFormat":1},{"version":"e5369000b114c1fd6069482e6e1693aa","signature":"999e13284bc3bae3d0b035a890f557f7","impliedNodeFormat":1},{"version":"98cbf6e3749f2cb3b3b63a2a803c2d9f","signature":"1097b43115b8ee2ced952cbec6c2d8a9","impliedNodeFormat":1},{"version":"41c102df520915af9aa5d229bbacd6d9","signature":"4d8d595a2d6bf42f711eb7e3ec3cf67d","impliedNodeFormat":1},{"version":"86f35566e9208dc992db72ae0973d44d","signature":"050542523f9a34c14da62d3a55befe45","impliedNodeFormat":1},{"version":"532ee6f92c2171d448ba7ccd5f63c6cd","signature":"3260106be8bb66c0bc82ddd0f61098e8","impliedNodeFormat":1},{"version":"31fc00482da8f1042096763d5fd11ff9","signature":"06f204e94bb5f7d7c57ce0975b74d512","impliedNodeFormat":1},{"version":"190032522a1e1b8a563a59aa500fc681","signature":"a045381fb8557a796139c174c9812f9a","impliedNodeFormat":1},{"version":"09bb652f6bb48876210245019b7e75a5","signature":"4d8dbb504e62caf464ed6b18ca8928d3","impliedNodeFormat":1},{"version":"bea2270e9a45438951cf05b941272d7b","signature":"c259245cd6413e259142fde7e97bab13","impliedNodeFormat":1},{"version":"b8a4b53cf8daf966f75b30afb74dd85b","signature":"b6e2d367c2f26a913207d6ebe12da91c","impliedNodeFormat":1},"ef468f45a9c0a754afecd35aa1583230",{"version":"03ef0211bf15a4bff584af88bec12884","signature":"886c772e464976a673fd24d55e036e38","impliedNodeFormat":1},{"version":"453d69d6fc740f317b02444831f91a15","signature":"15a1b614bfbc4ebc68e8bcebd1c88bcc","impliedNodeFormat":1},{"version":"bfe9eae464bbf3fcc9d7236ff5e0c60b","signature":"b53911713cb26d0adda41aa631362be7","impliedNodeFormat":1},{"version":"86036704fd9512a129fe8aecf0e63df2","signature":"2b92dca00b1847bfc6ad1a83d60b3d59","impliedNodeFormat":1},{"version":"24bbce7adf9cdd41f24175adef1580fd","signature":"7657cf1bf4d5f3ca5fe009cf8839ce36","impliedNodeFormat":1},{"version":"c610797587ddd2f856887931bc3e0f5e","signature":"7efbcf66b1a7dcc9494513cda4e662df","impliedNodeFormat":1},{"version":"db672e1f9addc5f042d694c79b8df8f0","signature":"c12c9b737116c195aa8abb2ef852f7ed","impliedNodeFormat":1},{"version":"aeb9d7eb85f214073485fae0912d6368","signature":"71521efa092162b21f6acbd4f073cc6d","impliedNodeFormat":1},{"version":"269f0dcc96d1a5c5fe1005138257b2a7","signature":"fca445e138b235df0d73aa028cb66420","impliedNodeFormat":1},{"version":"0052ede845674f468b9545ee9b4eda60","signature":"965aaaebad1f363dcc4d9dfead91f649","impliedNodeFormat":1},{"version":"0af69ca5247310a580a10b52f98c1bbc","signature":"53ddaceacfc1e42e7677684f9403957f","impliedNodeFormat":1},{"version":"46633cb53070e000d5ae5a68a3515de5","signature":"3806eb50d2d68f9c89d82f583403b326","impliedNodeFormat":1},{"version":"24dd0ea660e950879ebadd31bb85a98b","signature":"74eac5becd1b8e350018d79a6f49aada","impliedNodeFormat":1},{"version":"e49ba5c82021fba77f258bea7fe16f98","signature":"7f962e35a53ea1b9f33d903b92054d36","impliedNodeFormat":1},{"version":"72caf78df783c09c5dedcc05ac9df8f2","signature":"2d4a8253b70e6e45014ff5b95859878f","impliedNodeFormat":1}],"fileIdsList":[[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,217],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,213],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,209,213],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,209,211,212,213,214,215,216],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,209,210,211,212,217],[60,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,112,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[59,60,61,62,63,64,65,66,67,68,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,172,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,173,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,175,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,176,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,177,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,179,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,180,181,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,181,182,183],[60,112,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,112,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,182,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,183],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,242,243,244,245,246,247,248],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,246],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,242,243,246],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,189,190,244,245],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,188,189],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,220,223,236,237,238,239,240],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,219,223],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,219,220,223],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,221,223,235],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,223],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,218,222],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,220,222,223],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,220,221],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,232,235],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,232,233,234],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,232],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,228],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,224,228],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,224,226,227,228,229,230,231],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,224,225,226,227,232],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,191,192,193,208],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,192],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,191,194],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,191],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,189,191,194,195,196,197,198,199,200,201,202,203,204,205,206,207],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,189],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187],[60,75,78,81,82,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,78,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,78,82,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,72,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,76,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,74,75,78,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,72,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184],[60,74,78,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,69,70,71,73,77,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,78,87,96,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,70,76,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,78,106,107,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,70,73,78,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184],[60,69,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,72,73,74,76,77,78,79,80,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,107,108,109,110,111,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,78,99,102,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,78,87,89,90,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,76,78,89,91,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,77,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,70,72,78,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,78,82,89,91,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,82,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,76,78,81,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,70,74,78,87,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,78,99,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,91,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,70,74,78,82,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183],[60,72,78,106,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,250],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,250,251,255,260,261,306,311,316,317],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,250,311,312,313,314,319,320],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,250,255,256,259,309,310,311,313],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,250,255,256,259,260,261,309,311,313],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,190,208,250,255,256,259,261,307,310,311],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,250,255,256,309,310],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,250,255,306,309,311,314,315,318],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,250,260,306,308],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,190,208,241,250,255,256,259,261,307,309,310,311,312],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,255,283,284],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,250,251],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,283],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,250,255,256],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,250,287],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,249,257,258,262,281,282,285],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,251,256,261],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,254],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,250,254],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,263,264,265,270,271,272,273,274,275,276,277,279,280],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,255],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,250,266,268,269],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,250,251,255,266,268,269],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,255,278],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,250,255],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,278],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,250,254,255,266,267,268,269,278],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,255,256],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,249],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,249,250,251],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,259],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,249,259,260],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,260],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,249,268],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,241,316],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,266,267,268],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,249,253],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,249],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,255],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,249,250,255],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,254],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,250],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,190,208,241,249,250,251,252,253,254,255,257,258,259,260,261,262,263,264,265,266,267,268,269,270,272,273,274,276,277,280,281,282,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,312,313,314,318,319,320,321],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,250,319,321,322],[60,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,208,249,251,252,253,254]],"options":{"composite":true,"declaration":true,"declarationDir":"./","module":199,"noEmitOnError":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"strict":true,"sourceMap":true,"target":8,"esModuleInterop":true},"referencedMap":[[218,1],[215,2],[210,2],[216,2],[211,2],[212,3],[209,2],[217,4],[213,5],[214,2],[122,6],[123,7],[124,8],[60,9],[125,10],[126,11],[127,12],[128,13],[129,14],[130,15],[131,16],[132,17],[133,18],[134,19],[135,20],[136,21],[137,22],[138,23],[139,24],[61,25],[59,25],[140,26],[141,27],[142,28],[184,29],[143,30],[144,31],[145,32],[146,33],[147,34],[148,35],[149,36],[150,37],[151,38],[152,39],[153,40],[154,41],[155,42],[156,43],[157,44],[158,45],[159,46],[160,47],[161,48],[162,49],[163,50],[164,51],[165,52],[166,53],[167,54],[168,55],[169,56],[170,57],[171,58],[172,59],[173,60],[174,61],[175,62],[176,63],[177,64],[178,65],[179,66],[180,67],[62,25],[63,25],[64,25],[65,25],[66,25],[67,25],[68,25],[113,68],[114,25],[115,25],[116,25],[117,25],[118,25],[119,25],[120,25],[121,25],[181,69],[182,70],[183,71],[56,25],[57,25],[11,25],[9,25],[10,25],[15,25],[14,25],[2,25],[16,25],[17,25],[18,25],[19,25],[20,25],[21,25],[22,25],[23,25],[3,25],[24,25],[25,25],[4,25],[26,25],[30,25],[27,25],[28,25],[29,25],[31,25],[32,25],[33,25],[5,25],[34,25],[35,25],[36,25],[37,25],[6,25],[41,25],[38,25],[39,25],[40,25],[42,25],[7,25],[43,25],[48,25],[49,25],[44,25],[45,25],[46,25],[47,25],[8,25],[58,25],[53,25],[50,25],[51,25],[52,25],[54,25],[1,25],[55,25],[13,25],[12,25],[249,72],[248,73],[243,25],[244,74],[245,73],[247,25],[246,75],[242,73],[308,25],[190,76],[241,77],[220,78],[240,79],[238,25],[236,80],[221,81],[223,82],[239,81],[237,25],[219,83],[222,84],[234,85],[235,86],[233,87],[230,88],[225,88],[231,88],[226,88],[227,89],[224,88],[232,90],[228,91],[229,88],[194,92],[193,93],[192,94],[198,95],[201,95],[202,95],[205,95],[204,95],[203,95],[199,95],[207,95],[206,95],[200,95],[197,25],[208,96],[191,25],[195,25],[196,97],[185,98],[188,99],[189,25],[186,98],[187,25],[87,100],[101,101],[84,102],[102,25],[111,103],[75,104],[76,105],[74,25],[110,98],[105,106],[109,107],[78,108],[88,101],[98,109],[77,110],[108,111],[72,112],[73,106],[79,101],[80,25],[86,107],[83,101],[70,113],[112,114],[103,115],[91,116],[90,101],[92,117],[95,118],[89,119],[93,120],[106,98],[81,121],[82,122],[96,123],[71,25],[100,124],[99,101],[85,122],[94,125],[97,126],[104,25],[69,25],[107,127],[310,128],[318,129],[321,130],[320,131],[314,132],[312,133],[311,134],[319,135],[309,136],[313,137],[285,138],[283,139],[284,140],[291,140],[295,141],[289,128],[287,142],[258,142],[288,143],[286,144],[262,145],[278,139],[298,128],[292,146],[257,142],[294,147],[281,148],[274,149],[270,150],[277,151],[279,152],[276,149],[264,149],[263,149],[272,153],[273,149],[265,149],[280,149],[297,154],[271,147],[290,155],[275,128],[299,156],[293,146],[282,142],[296,141],[251,157],[300,25],[267,25],[302,158],[260,159],[307,25],[261,160],[301,25],[259,25],[306,161],[303,162],[317,163],[268,25],[269,164],[266,165],[254,166],[253,167],[315,25],[252,25],[316,25],[305,168],[256,169],[304,170],[322,171],[323,172],[250,166],[255,173]],"latestChangedDtsFile":"./testkit.d.ts"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voxgig/sdkgen",
3
- "version": "4.14.0",
3
+ "version": "4.15.0",
4
4
  "main": "dist/sdkgen.js",
5
5
  "type": "commonjs",
6
6
  "engines": {
@@ -3,7 +3,7 @@
3
3
  "package": 1
4
4
  },
5
5
  "name": "@voxgig/sdkgen",
6
- "version": "4.14.0",
6
+ "version": "4.15.0",
7
7
  "provides": {
8
8
  "target": [
9
9
  "c",
@@ -25,6 +25,15 @@ import { packageName, packageVersion, repoInfo } from '../helpers/packageMeta'
25
25
  // deliberate act by someone who can see the result, which is what a release
26
26
  // should be.
27
27
  //
28
+ // IT TAGS WHAT IT PUBLISHED. A release that reaches the registry but leaves
29
+ // no ref behind cannot be answered later: `@voxgig-sdk/github-sdk@0.0.3` went
30
+ // out by dispatch and the repository had only v0.0.1 and v0.0.2, so nothing
31
+ // in git said which tree the published tarball came from, and nothing
32
+ // downstream could pin the SDK by tag. npm's trusted publisher is bound to
33
+ // ONE workflow file, so the tag has to be cut inside this one -- and a ref
34
+ // pushed with GITHUB_TOKEN starts no further workflow run, so it cannot be
35
+ // delegated to a tag-triggered publisher either.
36
+ //
28
37
  // THE WORKFLOW FILE NAME IS PART OF THE TRUST CONFIGURATION. npm binds a
29
38
  // trusted publisher to the repository AND the workflow filename, so renaming
30
39
  // this file silently breaks publishing until the npm side is updated to
@@ -65,7 +74,7 @@ const PublishWorkflow = cmp(function PublishWorkflow(props: any) {
65
74
  Folder({ name: 'workflows' }, () => {
66
75
  for (const target of npmTargets) {
67
76
  File({ name: `publish-${target.name}.yml` }, () => {
68
- Content(publishWorkflow(model, target))
77
+ Content(publishWorkflow(model, target, npmTargets))
69
78
  })
70
79
  }
71
80
  })
@@ -84,8 +93,40 @@ const PublishWorkflow = cmp(function PublishWorkflow(props: any) {
84
93
  })
85
94
 
86
95
 
87
- function publishWorkflow(model: any, target: any): string {
96
+ // WHICH TAG A TARGET'S RELEASE CARRIES.
97
+ //
98
+ // A repo here publishes more than one npm package -- `ts/` and `js/` are
99
+ // separate packages from separate folders, on a lockstep version -- so a bare
100
+ // `v<version>` cut by each would be two targets racing for one tag name, and
101
+ // the loser would fail a release that had already published.
102
+ //
103
+ // The convention is the toolchain's own. @voxgig/apidef tags `v<version>` for
104
+ // its npm package and `go/v<version>` for its Go module; the generated root
105
+ // Makefile tags `<target>/v<version>` for every port. So: the ecosystem's
106
+ // PRIMARY npm target owns the bare tag, and any other npm target is prefixed
107
+ // with its own name.
108
+ //
109
+ // Resolved by comparing package names rather than hardcoding 'ts', so that a
110
+ // project that renamed or replaced its primary target still gets one bare tag
111
+ // -- and if none matches, every target is prefixed, which is wrong in no way
112
+ // that loses a release.
113
+ function isPrimaryNpm(model: any, target: any, npmTargets: any[]): boolean {
114
+ if (1 === npmTargets.length) {
115
+ return true
116
+ }
117
+ return packageName(model, target.name) === packageName(model, 'npm')
118
+ }
119
+
120
+
121
+ function releaseTag(model: any, target: any, npmTargets: any[]): string {
122
+ return isPrimaryNpm(model, target, npmTargets) ?
123
+ 'v$VERSION' : `${target.name}/v$VERSION`
124
+ }
125
+
126
+
127
+ function publishWorkflow(model: any, target: any, npmTargets: any[]): string {
88
128
  const name = target.name
129
+ const tag = releaseTag(model, target, npmTargets)
89
130
  // BY TARGET, NOT BY ECOSYSTEM. `packageName(model, 'npm')` resolves the
90
131
  // ecosystem's PRIMARY target — ts — so every npm target's workflow named
91
132
  // the ts package: publish-js.yml claimed `@voxgig-sdk/github-sdk` while
@@ -117,14 +158,25 @@ function publishWorkflow(model: any, target: any): string {
117
158
  # version by two mechanisms. Releasing is an act someone performs and
118
159
  # watches.
119
160
  #
120
- # TWO JOBS, BECAUSE THEY NEED DIFFERENT PRIVILEGES. A dependency lifecycle
161
+ # THREE JOBS, BECAUSE THEY NEED DIFFERENT PRIVILEGES. A dependency lifecycle
121
162
  # script can ask the runner for any OIDC token its job is permitted to mint,
122
163
  # so a job that both installs dependencies and holds \`id-token: write\` can be
123
- # made to publish before its own gates finish.
164
+ # made to publish before its own gates finish. The same reasoning keeps
165
+ # \`contents: write\` out of both: checkout persists its token into the git
166
+ # config for the whole job.
124
167
  #
125
168
  # verify contents: read, nothing else. Installs, builds and tests.
126
169
  # publish id-token: write. Installs no dependencies and runs no project
127
170
  # code; it packs what is already in the tree.
171
+ # tag contents: write. Runs git and nothing else.
172
+ #
173
+ # THE TAG IS CUT HERE BECAUSE IT CANNOT BE CUT ANYWHERE ELSE. npm binds the
174
+ # trusted publisher to ONE workflow file, so whatever must accompany a publish
175
+ # belongs inside it; and a ref pushed with GITHUB_TOKEN starts no further
176
+ # workflow run, so "tag, and let a tag-triggered publisher fire" does not
177
+ # work. A release that publishes but leaves no ref cannot be answered later:
178
+ # nothing in git says which tree the tarball came from, and nothing
179
+ # downstream can pin this SDK by tag.
128
180
 
129
181
  name: publish-${name}
130
182
 
@@ -236,6 +288,55 @@ jobs:
236
288
  if: steps.registry.outputs.published == 'false'
237
289
  working-directory: ${name}
238
290
  run: npm publish --access public
291
+
292
+ # Runs git and nothing else. No install, no project code — so the
293
+ # repository-write credential is never in scope while third-party code runs.
294
+ #
295
+ # It runs even when the publish step SKIPPED because the version was already
296
+ # on the registry: that is what makes re-dispatching after a partial release
297
+ # finish the job rather than leave a published version permanently untagged.
298
+ tag:
299
+ name: tag
300
+ needs: [verify, publish]
301
+ runs-on: ubuntu-latest
302
+ timeout-minutes: 10
303
+
304
+ # The ONLY job that may write to the repository, and the only one that
305
+ # runs no project code.
306
+ permissions:
307
+ contents: write
308
+
309
+ steps:
310
+ - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
311
+ with:
312
+ # Tags are needed to tell "already tagged" from "not tagged yet".
313
+ fetch-depth: 0
314
+
315
+ - name: Tag the release
316
+ env:
317
+ VERSION: \${{ needs.verify.outputs.version }}
318
+ run: |
319
+ set -euo pipefail
320
+ TAG="${tag}"
321
+ HEAD_SHA="\$(git rev-parse HEAD)"
322
+
323
+ # EXISTENCE IS NOT ENOUGH. \`--verify\` only asks whether the name
324
+ # resolves; a tag created between the verify job's guard and this
325
+ # checkout could point anywhere. Treating that as idempotent would
326
+ # leave a green run with a published artifact from THIS commit and a
327
+ # release tag on a different one.
328
+ AT="\$(git rev-parse -q --verify "refs/tags/\$TAG^{commit}" 2>/dev/null || true)"
329
+ if [ -n "\$AT" ]; then
330
+ if [ "\$AT" != "\$HEAD_SHA" ]; then
331
+ echo "::error::\$TAG exists on \$AT, not this commit (\$HEAD_SHA)"
332
+ exit 1
333
+ fi
334
+ echo "\$TAG already points here — nothing to do" >> "\$GITHUB_STEP_SUMMARY"
335
+ exit 0
336
+ fi
337
+ git tag "\$TAG"
338
+ git push origin "refs/tags/\$TAG"
339
+ echo "pushed \$TAG" >> "\$GITHUB_STEP_SUMMARY"
239
340
  `
240
341
  }
241
342
 
@@ -255,6 +356,14 @@ function publishingDoc(model: any, targets: any[], repoUrl: string): string {
255
356
  `| \`${t.name}/\` | ${packageName(model, t.name)} | ` +
256
357
  `\`.github/workflows/publish-${t.name}.yml\` |`).join('\n')
257
358
 
359
+ // WHICH TAG EACH TARGET CUTS. Worth a table rather than a sentence: the
360
+ // primary npm target owns the bare `v<version>` and every other one is
361
+ // prefixed, so with more than one npm target the answer differs per row.
362
+ const tagRows = '| target | tag |\n|---|---|\n' + targets.map((t: any) =>
363
+ `| \`${t.name}/\` | \`` +
364
+ releaseTag(model, t, targets).replace('$VERSION', '<version>') +
365
+ '\` |').join('\n')
366
+
258
367
  return `# Publishing
259
368
 
260
369
  GENERATED by @voxgig/sdkgen — regenerated on every \`npm run generate\`.
@@ -292,6 +401,26 @@ It is a DISPATCH rather than a tag push because the root \`Makefile\` also
292
401
  publishes, with a vault-injected token. A tag-triggered workflow racing it
293
402
  would publish one version by two mechanisms.
294
403
 
404
+ ## The release is tagged for you
405
+
406
+ The workflow cuts the git tag itself, after a successful publish, so a
407
+ released version always has a ref naming the tree it came from. Nothing to
408
+ do by hand.
409
+
410
+ ${tagRows}
411
+
412
+ Re-dispatching a version that is already on the registry skips the publish
413
+ and still cuts a missing tag, so a partial release is finished by running it
414
+ again rather than repaired by hand. If the tag already exists on a DIFFERENT
415
+ commit the run fails rather than moving it: that combination means the
416
+ published artifact and the tag disagree, and only a person should decide
417
+ which is wrong.
418
+
419
+ The tag job is the only one that may write to the repository, and it runs
420
+ git and nothing else. \`contents: write\` never shares a job with project
421
+ code, for the same reason \`id-token: write\` does not — \`checkout\` persists
422
+ its token into the git config for the whole job.
423
+
295
424
  ## One-time set-up
296
425
 
297
426
  npm has to be told which repository and which workflow file may publish this
@@ -318,7 +447,7 @@ package goes out by hand from an authenticated machine:
318
447
 
319
448
  After that, register the publisher and every later release is a dispatch.
320
449
 
321
- ## Why the workflow has two jobs
450
+ ## Why the workflow has three jobs
322
451
 
323
452
  A dependency lifecycle script can ask the runner for any OIDC token the job
324
453
  it runs in is permitted to mint. A job that both installs dependencies and
@@ -326,8 +455,14 @@ holds \`id-token: write\` can therefore be made to publish as this package
326
455
  before its own gates finish.
327
456
 
328
457
  So \`verify\` installs, builds and tests under \`contents: read\` and holds no
329
- credential, and \`publish\` holds \`id-token: write\` while installing nothing
330
- and running no project code.
458
+ credential; \`publish\` holds \`id-token: write\` while installing nothing and
459
+ running no project code; and \`tag\` holds \`contents: write\` while running
460
+ git and nothing else.
461
+
462
+ The tag cannot be moved out into its own workflow: npm binds the trusted
463
+ publisher to ONE workflow filename, so anything that must accompany a publish
464
+ has to live inside this file. Nor can it be left to a tag-triggered
465
+ publisher — a ref pushed with \`GITHUB_TOKEN\` starts no further workflow run.
331
466
  `
332
467
  }
333
468