@curie-agent/core 0.2.4 → 0.3.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/LICENSE +179 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/src/channel-router.js +1 -1
- package/dist/src/channel-router.js.map +1 -1
- package/dist/src/context.d.ts +11 -0
- package/dist/src/context.d.ts.map +1 -0
- package/dist/src/context.js +80 -0
- package/dist/src/context.js.map +1 -0
- package/dist/src/cron-manager.d.ts +27 -8
- package/dist/src/cron-manager.d.ts.map +1 -1
- package/dist/src/cron-manager.js +121 -33
- package/dist/src/cron-manager.js.map +1 -1
- package/dist/src/event-bus.d.ts +71 -0
- package/dist/src/event-bus.d.ts.map +1 -1
- package/dist/src/event-bus.js.map +1 -1
- package/dist/src/heartbeat-delivery.d.ts +2 -0
- package/dist/src/heartbeat-delivery.d.ts.map +1 -1
- package/dist/src/heartbeat-delivery.js +20 -3
- package/dist/src/heartbeat-delivery.js.map +1 -1
- package/dist/src/heartbeat-executor.d.ts +36 -2
- package/dist/src/heartbeat-executor.d.ts.map +1 -1
- package/dist/src/heartbeat-executor.js +32 -40
- package/dist/src/heartbeat-executor.js.map +1 -1
- package/dist/src/identity-files.d.ts +29 -0
- package/dist/src/identity-files.d.ts.map +1 -0
- package/dist/src/identity-files.js +59 -0
- package/dist/src/identity-files.js.map +1 -0
- package/dist/src/index.d.ts +19 -4
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +13 -2
- package/dist/src/index.js.map +1 -1
- package/dist/src/pricing.d.ts +29 -0
- package/dist/src/pricing.d.ts.map +1 -0
- package/dist/src/pricing.js +85 -0
- package/dist/src/pricing.js.map +1 -0
- package/dist/src/safety/command-guard.d.ts.map +1 -1
- package/dist/src/safety/command-guard.js +35 -1
- package/dist/src/safety/command-guard.js.map +1 -1
- package/dist/src/safety/path-guard.d.ts +7 -3
- package/dist/src/safety/path-guard.d.ts.map +1 -1
- package/dist/src/safety/path-guard.js +14 -5
- package/dist/src/safety/path-guard.js.map +1 -1
- package/dist/src/safety/snapshot.js +1 -1
- package/dist/src/safety/snapshot.js.map +1 -1
- package/dist/src/session-store.d.ts +3 -1
- package/dist/src/session-store.d.ts.map +1 -1
- package/dist/src/session-store.js +24 -1
- package/dist/src/session-store.js.map +1 -1
- package/dist/src/settings.d.ts +98 -1
- package/dist/src/settings.d.ts.map +1 -1
- package/dist/src/settings.js +363 -83
- package/dist/src/settings.js.map +1 -1
- package/dist/src/shell-detect.d.ts +12 -0
- package/dist/src/shell-detect.d.ts.map +1 -0
- package/dist/src/shell-detect.js +31 -0
- package/dist/src/shell-detect.js.map +1 -0
- package/dist/src/subagent-executor.d.ts +68 -0
- package/dist/src/subagent-executor.d.ts.map +1 -0
- package/dist/src/subagent-executor.js +289 -0
- package/dist/src/subagent-executor.js.map +1 -0
- package/dist/src/task-executor.d.ts +31 -0
- package/dist/src/task-executor.d.ts.map +1 -0
- package/dist/src/task-executor.js +91 -0
- package/dist/src/task-executor.js.map +1 -0
- package/dist/src/task-manager.d.ts +83 -0
- package/dist/src/task-manager.d.ts.map +1 -0
- package/dist/src/task-manager.js +308 -0
- package/dist/src/task-manager.js.map +1 -0
- package/dist/src/task-migration.d.ts +10 -0
- package/dist/src/task-migration.d.ts.map +1 -0
- package/dist/src/task-migration.js +144 -0
- package/dist/src/task-migration.js.map +1 -0
- package/dist/src/task-summary.d.ts +7 -0
- package/dist/src/task-summary.d.ts.map +1 -0
- package/dist/src/task-summary.js +34 -0
- package/dist/src/task-summary.js.map +1 -0
- package/dist/src/template-utils.d.ts +16 -0
- package/dist/src/template-utils.d.ts.map +1 -0
- package/dist/src/template-utils.js +72 -0
- package/dist/src/template-utils.js.map +1 -0
- package/dist/src/token-monitor.d.ts +50 -0
- package/dist/src/token-monitor.d.ts.map +1 -0
- package/dist/src/token-monitor.js +119 -0
- package/dist/src/token-monitor.js.map +1 -0
- package/dist/src/turn-loop.d.ts +10 -1
- package/dist/src/turn-loop.d.ts.map +1 -1
- package/dist/src/turn-loop.js +152 -23
- package/dist/src/turn-loop.js.map +1 -1
- package/dist/src/unified-task.d.ts +76 -0
- package/dist/src/unified-task.d.ts.map +1 -0
- package/dist/src/unified-task.js +196 -0
- package/dist/src/unified-task.js.map +1 -0
- package/package.json +16 -11
- package/templates/AGENTS.md +53 -0
- package/templates/HEARTBEAT.md +37 -0
- package/templates/MEMORY.md +29 -0
- package/templates/SOUL.md +28 -0
- package/templates/TOOLS.md +29 -0
- package/templates/USER.md +35 -0
- package/templates/WIKI.md +146 -0
- package/templates/settings.json +90 -0
- package/templates/skills/deep-research/SKILL.md +273 -0
- package/templates/skills/deep-research/references/report-structure.md +149 -0
- package/templates/skills/deep-research/references/topic-guides.md +151 -0
- package/templates/skills/planning/SKILL.md +222 -0
- package/templates/skills/planning/references/business.md +82 -0
- package/templates/skills/planning/references/creative.md +111 -0
- package/templates/skills/planning/references/events.md +109 -0
- package/templates/skills/planning/references/personal.md +107 -0
- package/templates/skills/planning/references/templates.md +279 -0
- package/templates/skills/wiki/SKILL.md +70 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
revisions are patently meant to be an adaptation, but does not
|
|
43
|
+
include a work that is merely a copy of the Work except a Derivative
|
|
44
|
+
Work.
|
|
45
|
+
|
|
46
|
+
"Contribution" shall mean any work of authorship, including
|
|
47
|
+
the original version of the Work and any modifications or additions
|
|
48
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
49
|
+
submitted to the Licensor for inclusion in the Work by the copyright owner
|
|
50
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
51
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
52
|
+
means any form of electronic, verbal, or written communication sent
|
|
53
|
+
to the Licensor or its representatives, including but not limited to
|
|
54
|
+
communication on electronic mailing lists, source code control systems,
|
|
55
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
56
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
57
|
+
excluding communication that is conspicuously marked or otherwise
|
|
58
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
59
|
+
|
|
60
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
61
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
62
|
+
subsequently incorporated within the Work.
|
|
63
|
+
|
|
64
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
65
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
66
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
67
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
68
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
69
|
+
Work and such Derivative Works in Source or Object form.
|
|
70
|
+
|
|
71
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
72
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
73
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
74
|
+
(except as stated in this section) patent license to make, have made,
|
|
75
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
76
|
+
where such license applies only to those patent claims licensable
|
|
77
|
+
by such Contributor that are necessarily infringed by their
|
|
78
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
79
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
80
|
+
institute patent litigation against any entity (including a
|
|
81
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
82
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
83
|
+
or contributory patent infringement, then any patent licenses
|
|
84
|
+
granted to You under this License for that Work shall terminate
|
|
85
|
+
as of the date such litigation is filed.
|
|
86
|
+
|
|
87
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
88
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
89
|
+
modifications, and in Source or Object form, provided that You
|
|
90
|
+
meet the following conditions:
|
|
91
|
+
|
|
92
|
+
(a) You must give any other recipients of the Work or
|
|
93
|
+
Derivative Works a copy of this License; and
|
|
94
|
+
|
|
95
|
+
(b) You must cause any modified files to carry prominent notices
|
|
96
|
+
stating that You changed the files; and
|
|
97
|
+
|
|
98
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
99
|
+
that You distribute, all copyright, patent, trademark, and
|
|
100
|
+
attribution notices from the Source form of the Work,
|
|
101
|
+
excluding those notices that do not pertain to any part of
|
|
102
|
+
the Derivative Works; and
|
|
103
|
+
|
|
104
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
105
|
+
distribution, then any Derivative Works that You distribute must
|
|
106
|
+
include a readable copy of the attribution notices contained
|
|
107
|
+
within such NOTICE file, excluding any notices that do not
|
|
108
|
+
pertain to any part of the Derivative Works, in at least one
|
|
109
|
+
of the following places: within a NOTICE text file distributed
|
|
110
|
+
as part of the Derivative Works; within the Source form or
|
|
111
|
+
documentation, if provided along with the Derivative Works; or,
|
|
112
|
+
within a display generated by the Derivative Works, if and
|
|
113
|
+
wherever such third-party notices normally appear. The contents
|
|
114
|
+
of the NOTICE file are for informational purposes only and
|
|
115
|
+
do not modify the License. You may add Your own attribution
|
|
116
|
+
notices within Derivative Works that You distribute, alongside
|
|
117
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
118
|
+
that such additional attribution notices cannot be construed
|
|
119
|
+
as modifying the License.
|
|
120
|
+
|
|
121
|
+
You may add Your own copyright statement to Your modifications and
|
|
122
|
+
may provide additional or different license terms and conditions
|
|
123
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
124
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
125
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
126
|
+
the conditions stated in this License.
|
|
127
|
+
|
|
128
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
129
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
130
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
131
|
+
this License, without any additional terms or conditions.
|
|
132
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
133
|
+
the terms of any separate license agreement you may have executed
|
|
134
|
+
with Licensor regarding such Contributions.
|
|
135
|
+
|
|
136
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
137
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
138
|
+
except as required for reasonable and customary use in describing the
|
|
139
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
140
|
+
|
|
141
|
+
7. Limitation of Liability. Unless required by applicable law or
|
|
142
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
143
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
144
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
145
|
+
implied, including, without limitation, any warranties or conditions
|
|
146
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
147
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
148
|
+
appropriateness of using or redistributing the Work and assume any
|
|
149
|
+
risks associated with Your exercise of permissions under this License.
|
|
150
|
+
|
|
151
|
+
8. Governing Law. This License shall be governed by the laws of the
|
|
152
|
+
State of New York, USA, excluding its choice of law rules.
|
|
153
|
+
|
|
154
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
155
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
156
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
157
|
+
or other liability obligations and/or rights consistent with this
|
|
158
|
+
License. However, in accepting such obligations, You may act only
|
|
159
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
160
|
+
of any other Contributor, and You agree to indemnify, defend, and
|
|
161
|
+
hold each Contributor harmless for any liability incurred by, or
|
|
162
|
+
claims asserted against, such Contributor by reason of your
|
|
163
|
+
exercising any rights or permissions given by this License.
|
|
164
|
+
|
|
165
|
+
END OF TERMS AND CONDITIONS
|
|
166
|
+
|
|
167
|
+
Copyright 2025 curie-agent contributors
|
|
168
|
+
|
|
169
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
170
|
+
you may not use this file except in compliance with the License.
|
|
171
|
+
You may obtain a copy of the License at
|
|
172
|
+
|
|
173
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
174
|
+
|
|
175
|
+
Unless required by applicable law or agreed to in writing, software
|
|
176
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
177
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
178
|
+
See the License for the specific language governing permissions and
|
|
179
|
+
limitations under the License.
|
package/dist/.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.full.d.ts","../src/channel-registry.ts","../src/settings.ts","../src/channel-router.ts","../src/cron-manager.ts","../src/event-bus.ts","../../../node_modules/.pnpm/@grammyjs+types@3.26.0/node_modules/@grammyjs/types/api.d.ts","../../../node_modules/.pnpm/@grammyjs+types@3.26.0/node_modules/@grammyjs/types/markup.d.ts","../../../node_modules/.pnpm/@grammyjs+types@3.26.0/node_modules/@grammyjs/types/passport.d.ts","../../../node_modules/.pnpm/@grammyjs+types@3.26.0/node_modules/@grammyjs/types/payment.d.ts","../../../node_modules/.pnpm/@grammyjs+types@3.26.0/node_modules/@grammyjs/types/message.d.ts","../../../node_modules/.pnpm/@grammyjs+types@3.26.0/node_modules/@grammyjs/types/inline.d.ts","../../../node_modules/.pnpm/@grammyjs+types@3.26.0/node_modules/@grammyjs/types/update.d.ts","../../../node_modules/.pnpm/@grammyjs+types@3.26.0/node_modules/@grammyjs/types/manage.d.ts","../../../node_modules/.pnpm/@grammyjs+types@3.26.0/node_modules/@grammyjs/types/checklist.d.ts","../../../node_modules/.pnpm/@grammyjs+types@3.26.0/node_modules/@grammyjs/types/langs.d.ts","../../../node_modules/.pnpm/@grammyjs+types@3.26.0/node_modules/@grammyjs/types/settings.d.ts","../../../node_modules/.pnpm/@grammyjs+types@3.26.0/node_modules/@grammyjs/types/story.d.ts","../../../node_modules/.pnpm/@grammyjs+types@3.26.0/node_modules/@grammyjs/types/methods.d.ts","../../../node_modules/.pnpm/@grammyjs+types@3.26.0/node_modules/@grammyjs/types/mod.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/types.node.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/types.d.ts","../../../node_modules/.pnpm/event-target-shim@5.0.1/node_modules/event-target-shim/index.d.ts","../../../node_modules/.pnpm/abort-controller@3.0.0/node_modules/abort-controller/dist/abort-controller.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/form-data@4.0.5/node_modules/form-data/index.d.ts","../../../node_modules/.pnpm/@types+node-fetch@2.6.13/node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/.pnpm/@types+node-fetch@2.6.13/node_modules/@types/node-fetch/index.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/shim.node.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/core/client.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/core/api.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/filter.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/context.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/composer.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/bot.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/convenience/constants.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/convenience/inline_query.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/convenience/input_media.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/convenience/keyboard.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/convenience/session.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/convenience/frameworks.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/convenience/webhook.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/core/error.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/mod.d.ts","../src/telegram-gateway.ts","../src/heartbeat-delivery.ts","../src/session-store.ts","../src/safety/command-guard.ts","../src/permission.ts","../src/safety/snapshot.ts","../src/turn-loop.ts","../src/heartbeat-executor.ts","../src/reminder-parser.ts","../src/index.ts","../src/safety/path-guard.ts"],"fileIdsList":[[92,140,157,158],[73,76,92,140,157,158],[70,72,73,76,92,140,157,158],[72,73,75,92,140,157,158],[70,71,72,76,77,92,140,157,158],[70,71,72,73,74,75,76,77,78,79,80,92,140,157,158],[69,70,71,72,73,74,75,76,77,78,79,80,81,92,140,157,158],[70,92,140,157,158],[73,92,140,157,158],[70,72,73,74,76,92,140,157,158],[92,140,154,157,158,183,190,191,192],[92,137,138,140,157,158],[92,139,140,157,158],[140,157,158],[92,140,145,157,158,175],[92,140,141,146,151,157,158,160,172,183],[92,140,141,142,151,157,158,160],[87,88,89,92,140,157,158],[92,140,143,157,158,184],[92,140,144,145,152,157,158,161],[92,140,145,157,158,172,180],[92,140,146,148,151,157,158,160],[92,139,140,147,157,158],[92,140,148,149,157,158],[92,140,150,151,157,158],[92,139,140,151,157,158],[92,140,151,152,153,157,158,172,183],[92,140,151,152,153,157,158,167,172,175],[92,133,140,148,151,154,157,158,160,172,183],[92,140,151,152,154,155,157,158,160,172,180,183],[92,140,154,156,157,158,172,180,183],[90,91,92,93,94,95,96,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,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,185,186,187,188,189],[92,140,151,157,158],[92,140,157,158,159,183],[92,140,148,151,157,158,160,172],[92,140,157,158,161],[92,140,157,158,162],[92,139,140,157,158,163],[92,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,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,185,186,187,188,189],[92,140,157,158,165],[92,140,157,158,166],[92,140,151,157,158,167,168],[92,140,157,158,167,169,184,186],[92,140,152,157,158],[92,140,151,157,158,172,173,175],[92,140,157,158,174,175],[92,140,157,158,172,173],[92,140,157,158,175],[92,140,157,158,176],[92,137,140,157,158,172,177,183],[92,140,151,157,158,178,179],[92,140,157,158,178,179],[92,140,145,157,158,160,172,180],[92,140,157,158,181],[92,140,157,158,160,182],[92,140,154,157,158,166,183],[92,140,145,157,158,184],[92,140,157,158,172,185],[92,140,157,158,159,186],[92,140,157,158,187],[92,133,140,157,158],[92,133,140,151,153,157,158,163,172,175,183,185,186,188],[92,140,157,158,172,189],[85,92,140,157,158],[92,140,154,157,158,172,190],[84,92,140,157,158,194,195,196,197,198,199],[84,92,140,157,158,197,198],[70,72,73,74,76,79,84,92,140,157,158,194,195,196,197],[92,140,157,158,200],[84,92,140,157,158],[70,84,92,140,157,158],[92,140,157,158,198,199],[92,140,157,158,198,200,206],[70,72,73,75,76,79,84,92,140,157,158,194,195],[84,92,140,157,158,194],[84,92,140,157,158,198],[84,92,140,157,158,195,196,197,198,199,200,201,202,203,204,205,207,208],[86,92,140,157,158,193],[83,92,140,157,158],[82,92,140,152,157,158],[92,105,109,140,157,158,183],[92,105,140,157,158,172,183],[92,100,140,157,158],[92,102,105,140,157,158,180,183],[92,140,157,158,160,180],[92,140,157,158,190],[92,100,140,157,158,190],[92,102,105,140,157,158,160,183],[92,97,98,101,104,140,151,157,158,172,183],[92,105,112,140,157,158],[92,97,103,140,157,158],[92,105,126,127,140,157,158],[92,101,105,140,157,158,175,183,190],[92,126,140,157,158,190],[92,99,100,140,157,158,190],[92,105,140,157,158],[92,99,100,101,102,103,104,105,106,107,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,127,128,129,130,131,132,140,157,158],[92,105,120,140,157,158],[92,105,112,113,140,157,158],[92,103,105,113,114,140,157,158],[92,104,140,157,158],[92,97,100,105,140,157,158],[92,105,109,113,114,140,157,158],[92,109,140,157,158],[92,103,105,108,140,157,158,183],[92,97,102,105,112,140,157,158],[92,140,157,158,172],[92,100,105,126,140,157,158,188,190],[92,140,152,157,158,161,162],[64,65,92,140,157,158],[92,140,152,157,158,161,162,210],[65,67,68,92,140,152,157,158,161,162,216],[64,65,66,67,68,92,140,157,158,210,211,212,214,216,217,218],[92,140,157,158,213],[92,140,141,145,152,157,158,161,162],[68,92,140,152,157,158,161,162],[92,140,157,158,209],[65,68,92,140,157,158,212,214,215]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"d6b1eba8496bdd0eed6fc8a685768fe01b2da4a0388b5fe7df558290bffcf32f","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f57fc4404ff020bc45b9c620aff2b40f700b95fe31164024c453a5e3c163c54","impliedFormat":1},{"version":"7f57fc4404ff020bc45b9c620aff2b40f700b95fe31164024c453a5e3c163c54","impliedFormat":1},{"version":"2a2de5b9459b3fc44decd9ce6100b72f1b002ef523126c1d3d8b2a4a63d74d78","affectsGlobalScope":true,"impliedFormat":1},{"version":"f13f4b465c99041e912db5c44129a94588e1aafee35a50eab51044833f50b4ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"01a30f9e8582b369075c0808df71121e6855cb06fd8d3d39511d9ebb66405205","impliedFormat":1},{"version":"9d2e54ac2bb5fac99e31e837d9b4bcf9abcb4d132a64a38b454ca5cb0ad14ec1","signature":"b9a34accd5d8e2b056b54e12141cdf904253cdc3235ebe2a9e73c55ff12d8212"},{"version":"ce8cf974166d4d1b84b793dbdcc8d8d5f105022f8c35520a653d7ef112b03098","signature":"016b5dd0ad81f2ce8e8081344a69154ccf105aa3b668bab143b601693b9303f6"},{"version":"f68e3ee5126c86702d43ef7460a8fa724ed84a8f495b57e6b7311665fa1e37c1","signature":"1bee8d6dbb193a7381ca02d44b261145655168f2c58853d35a898520bb914150"},{"version":"0c6e8a7da23770ab90a14147f0de4368804a6426617b2161ede51b98758d2e75","signature":"4e193949157dfe3fbd2c669a50a1eb874ef99bc1a7948d0e766f57533033fb0d"},{"version":"622281349ac4de35977234ee1ae0d976ae0baae86aa54387ca60c87f70967361","signature":"83f4e015f73c5f81e45c580c0ff5b234af453adce4c73880b315955d82a8c76c"},{"version":"c25c48bebefa0d0f1962a80994830be46be28280f382ae71ea0b828a3db90959","impliedFormat":1},{"version":"8eb764b96d8553738750052d389208a0960cfc731eff2b33d7767abbd77bf2ee","impliedFormat":1},{"version":"a1e7000b7eed220d557a430737340edee57046c0b8b37bc4ffc32445f4f92258","impliedFormat":1},{"version":"77dd19d4519576f1371040daf3cb22e9174fb544f21ba60304d21bfa5a33f35c","impliedFormat":1},{"version":"439253c73136b2dacb4d0eb88752fc57d5f630f7bed711f6fe5caeee666e6a01","impliedFormat":1},{"version":"d93dc8d2c6423019f0cb9e8e7ba4c1dbf4f0051e6f787a8002f3373735244789","impliedFormat":1},{"version":"f0ed82e051df3c532385764ce8aa2d393df79539221f96f57b5d485af535e521","impliedFormat":1},{"version":"26c9e9cee36b829e4282f44ec9fe43a9be979f961ed5ab9ef5a340676f71d57d","impliedFormat":1},{"version":"29b0a5b8bf124e55aa6e0cc670f014a84ad35395dec773b41eabc1f014dbeb96","impliedFormat":1},{"version":"7c29375acb1d6534f46aabdb3b711b8d53fb11755f5acc055aeb01c9348de9b5","impliedFormat":1},{"version":"12c13c3b3b5b5408c99e4f25c595b1071e8bafd55252dbe336ef234db93e5abd","impliedFormat":1},{"version":"c2c574f88e7564df5ce324a3b5eb172149e20c1797226f4b49ee31937c047237","impliedFormat":1},{"version":"bf747c058df73031927c4daecedd1286067ae97aea4dc07c15e514f03da2f5a1","impliedFormat":1},{"version":"1c410b6cf080e9ce85b307c7f570546da032a8beacdb28e40c559b2d1672e6a0","impliedFormat":1},{"version":"049bfcc4b1b0eb6e9cb1b5aaed93505a775e3cf1d6cab62b1aa844d5c95235db","impliedFormat":1},{"version":"a65d3d31b036bce6918f5bc82048b43e42c146873dd4d5a0daa790bf16b481c0","impliedFormat":1},{"version":"2859adaa4f2db3d4f0fc37ad86f056045341496b58fba0dbc16a222f9d5d55b1","impliedFormat":1},{"version":"655ed305e8f4cb95d3f578040301a4e4d6ace112b1bd8824cd32bda66c3677d1","impliedFormat":1},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"808069bba06b6768b62fd22429b53362e7af342da4a236ed2d2e1c89fcca3b4a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","affectsGlobalScope":true,"impliedFormat":1},{"version":"f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fa06ada475b910e2106c98c68b10483dc8811d0c14a8a8dd36efb2672485b29","impliedFormat":1},{"version":"33e5e9aba62c3193d10d1d33ae1fa75c46a1171cf76fef750777377d53b0303f","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"6a0cd27e5dc2cfbe039e731cf879d12b0e2dded06d1b1dedad07f7712de0d7f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f5c844119c43e51ce777c509267f14d6aaf31eafb2c2b002ca35584cd13b29","impliedFormat":1},{"version":"e60477649d6ad21542bd2dc7e3d9ff6853d0797ba9f689ba2f6653818999c264","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4c829ab315f57c5442c6667b53769975acbf92003a66aef19bce151987675bd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"b2ade7657e2db96d18315694789eff2ddd3d8aea7215b181f8a0b303277cc579","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"4d631b81fa2f07a0e63a9a143d6a82c25c5f051298651a9b69176ba28930756d","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"41670ee38943d9cbb4924e436f56fc19ee94232bc96108562de1a734af20dc2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c906fb15bd2aabc9ed1e3f44eb6a8661199d6c320b3aa196b826121552cb3695","impliedFormat":1},{"version":"22295e8103f1d6d8ea4b5d6211e43421fe4564e34d0dd8e09e520e452d89e659","impliedFormat":1},{"version":"58647d85d0f722a1ce9de50955df60a7489f0593bf1a7015521efe901c06d770","impliedFormat":1},{"version":"0958335a19c90bf5e69e6654bac7dfb120e432558f8143263d8b2324bd85e61c","impliedFormat":1},{"version":"a10f0e1854f3316d7ee437b79649e5a6ae3ae14ffe6322b02d4987071a95362e","impliedFormat":1},{"version":"e208f73ef6a980104304b0d2ca5f6bf1b85de6009d2c7e404028b875020fa8f2","impliedFormat":1},{"version":"d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc","impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6f137d651076822d4fe884287e68fd61785a0d3d1fdb250a5059b691fa897db","impliedFormat":1},{"version":"24826ed94a78d5c64bd857570fdbd96229ad41b5cb654c08d75a9845e3ab7dde","impliedFormat":1},{"version":"8b479a130ccb62e98f11f136d3ac80f2984fdc07616516d29881f3061f2dd472","impliedFormat":1},{"version":"928af3d90454bf656a52a48679f199f64c1435247d6189d1caf4c68f2eaf921f","affectsGlobalScope":true,"impliedFormat":1},{"version":"bceb58df66ab8fb00170df20cd813978c5ab84be1d285710c4eb005d8e9d8efb","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"a3fc63c0d7b031693f665f5494412ba4b551fe644ededccc0ab5922401079c95","impliedFormat":1},{"version":"80523c00b8544a2000ae0143e4a90a00b47f99823eb7926c1e03c494216fc363","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"746911b62b329587939560deb5c036aca48aece03147b021fa680223255d5183","affectsGlobalScope":true,"impliedFormat":1},{"version":"18fd40412d102c5564136f29735e5d1c3b455b8a37f920da79561f1fde068208","impliedFormat":1},{"version":"c8d3e5a18ba35629954e48c4cc8f11dc88224650067a172685c736b27a34a4dc","impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"2b55d426ff2b9087485e52ac4bc7cfafe1dc420fc76dad926cd46526567c501a","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"5b7aa3c4c1a5d81b411e8cb302b45507fea9358d3569196b27eb1a27ae3a90ef","affectsGlobalScope":true,"impliedFormat":1},{"version":"5987a903da92c7462e0b35704ce7da94d7fdc4b89a984871c0e2b87a8aae9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea08a0345023ade2b47fbff5a76d0d0ed8bff10bc9d22b83f40858a8e941501c","impliedFormat":1},{"version":"47613031a5a31510831304405af561b0ffaedb734437c595256bb61a90f9311b","impliedFormat":1},{"version":"ae062ce7d9510060c5d7e7952ae379224fb3f8f2dd74e88959878af2057c143b","impliedFormat":1},{"version":"8a1a0d0a4a06a8d278947fcb66bf684f117bf147f89b06e50662d79a53be3e9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"358765d5ea8afd285d4fd1532e78b88273f18cb3f87403a9b16fef61ac9fdcfe","impliedFormat":1},{"version":"9f55299850d4f0921e79b6bf344b47c420ce0f507b9dcf593e532b09ea7eeea1","impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","impliedFormat":1},{"version":"b70c7ea83a7d0de17a791d9b5283f664033a96362c42cc4d2b2e0bdaa65ef7d1","impliedFormat":1},{"version":"4110bfecdffe735742abfc61598c89a9f72d89dc88565b68e73e52e3949a42de","impliedFormat":1},{"version":"77f5a7582f790084c636ad301b0d8928bd2748bfae503ec98d3972f4d6ddfe7f","impliedFormat":1},{"version":"6b065013a280bfafa1583f9f2ac0cb87e08cb665c4e40ffe0184243f6bdf3b0c","impliedFormat":1},{"version":"bc14e6aecf495228a0294e6e7fcbaa720e10dcb0726cd295920eb5cef5a142ed","impliedFormat":1},{"version":"d5451e7062aef622d81d6db5c5bc643615e27f3d5ada7d26db581b424c5454d9","impliedFormat":1},{"version":"99c50339a5330b4630921dfcff94376aae0d180591073cd72e210bc9039ae49c","impliedFormat":1},{"version":"98e93b9cc96c99139d91304bf8b3c44a4d12ee24a68d1c51b1591d29e3df4d62","impliedFormat":1},{"version":"1e23a28e3c87f14afc01b6ab7d8a72681e68d85c572f43a8971ae349a609ba3f","impliedFormat":1},{"version":"c7c712eac33dcc51d798aae3bd37da023018542a08a7b4b827a2cfe6519bb7aa","impliedFormat":1},{"version":"690250f37c2ba7deb3984c520ddce7d346d8debfea64f0917f066f2fb3b04e8f","impliedFormat":1},{"version":"de5a0dc9740a2ccc2109e38ca0c1c50d0261af757c607cbcd5c918418a6a599f","impliedFormat":1},{"version":"14fadbce82a319105d01bc6cbb9051b9f5a26e8a753280ddeb3ac7bac404d96c","impliedFormat":1},{"version":"1b8f840cd28986ebec136a223d5c5b989b547f30055930f39227730a30a777a8","impliedFormat":1},{"version":"bcd5e5bfe8fd430b8ae12bab66b79eb77985a198b34b7a0d3028de8aae5a0d54","impliedFormat":1},{"version":"a581549f21edb7e39fba32e1a606d35fd11b050290ef6b6c1e9c82809160936e","impliedFormat":1},{"version":"17d54db345bad0b5c813f1e9f21a35400c8e0f8124e85206a22f9cdbfabfb0b1","impliedFormat":1},{"version":"62a55b860673944246f1ca9c12b77a7c25f7feeb6b4abe0d0baeef1e6aa284ec","signature":"3c6010fd34b52dce1ee36b38c583529cae6591466e7e6c108476bbc9097ab976"},{"version":"cf87ea78b4a14a8606fb7be48e2e0e852e50b78ac054e51acb2d4bd34b7e8f1d","signature":"9957616e4e053f8dab5f8cb9f85490479394bbe1dbac842d3e82d98189d258a5"},{"version":"f0fe6e819563c26428a035283c8f9e6c8d2005f652cf0ad90e206ad0cfdd686b","signature":"df9ab0fe34601fff1888269c56872da42f7a1fb73152abbdd625918d0e3e9224"},{"version":"a7657d0f41d8023ba1105197c83124da723d901b07a17bd810ee39e0ef42fd78","signature":"575a09c08b076e0b0e9dd894de952d72eb36c96e59c6d560b9fffd556ed7104e"},{"version":"7704e64ff084f90152741c9092a417d280d4ea88f797194310bd36b8a6445cc6","signature":"ebc527cfe7241bb64b03d3db6d22fedf16f3bd6ed43cc330ea5bf78d419576ad"},{"version":"b7375c2c222a8483e46959ac0cedf5a897fcebc6cf80f65c5ddb46165f4b9f14","signature":"d08e8644db19ae4a427cc182fd0246ca0e4c01dec799d1f6410ebf666169659f"},{"version":"daeb76ed8f7c05b46c5f93d216a220f022390a788d0fbacce3bee4ea09f0962c","signature":"378a83742d7e9280f7b6154804ad54b12215734f483d395233703ea91e2a5511"},{"version":"ea420fa047b7613caefbf3d71f069ddf38af7a0454a4ab37fd23cee519c11212","signature":"846801932cc070397778cc05c0a2741be25509b747733566f39ab82c7ffa6cb1"},{"version":"1e9b6df1755159ae7d528390b7c15d919bfe4996d45498549b244f86fde33a44","signature":"949fc6507cdd36f444898ee1ce04dbbceac6912872e9940d9295a82b082ea8cf"},"d5e6a519956c8ad27e1aaa4331b556af81ae641cd9163db665297ed1720130df",{"version":"1a9d3a76a9519d552124b379c445e9ccfa53bbb961705dc1879c18e6c443b9f7","signature":"955061847df82f91c7354f9b50035f35ad738cf9c6aea05a16c04e8f23f133bc"}],"root":[[64,68],[210,220]],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"jsx":4,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noUncheckedIndexedAccess":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"stripInternal":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo"},"referencedMap":[[69,1],[77,2],[74,3],[78,1],[76,4],[70,2],[73,5],[81,6],[82,7],[71,1],[72,2],[79,8],[80,9],[75,10],[192,1],[193,11],[137,12],[138,12],[139,13],[92,14],[140,15],[141,16],[142,17],[87,1],[90,18],[88,1],[89,1],[143,19],[144,20],[145,21],[146,22],[147,23],[148,24],[149,24],[150,25],[151,26],[152,27],[153,28],[93,1],[91,1],[154,29],[155,30],[156,31],[190,32],[157,33],[158,1],[159,34],[160,35],[161,36],[162,37],[163,38],[164,39],[165,40],[166,41],[167,42],[168,42],[169,43],[170,1],[171,44],[172,45],[174,46],[173,47],[175,48],[176,49],[177,50],[178,51],[179,52],[180,53],[181,54],[182,55],[183,56],[184,57],[185,58],[186,59],[187,60],[94,1],[95,1],[96,1],[134,61],[135,1],[136,1],[188,62],[189,63],[86,64],[85,1],[191,65],[200,66],[199,67],[198,68],[201,69],[206,70],[202,71],[203,70],[204,70],[205,72],[207,73],[196,74],[195,75],[208,70],[197,76],[209,77],[194,78],[84,79],[83,80],[61,1],[62,1],[12,1],[10,1],[11,1],[16,1],[15,1],[2,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[23,1],[24,1],[3,1],[25,1],[26,1],[4,1],[27,1],[31,1],[28,1],[29,1],[30,1],[32,1],[33,1],[34,1],[5,1],[35,1],[36,1],[37,1],[38,1],[6,1],[42,1],[39,1],[40,1],[41,1],[43,1],[7,1],[44,1],[49,1],[50,1],[45,1],[46,1],[47,1],[48,1],[8,1],[54,1],[51,1],[52,1],[53,1],[55,1],[9,1],[56,1],[63,1],[57,1],[58,1],[60,1],[59,1],[1,1],[14,1],[13,1],[112,81],[122,82],[111,81],[132,83],[103,84],[102,85],[131,86],[125,87],[130,88],[105,89],[119,90],[104,91],[128,92],[100,93],[99,86],[129,94],[101,95],[106,96],[107,1],[110,96],[97,1],[133,97],[123,98],[114,99],[115,100],[117,101],[113,102],[116,103],[126,86],[108,104],[109,105],[118,106],[98,107],[121,98],[120,96],[124,1],[127,108],[64,109],[66,110],[67,109],[68,1],[211,111],[217,112],[219,113],[214,114],[218,1],[213,1],[220,109],[215,115],[212,116],[65,109],[210,117],[216,118]],"latestChangedDtsFile":"./src/safety/path-guard.d.ts","version":"6.0.3"}
|
|
1
|
+
{"fileNames":["../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/lib/lib.es2022.full.d.ts","../src/channel-registry.ts","../src/settings.ts","../src/channel-router.ts","../src/shell-detect.ts","../src/context.ts","../src/event-bus.ts","../../../node_modules/.pnpm/@grammyjs+types@3.26.0/node_modules/@grammyjs/types/api.d.ts","../../../node_modules/.pnpm/@grammyjs+types@3.26.0/node_modules/@grammyjs/types/markup.d.ts","../../../node_modules/.pnpm/@grammyjs+types@3.26.0/node_modules/@grammyjs/types/passport.d.ts","../../../node_modules/.pnpm/@grammyjs+types@3.26.0/node_modules/@grammyjs/types/payment.d.ts","../../../node_modules/.pnpm/@grammyjs+types@3.26.0/node_modules/@grammyjs/types/message.d.ts","../../../node_modules/.pnpm/@grammyjs+types@3.26.0/node_modules/@grammyjs/types/inline.d.ts","../../../node_modules/.pnpm/@grammyjs+types@3.26.0/node_modules/@grammyjs/types/update.d.ts","../../../node_modules/.pnpm/@grammyjs+types@3.26.0/node_modules/@grammyjs/types/manage.d.ts","../../../node_modules/.pnpm/@grammyjs+types@3.26.0/node_modules/@grammyjs/types/checklist.d.ts","../../../node_modules/.pnpm/@grammyjs+types@3.26.0/node_modules/@grammyjs/types/langs.d.ts","../../../node_modules/.pnpm/@grammyjs+types@3.26.0/node_modules/@grammyjs/types/settings.d.ts","../../../node_modules/.pnpm/@grammyjs+types@3.26.0/node_modules/@grammyjs/types/story.d.ts","../../../node_modules/.pnpm/@grammyjs+types@3.26.0/node_modules/@grammyjs/types/methods.d.ts","../../../node_modules/.pnpm/@grammyjs+types@3.26.0/node_modules/@grammyjs/types/mod.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/types.node.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/types.d.ts","../../../node_modules/.pnpm/event-target-shim@5.0.1/node_modules/event-target-shim/index.d.ts","../../../node_modules/.pnpm/abort-controller@3.0.0/node_modules/abort-controller/dist/abort-controller.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@22.19.18/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/form-data@4.0.5/node_modules/form-data/index.d.ts","../../../node_modules/.pnpm/@types+node-fetch@2.6.13/node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/.pnpm/@types+node-fetch@2.6.13/node_modules/@types/node-fetch/index.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/shim.node.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/core/client.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/core/api.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/filter.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/context.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/composer.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/bot.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/convenience/constants.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/convenience/inline_query.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/convenience/input_media.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/convenience/keyboard.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/convenience/session.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/convenience/frameworks.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/convenience/webhook.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/core/error.d.ts","../../../node_modules/.pnpm/grammy@1.42.0/node_modules/grammy/out/mod.d.ts","../src/telegram-gateway.ts","../src/heartbeat-delivery.ts","../src/session-store.ts","../src/safety/command-guard.ts","../src/permission.ts","../src/safety/snapshot.ts","../src/turn-loop.ts","../src/unified-task.ts","../src/task-summary.ts","../src/heartbeat-executor.ts","../src/template-utils.ts","../src/identity-files.ts","../src/task-manager.ts","../src/task-migration.ts","../src/reminder-parser.ts","../src/subagent-executor.ts","../src/pricing.ts","../src/token-monitor.ts","../src/safety/path-guard.ts","../src/index.ts"],"fileIdsList":[[93,141,158,159],[74,77,93,141,158,159],[71,73,74,77,93,141,158,159],[73,74,76,93,141,158,159],[71,72,73,77,78,93,141,158,159],[71,72,73,74,75,76,77,78,79,80,81,93,141,158,159],[70,71,72,73,74,75,76,77,78,79,80,81,82,93,141,158,159],[71,93,141,158,159],[74,93,141,158,159],[71,73,74,75,77,93,141,158,159],[93,141,155,158,159,184,191,192,193],[93,138,139,141,158,159],[93,140,141,158,159],[141,158,159],[93,141,146,158,159,176],[93,141,142,147,152,158,159,161,173,184],[93,141,142,143,152,158,159,161],[88,89,90,93,141,158,159],[93,141,144,158,159,185],[93,141,145,146,153,158,159,162],[93,141,146,158,159,173,181],[93,141,147,149,152,158,159,161],[93,140,141,148,158,159],[93,141,149,150,158,159],[93,141,151,152,158,159],[93,140,141,152,158,159],[93,141,152,153,154,158,159,173,184],[93,141,152,153,154,158,159,168,173,176],[93,134,141,149,152,155,158,159,161,173,184],[93,141,152,153,155,156,158,159,161,173,181,184],[93,141,155,157,158,159,173,181,184],[91,92,93,94,95,96,97,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,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,185,186,187,188,189,190],[93,141,152,158,159],[93,141,158,159,160,184],[93,141,149,152,158,159,161,173],[93,141,158,159,162],[93,141,158,159,163],[93,140,141,158,159,164],[93,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,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,185,186,187,188,189,190],[93,141,158,159,166],[93,141,158,159,167],[93,141,152,158,159,168,169],[93,141,158,159,168,170,185,187],[93,141,153,158,159],[93,141,152,158,159,173,174,176],[93,141,158,159,175,176],[93,141,158,159,173,174],[93,141,158,159,176],[93,141,158,159,177],[93,138,141,158,159,173,178,184],[93,141,152,158,159,179,180],[93,141,158,159,179,180],[93,141,146,158,159,161,173,181],[93,141,158,159,182],[93,141,158,159,161,183],[93,141,155,158,159,167,184],[93,141,146,158,159,185],[93,141,158,159,173,186],[93,141,158,159,160,187],[93,141,158,159,188],[93,134,141,158,159],[93,134,141,152,154,158,159,164,173,176,184,186,187,189],[93,141,158,159,173,190],[86,93,141,158,159],[93,141,155,158,159,173,191],[85,93,141,158,159,195,196,197,198,199,200],[85,93,141,158,159,198,199],[71,73,74,75,77,80,85,93,141,158,159,195,196,197,198],[93,141,158,159,201],[85,93,141,158,159],[71,85,93,141,158,159],[93,141,158,159,199,200],[93,141,158,159,199,201,207],[71,73,74,76,77,80,85,93,141,158,159,195,196],[85,93,141,158,159,195],[85,93,141,158,159,199],[85,93,141,158,159,196,197,198,199,200,201,202,203,204,205,206,208,209],[87,93,141,158,159,194],[84,93,141,158,159],[83,93,141,153,158,159],[93,106,110,141,158,159,184],[93,106,141,158,159,173,184],[93,101,141,158,159],[93,103,106,141,158,159,181,184],[93,141,158,159,161,181],[93,141,158,159,191],[93,101,141,158,159,191],[93,103,106,141,158,159,161,184],[93,98,99,102,105,141,152,158,159,173,184],[93,106,113,141,158,159],[93,98,104,141,158,159],[93,106,127,128,141,158,159],[93,102,106,141,158,159,176,184,191],[93,127,141,158,159,191],[93,100,101,141,158,159,191],[93,106,141,158,159],[93,100,101,102,103,104,105,106,107,108,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,128,129,130,131,132,133,141,158,159],[93,106,121,141,158,159],[93,106,113,114,141,158,159],[93,104,106,114,115,141,158,159],[93,105,141,158,159],[93,98,101,106,141,158,159],[93,106,110,114,115,141,158,159],[93,110,141,158,159],[93,104,106,109,141,158,159,184],[93,98,103,106,113,141,158,159],[93,141,158,159,173],[93,101,106,127,141,158,159,189,191],[93,141,153,158,159,162,163],[64,65,93,141,158,159],[67,93,141,158,159,162],[93,141,153,158,159,162,163,211],[65,69,93,141,153,158,159,162,163,217,218,219],[93,141,153,158,159,162,163,221],[64,65,66,68,69,93,141,158,159,211,212,213,215,216,217,218,219,220,221,222,223,224,225,226,228,229],[93,141,158,159,214],[93,141,142,146,153,158,159,162,163],[69,93,141,153,158,159,162,163],[93,141,142,158,159,162],[65,69,93,141,146,158,159,213,215,217],[93,141,153,158,159,162,163,218],[93,141,153,158,159,218],[93,141,158,159,210],[93,141,158,159,227],[65,68,69,93,141,153,158,159,213,215,216]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"d6b1eba8496bdd0eed6fc8a685768fe01b2da4a0388b5fe7df558290bffcf32f","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f57fc4404ff020bc45b9c620aff2b40f700b95fe31164024c453a5e3c163c54","impliedFormat":1},{"version":"7f57fc4404ff020bc45b9c620aff2b40f700b95fe31164024c453a5e3c163c54","impliedFormat":1},{"version":"2a2de5b9459b3fc44decd9ce6100b72f1b002ef523126c1d3d8b2a4a63d74d78","affectsGlobalScope":true,"impliedFormat":1},{"version":"f13f4b465c99041e912db5c44129a94588e1aafee35a50eab51044833f50b4ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"01a30f9e8582b369075c0808df71121e6855cb06fd8d3d39511d9ebb66405205","impliedFormat":1},{"version":"9d2e54ac2bb5fac99e31e837d9b4bcf9abcb4d132a64a38b454ca5cb0ad14ec1","signature":"b9a34accd5d8e2b056b54e12141cdf904253cdc3235ebe2a9e73c55ff12d8212"},{"version":"300f9f4d7599c56c4d5584c16dc031e2316827772e74a8194c7eb46019375a66","signature":"ad7d5944a7456fc1c2e551ae2cc849742f5546e71624eccf21750eb942ee1932"},{"version":"5e51861c0e2c2bf18c9317e4fbb5b8c9d39c28579a3792bcad534976e2346ac1","signature":"1bee8d6dbb193a7381ca02d44b261145655168f2c58853d35a898520bb914150"},{"version":"3d10bb245b9e8bd7024f841e07f21dd10b6b1fac6e1aeb3354bf50de8f877261","signature":"66b98dd8e356bf969f1d3523c041c39ef36b48ebf3d45c3cf91c1ab431d6d091"},{"version":"0b2109b612fa418f7fd41f7b629b04da1e0651f64d4ce866fb8cd0f2242aabfc","signature":"97a3a0acd57fff7fc79f4e6d38d24af9bebc186f78948e1f16caed40a5b76aa8"},{"version":"8bd4e8380218d16e6a83845e817acce06fce3c09acae4985578d4847b45bb2a3","signature":"544c93640070a9e11edf38d518fc0df3b9ee5e758dcae97c5a5775639f273db5"},{"version":"c25c48bebefa0d0f1962a80994830be46be28280f382ae71ea0b828a3db90959","impliedFormat":1},{"version":"8eb764b96d8553738750052d389208a0960cfc731eff2b33d7767abbd77bf2ee","impliedFormat":1},{"version":"a1e7000b7eed220d557a430737340edee57046c0b8b37bc4ffc32445f4f92258","impliedFormat":1},{"version":"77dd19d4519576f1371040daf3cb22e9174fb544f21ba60304d21bfa5a33f35c","impliedFormat":1},{"version":"439253c73136b2dacb4d0eb88752fc57d5f630f7bed711f6fe5caeee666e6a01","impliedFormat":1},{"version":"d93dc8d2c6423019f0cb9e8e7ba4c1dbf4f0051e6f787a8002f3373735244789","impliedFormat":1},{"version":"f0ed82e051df3c532385764ce8aa2d393df79539221f96f57b5d485af535e521","impliedFormat":1},{"version":"26c9e9cee36b829e4282f44ec9fe43a9be979f961ed5ab9ef5a340676f71d57d","impliedFormat":1},{"version":"29b0a5b8bf124e55aa6e0cc670f014a84ad35395dec773b41eabc1f014dbeb96","impliedFormat":1},{"version":"7c29375acb1d6534f46aabdb3b711b8d53fb11755f5acc055aeb01c9348de9b5","impliedFormat":1},{"version":"12c13c3b3b5b5408c99e4f25c595b1071e8bafd55252dbe336ef234db93e5abd","impliedFormat":1},{"version":"c2c574f88e7564df5ce324a3b5eb172149e20c1797226f4b49ee31937c047237","impliedFormat":1},{"version":"bf747c058df73031927c4daecedd1286067ae97aea4dc07c15e514f03da2f5a1","impliedFormat":1},{"version":"1c410b6cf080e9ce85b307c7f570546da032a8beacdb28e40c559b2d1672e6a0","impliedFormat":1},{"version":"049bfcc4b1b0eb6e9cb1b5aaed93505a775e3cf1d6cab62b1aa844d5c95235db","impliedFormat":1},{"version":"a65d3d31b036bce6918f5bc82048b43e42c146873dd4d5a0daa790bf16b481c0","impliedFormat":1},{"version":"2859adaa4f2db3d4f0fc37ad86f056045341496b58fba0dbc16a222f9d5d55b1","impliedFormat":1},{"version":"655ed305e8f4cb95d3f578040301a4e4d6ace112b1bd8824cd32bda66c3677d1","impliedFormat":1},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"808069bba06b6768b62fd22429b53362e7af342da4a236ed2d2e1c89fcca3b4a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","affectsGlobalScope":true,"impliedFormat":1},{"version":"f9501cc13ce624c72b61f12b3963e84fad210fbdf0ffbc4590e08460a3f04eba","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fa06ada475b910e2106c98c68b10483dc8811d0c14a8a8dd36efb2672485b29","impliedFormat":1},{"version":"33e5e9aba62c3193d10d1d33ae1fa75c46a1171cf76fef750777377d53b0303f","impliedFormat":1},{"version":"2b06b93fd01bcd49d1a6bd1f9b65ddcae6480b9a86e9061634d6f8e354c1468f","impliedFormat":1},{"version":"6a0cd27e5dc2cfbe039e731cf879d12b0e2dded06d1b1dedad07f7712de0d7f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"13f5c844119c43e51ce777c509267f14d6aaf31eafb2c2b002ca35584cd13b29","impliedFormat":1},{"version":"e60477649d6ad21542bd2dc7e3d9ff6853d0797ba9f689ba2f6653818999c264","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4c829ab315f57c5442c6667b53769975acbf92003a66aef19bce151987675bd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"b2ade7657e2db96d18315694789eff2ddd3d8aea7215b181f8a0b303277cc579","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"4d631b81fa2f07a0e63a9a143d6a82c25c5f051298651a9b69176ba28930756d","impliedFormat":1},{"version":"836a356aae992ff3c28a0212e3eabcb76dd4b0cc06bcb9607aeef560661b860d","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"41670ee38943d9cbb4924e436f56fc19ee94232bc96108562de1a734af20dc2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c906fb15bd2aabc9ed1e3f44eb6a8661199d6c320b3aa196b826121552cb3695","impliedFormat":1},{"version":"22295e8103f1d6d8ea4b5d6211e43421fe4564e34d0dd8e09e520e452d89e659","impliedFormat":1},{"version":"58647d85d0f722a1ce9de50955df60a7489f0593bf1a7015521efe901c06d770","impliedFormat":1},{"version":"0958335a19c90bf5e69e6654bac7dfb120e432558f8143263d8b2324bd85e61c","impliedFormat":1},{"version":"a10f0e1854f3316d7ee437b79649e5a6ae3ae14ffe6322b02d4987071a95362e","impliedFormat":1},{"version":"e208f73ef6a980104304b0d2ca5f6bf1b85de6009d2c7e404028b875020fa8f2","impliedFormat":1},{"version":"d163b6bc2372b4f07260747cbc6c0a6405ab3fbcea3852305e98ac43ca59f5bc","impliedFormat":1},{"version":"e6fa9ad47c5f71ff733744a029d1dc472c618de53804eae08ffc243b936f87ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6f137d651076822d4fe884287e68fd61785a0d3d1fdb250a5059b691fa897db","impliedFormat":1},{"version":"24826ed94a78d5c64bd857570fdbd96229ad41b5cb654c08d75a9845e3ab7dde","impliedFormat":1},{"version":"8b479a130ccb62e98f11f136d3ac80f2984fdc07616516d29881f3061f2dd472","impliedFormat":1},{"version":"928af3d90454bf656a52a48679f199f64c1435247d6189d1caf4c68f2eaf921f","affectsGlobalScope":true,"impliedFormat":1},{"version":"bceb58df66ab8fb00170df20cd813978c5ab84be1d285710c4eb005d8e9d8efb","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"4f9d8ca0c417b67b69eeb54c7ca1bedd7b56034bb9bfd27c5d4f3bc4692daca7","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"a3fc63c0d7b031693f665f5494412ba4b551fe644ededccc0ab5922401079c95","impliedFormat":1},{"version":"80523c00b8544a2000ae0143e4a90a00b47f99823eb7926c1e03c494216fc363","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"746911b62b329587939560deb5c036aca48aece03147b021fa680223255d5183","affectsGlobalScope":true,"impliedFormat":1},{"version":"18fd40412d102c5564136f29735e5d1c3b455b8a37f920da79561f1fde068208","impliedFormat":1},{"version":"c8d3e5a18ba35629954e48c4cc8f11dc88224650067a172685c736b27a34a4dc","impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"2b55d426ff2b9087485e52ac4bc7cfafe1dc420fc76dad926cd46526567c501a","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"5b7aa3c4c1a5d81b411e8cb302b45507fea9358d3569196b27eb1a27ae3a90ef","affectsGlobalScope":true,"impliedFormat":1},{"version":"5987a903da92c7462e0b35704ce7da94d7fdc4b89a984871c0e2b87a8aae9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea08a0345023ade2b47fbff5a76d0d0ed8bff10bc9d22b83f40858a8e941501c","impliedFormat":1},{"version":"47613031a5a31510831304405af561b0ffaedb734437c595256bb61a90f9311b","impliedFormat":1},{"version":"ae062ce7d9510060c5d7e7952ae379224fb3f8f2dd74e88959878af2057c143b","impliedFormat":1},{"version":"8a1a0d0a4a06a8d278947fcb66bf684f117bf147f89b06e50662d79a53be3e9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"358765d5ea8afd285d4fd1532e78b88273f18cb3f87403a9b16fef61ac9fdcfe","impliedFormat":1},{"version":"9f55299850d4f0921e79b6bf344b47c420ce0f507b9dcf593e532b09ea7eeea1","impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","impliedFormat":1},{"version":"b70c7ea83a7d0de17a791d9b5283f664033a96362c42cc4d2b2e0bdaa65ef7d1","impliedFormat":1},{"version":"4110bfecdffe735742abfc61598c89a9f72d89dc88565b68e73e52e3949a42de","impliedFormat":1},{"version":"77f5a7582f790084c636ad301b0d8928bd2748bfae503ec98d3972f4d6ddfe7f","impliedFormat":1},{"version":"6b065013a280bfafa1583f9f2ac0cb87e08cb665c4e40ffe0184243f6bdf3b0c","impliedFormat":1},{"version":"bc14e6aecf495228a0294e6e7fcbaa720e10dcb0726cd295920eb5cef5a142ed","impliedFormat":1},{"version":"d5451e7062aef622d81d6db5c5bc643615e27f3d5ada7d26db581b424c5454d9","impliedFormat":1},{"version":"99c50339a5330b4630921dfcff94376aae0d180591073cd72e210bc9039ae49c","impliedFormat":1},{"version":"98e93b9cc96c99139d91304bf8b3c44a4d12ee24a68d1c51b1591d29e3df4d62","impliedFormat":1},{"version":"1e23a28e3c87f14afc01b6ab7d8a72681e68d85c572f43a8971ae349a609ba3f","impliedFormat":1},{"version":"c7c712eac33dcc51d798aae3bd37da023018542a08a7b4b827a2cfe6519bb7aa","impliedFormat":1},{"version":"690250f37c2ba7deb3984c520ddce7d346d8debfea64f0917f066f2fb3b04e8f","impliedFormat":1},{"version":"de5a0dc9740a2ccc2109e38ca0c1c50d0261af757c607cbcd5c918418a6a599f","impliedFormat":1},{"version":"14fadbce82a319105d01bc6cbb9051b9f5a26e8a753280ddeb3ac7bac404d96c","impliedFormat":1},{"version":"1b8f840cd28986ebec136a223d5c5b989b547f30055930f39227730a30a777a8","impliedFormat":1},{"version":"bcd5e5bfe8fd430b8ae12bab66b79eb77985a198b34b7a0d3028de8aae5a0d54","impliedFormat":1},{"version":"a581549f21edb7e39fba32e1a606d35fd11b050290ef6b6c1e9c82809160936e","impliedFormat":1},{"version":"17d54db345bad0b5c813f1e9f21a35400c8e0f8124e85206a22f9cdbfabfb0b1","impliedFormat":1},{"version":"62a55b860673944246f1ca9c12b77a7c25f7feeb6b4abe0d0baeef1e6aa284ec","signature":"3c6010fd34b52dce1ee36b38c583529cae6591466e7e6c108476bbc9097ab976"},{"version":"7c84c98602b15961cb6c87b5355e8c1ec9172e0deeda0e1ee7ac1c11165f047e","signature":"7cf67a730fe8d01d95b5c08d67f0eb113bd58e86219d31df507e44762f92ffbc"},{"version":"74e5a7593a85591f2457ce396e42906ff00b2e692b279359930e095839565971","signature":"30ef931c0a02c739359c5c76bf0a14044cc8b98b8b5e6e871974d99a9259857c"},{"version":"8047f6ca76e8dfb6b1a09fea52c3cc1b15ad11209a734fb8ceaea7750148d204","signature":"575a09c08b076e0b0e9dd894de952d72eb36c96e59c6d560b9fffd556ed7104e"},{"version":"7704e64ff084f90152741c9092a417d280d4ea88f797194310bd36b8a6445cc6","signature":"ebc527cfe7241bb64b03d3db6d22fedf16f3bd6ed43cc330ea5bf78d419576ad"},{"version":"d1587fa61165dbb0c2263148901bb4b0938e044b23886c0f3771ae409dd98dcf","signature":"d08e8644db19ae4a427cc182fd0246ca0e4c01dec799d1f6410ebf666169659f"},{"version":"e2213b135ef3dbbe52f4b9a5c9f2c36b73c9deb56d947276e31495f791f7119f","signature":"e7e84919ce9063a920e522c3de11d1f180aaf2ecd499fedc2d42b61cd61db191"},{"version":"a1481fae00b4cc9bfb53ebd4b93ac5dc91872950f6eaefc2b0087f878225b4ff","signature":"41cf9e563be68e0d522bd29b92f5a703cb6125914fae231e65efeb42823c1fd2"},{"version":"231a5b44ab706d7b226310199bfea13cae85a11e7637859a74c678d0c9f5af68","signature":"8d8a82c8eb41128af4264a68c8040f94f3be9169ac41ea686191276bd8315b04"},{"version":"4f47b50bf40cab28e93a06942894296e29093e84c53ef72974289ccfa9472c31","signature":"bffb950b3f4b69f1c44a1905105b70462dc19814fb2f3ac832a659d7db55d7b6"},{"version":"b5df841883ab061b931b3a217487e3de081f4131d0bb24935a25e714fb522857","signature":"b190586b00fb078552246153095a45b54bb57e073db451a1bc4b58feb1e1073c"},{"version":"c697c6f82b4fb472f595fcedaba986bca1e76c94dd86a699480037f70e9d7137","signature":"141d9c8bd48b7a1bf57f7a701fadb8c00a0571c8bbcdfc58fbb01ae484d3f192"},{"version":"1cbe0410d6ad0d8f67d436605add94441cbb8771e97f9b40adce46ff30ad429e","signature":"ca3d00d6d9228a1ff29f67d874325603619b7cc3ab4e660b2700279b63a5efee"},{"version":"11bf2d99763ee281d8b9233a4dbca4366e8f43507e0eba23323d1442c803aeef","signature":"03f1772299f9e18fdd1c509593da00b21b0b9898c120208017183d52f5452e9f"},{"version":"1e9b6df1755159ae7d528390b7c15d919bfe4996d45498549b244f86fde33a44","signature":"949fc6507cdd36f444898ee1ce04dbbceac6912872e9940d9295a82b082ea8cf"},{"version":"2439f09071cabce57356fdca976dc81b7fbb18a942865dbc138016e8fac075f2","signature":"2592dcbd22734249e868cda91271c53f00a71b0d111f88d7988ffef5ab7e0f14"},{"version":"f3258ae4110569cdce7fa0219cc52f039c242ac39df9346cdd370053217cb270","signature":"4094a651e8145fc8dfc8463f2e4fdfc34851376200fbc2db396b0376be2d8dcd"},{"version":"b677322d8558deede9fa5864e63a15f678e8d40f43a1dcbd17e83f1665b8d413","signature":"d810972b6f9683e4b25c4f7a76b1942227949b177263cc6c53099de12c6fed79"},{"version":"49e576b44e7b1495450b76b35e71c0c3cf56c3238d06082729640efbe2022bdc","signature":"069ac004d9d000a07e13dbaa0fbd7fb17b082b685e9198de581380e66f7489ba"},{"version":"0746a23017f128c838364408139e34ef8d0e503e36bc5bd1b7a883a2945d91c7","signature":"2771e3518e4ea9508258f8b15caf53db1f36d68fbf415c539302da0bbbb2148c"}],"root":[[64,69],[211,230]],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"jsx":4,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noUncheckedIndexedAccess":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"stripInternal":true,"target":9,"tsBuildInfoFile":"./.tsbuildinfo"},"referencedMap":[[70,1],[78,2],[75,3],[79,1],[77,4],[71,2],[74,5],[82,6],[83,7],[72,1],[73,2],[80,8],[81,9],[76,10],[193,1],[194,11],[138,12],[139,12],[140,13],[93,14],[141,15],[142,16],[143,17],[88,1],[91,18],[89,1],[90,1],[144,19],[145,20],[146,21],[147,22],[148,23],[149,24],[150,24],[151,25],[152,26],[153,27],[154,28],[94,1],[92,1],[155,29],[156,30],[157,31],[191,32],[158,33],[159,1],[160,34],[161,35],[162,36],[163,37],[164,38],[165,39],[166,40],[167,41],[168,42],[169,42],[170,43],[171,1],[172,44],[173,45],[175,46],[174,47],[176,48],[177,49],[178,50],[179,51],[180,52],[181,53],[182,54],[183,55],[184,56],[185,57],[186,58],[187,59],[188,60],[95,1],[96,1],[97,1],[135,61],[136,1],[137,1],[189,62],[190,63],[87,64],[86,1],[192,65],[201,66],[200,67],[199,68],[202,69],[207,70],[203,71],[204,70],[205,70],[206,72],[208,73],[197,74],[196,75],[209,70],[198,76],[210,77],[195,78],[85,79],[84,80],[61,1],[62,1],[12,1],[10,1],[11,1],[16,1],[15,1],[2,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[23,1],[24,1],[3,1],[25,1],[26,1],[4,1],[27,1],[31,1],[28,1],[29,1],[30,1],[32,1],[33,1],[34,1],[5,1],[35,1],[36,1],[37,1],[38,1],[6,1],[42,1],[39,1],[40,1],[41,1],[43,1],[7,1],[44,1],[49,1],[50,1],[45,1],[46,1],[47,1],[48,1],[8,1],[54,1],[51,1],[52,1],[53,1],[55,1],[9,1],[56,1],[63,1],[57,1],[58,1],[60,1],[59,1],[1,1],[14,1],[13,1],[113,81],[123,82],[112,81],[133,83],[104,84],[103,85],[132,86],[126,87],[131,88],[106,89],[120,90],[105,91],[129,92],[101,93],[100,86],[130,94],[102,95],[107,96],[108,1],[111,96],[98,1],[134,97],[124,98],[115,99],[116,100],[118,101],[114,102],[117,103],[127,86],[109,104],[110,105],[119,106],[99,107],[122,98],[121,96],[125,1],[128,108],[64,109],[66,110],[68,111],[69,1],[212,112],[220,113],[222,114],[230,115],[215,116],[227,1],[225,1],[214,1],[229,109],[216,117],[213,118],[65,109],[67,119],[226,120],[223,121],[224,121],[219,122],[211,123],[221,109],[228,124],[217,125],[218,1]],"latestChangedDtsFile":"./src/index.d.ts","version":"6.0.3"}
|
|
@@ -11,7 +11,7 @@ export class ChannelRouter {
|
|
|
11
11
|
}
|
|
12
12
|
onTelegramMessage(msg) {
|
|
13
13
|
const settings = this.settingsManager.get();
|
|
14
|
-
if (msg.isGroup && !settings.
|
|
14
|
+
if (msg.isGroup && !settings.channels?.allow_groups) {
|
|
15
15
|
return null;
|
|
16
16
|
}
|
|
17
17
|
const existing = this.registry.findTelegramChannel(msg.chatId);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"channel-router.js","sourceRoot":"","sources":["../../src/channel-router.ts"],"names":[],"mappings":"AAwBA,MAAM,OAAO,aAAa;IAId;IACA;IACA;IALF,YAAY,CAAkB;IAEtC,YACU,QAAyB,EACzB,WAA0B,EAC1B,eAAgC,EACxC,YAA6B;QAHrB,aAAQ,GAAR,QAAQ,CAAiB;QACzB,gBAAW,GAAX,WAAW,CAAe;QAC1B,oBAAe,GAAf,eAAe,CAAiB;QAGxC,IAAI,CAAC,YAAY,GAAG,YAAY,CAAC;IACnC,CAAC;IAED,iBAAiB,CAAC,GAAoB;QACpC,MAAM,QAAQ,GAAG,IAAI,CAAC,eAAe,CAAC,GAAG,EAAE,CAAC;QAE5C,IAAI,GAAG,CAAC,OAAO,IAAI,CAAC,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"channel-router.js","sourceRoot":"","sources":["../../src/channel-router.ts"],"names":[],"mappings":"AAwBA,MAAM,OAAO,aAAa;IAId;IACA;IACA;IALF,YAAY,CAAkB;IAEtC,YACU,QAAyB,EACzB,WAA0B,EAC1B,eAAgC,EACxC,YAA6B;QAHrB,aAAQ,GAAR,QAAQ,CAAiB;QACzB,gBAAW,GAAX,WAAW,CAAe;QAC1B,oBAAe,GAAf,eAAe,CAAiB;QAGxC,IAAI,CAAC,YAAY,GAAG,YAAY,CAAC;IACnC,CAAC;IAED,iBAAiB,CAAC,GAAoB;QACpC,MAAM,QAAQ,GAAG,IAAI,CAAC,eAAe,CAAC,GAAG,EAAE,CAAC;QAE5C,IAAI,GAAG,CAAC,OAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,YAAY,EAAE,CAAC;YACpD,OAAO,IAAI,CAAC;QACd,CAAC;QAED,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC,mBAAmB,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;QAC/D,IAAI,QAAQ,EAAE,CAAC;YACb,OAAO,EAAE,SAAS,EAAE,QAAQ,CAAC,EAAE,EAAE,SAAS,EAAE,QAAQ,CAAC,SAAS,EAAE,CAAC;QACnE,CAAC;QAED,MAAM,SAAS,GAAG,IAAI,CAAC,iBAAiB,EAAE,CAAC;QAC3C,MAAM,WAAW,GAAG,GAAG,CAAC,OAAO;YAC7B,CAAC,CAAC,CAAC,GAAG,CAAC,SAAS,IAAI,SAAS,GAAG,CAAC,MAAM,EAAE,CAAC;YAC1C,CAAC,CAAC,QAAQ,GAAG,CAAC,MAAM,EAAE,CAAC;QAEzB,MAAM,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,UAAU,EAAE,GAAG,CAAC,MAAM,EAAE,SAAS,EAAE,WAAW,CAAC,CAAC;QAC1F,OAAO,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,EAAE,SAAS,EAAE,OAAO,CAAC,SAAS,EAAE,CAAC;IACjE,CAAC;IAED,KAAK,CAAC,oBAAoB,CAAC,MAAc,EAAE,IAAY;QACrD,MAAM,IAAI,CAAC,WAAW,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;IACvC,CAAC;IAED,KAAK,CAAC,oBAAoB,CACxB,MAAc,EACd,QAAgB,EAChB,KAA8B,EAC9B,UAAkB;QAElB,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,CAAC;YACvB,OAAO,CAAC,IAAI,CAAC,6EAA6E,CAAC,CAAC;YAC5F,OAAO;QACT,CAAC;QACD,IAAI,CAAC;YACH,MAAM,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,UAAU,CAAC,CAAC;QAC/D,CAAC;QAAC,OAAO,GAAG,EAAE,CAAC;YACb,OAAO,CAAC,KAAK,CAAC,+CAA+C,EAAE,GAAG,CAAC,CAAC;QACtE,CAAC;IACH,CAAC;IAED,iBAAiB,CAAC,SAAiB;QACjC,OAAO,IAAI,CAAC,QAAQ,CAAC,iBAAiB,CAAC,SAAS,CAAC,CAAC;IACpD,CAAC;IAEO,iBAAiB;QACvB,MAAM,GAAG,GAAG,IAAI,CAAC,GAAG,EAAE,CAAC;QACvB,MAAM,MAAM,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;QAC1D,OAAO,QAAQ,GAAG,IAAI,MAAM,EAAE,CAAC;IACjC,CAAC;CACF"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/** Format OS info for system prompt injection. */
|
|
2
|
+
export declare function getOsInfo(): string;
|
|
3
|
+
export declare function getTzOffsetString(timeZone: string, date?: Date): string;
|
|
4
|
+
/** Format current date/time as a readable string for system prompt injection. */
|
|
5
|
+
export declare function formatDate(): string;
|
|
6
|
+
/**
|
|
7
|
+
* Wrap a system prompt with current date context.
|
|
8
|
+
* Returns the enriched prompt, or undefined if no system prompt given.
|
|
9
|
+
*/
|
|
10
|
+
export declare function withDateContext(systemPrompt: string | undefined): string | undefined;
|
|
11
|
+
//# sourceMappingURL=context.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"context.d.ts","sourceRoot":"","sources":["../../src/context.ts"],"names":[],"mappings":"AAGA,kDAAkD;AAClD,wBAAgB,SAAS,IAAI,MAAM,CAsBlC;AAED,wBAAgB,iBAAiB,CAAC,QAAQ,EAAE,MAAM,EAAE,IAAI,GAAE,IAAiB,GAAG,MAAM,CAqCnF;AAED,iFAAiF;AACjF,wBAAgB,UAAU,IAAI,MAAM,CAMnC;AAED;;;GAGG;AACH,wBAAgB,eAAe,CAAC,YAAY,EAAE,MAAM,GAAG,SAAS,GAAG,MAAM,GAAG,SAAS,CAGpF"}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { platform, arch, hostname } from 'node:os';
|
|
2
|
+
import { detectWindowsShell } from './shell-detect.js';
|
|
3
|
+
/** Format OS info for system prompt injection. */
|
|
4
|
+
export function getOsInfo() {
|
|
5
|
+
const p = platform();
|
|
6
|
+
const osName = p === 'win32' ? 'Windows' : p === 'darwin' ? 'macOS' : 'Linux';
|
|
7
|
+
const base = `${osName} (${arch()}, ${hostname()})`;
|
|
8
|
+
if (p === 'win32') {
|
|
9
|
+
const shell = detectWindowsShell();
|
|
10
|
+
const shellGuidance = shell === 'cmd'
|
|
11
|
+
? '. Shell: cmd.exe (Command Prompt).' +
|
|
12
|
+
' Use Windows commands: dir (not ls), type (not cat), del (not rm), copy (not cp), findstr (not grep).' +
|
|
13
|
+
' Chain commands with & not &&. Set env variables with: set VAR=value (not export).'
|
|
14
|
+
: '. Shell: PowerShell.' +
|
|
15
|
+
' Unix aliases work: ls (Get-ChildItem), cat (Get-Content), grep (Select-String), curl (Invoke-WebRequest).' +
|
|
16
|
+
' Chain with && in PS 7+. Use $env:VAR for env variables.';
|
|
17
|
+
return (base +
|
|
18
|
+
shellGuidance +
|
|
19
|
+
' File path separator is backslash but glob patterns must always use forward slashes.' +
|
|
20
|
+
' Use `**/*.ts` not `**\\*.ts`. The `path` parameter also accepts forward slashes.');
|
|
21
|
+
}
|
|
22
|
+
return base;
|
|
23
|
+
}
|
|
24
|
+
export function getTzOffsetString(timeZone, date = new Date()) {
|
|
25
|
+
if (timeZone === 'UTC')
|
|
26
|
+
return 'Z';
|
|
27
|
+
try {
|
|
28
|
+
const tzString = date.toLocaleString('en-US', { timeZone, timeStyle: 'long' });
|
|
29
|
+
const match = tzString.match(/GMT([+-]\d+)(?::(\d+))?/);
|
|
30
|
+
if (match && match[1]) {
|
|
31
|
+
const sign = match[1][0];
|
|
32
|
+
const hours = match[1].slice(1).padStart(2, '0');
|
|
33
|
+
const minutes = (match[2] || '00').padStart(2, '0');
|
|
34
|
+
return `${sign}${hours}:${minutes}`;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
catch (e) { }
|
|
38
|
+
try {
|
|
39
|
+
const formatter = new Intl.DateTimeFormat('en-US', {
|
|
40
|
+
timeZone,
|
|
41
|
+
timeZoneName: 'longOffset',
|
|
42
|
+
});
|
|
43
|
+
const parts = formatter.formatToParts(date);
|
|
44
|
+
const tzNamePart = parts.find(p => p.type === 'timeZoneName');
|
|
45
|
+
if (tzNamePart) {
|
|
46
|
+
const match = tzNamePart.value.match(/GMT([+-]\d+)(?::(\d+))?/);
|
|
47
|
+
if (match && match[1]) {
|
|
48
|
+
const sign = match[1][0];
|
|
49
|
+
const hours = match[1].slice(1).padStart(2, '0');
|
|
50
|
+
const minutes = (match[2] || '00').padStart(2, '0');
|
|
51
|
+
return `${sign}${hours}:${minutes}`;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
catch (e) { }
|
|
56
|
+
const offsetMinutes = -date.getTimezoneOffset();
|
|
57
|
+
const sign = offsetMinutes >= 0 ? '+' : '-';
|
|
58
|
+
const absMinutes = Math.abs(offsetMinutes);
|
|
59
|
+
const hours = String(Math.floor(absMinutes / 60)).padStart(2, '0');
|
|
60
|
+
const mins = String(absMinutes % 60).padStart(2, '0');
|
|
61
|
+
return `${sign}${hours}:${mins}`;
|
|
62
|
+
}
|
|
63
|
+
/** Format current date/time as a readable string for system prompt injection. */
|
|
64
|
+
export function formatDate() {
|
|
65
|
+
const now = new Date();
|
|
66
|
+
const timezone = Intl.DateTimeFormat().resolvedOptions().timeZone || 'UTC';
|
|
67
|
+
const localStr = now.toLocaleString('en-US', { timeZone: timezone });
|
|
68
|
+
const offset = getTzOffsetString(timezone, now);
|
|
69
|
+
return `${localStr} (Timezone: ${timezone}, Offset: ${offset})`;
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* Wrap a system prompt with current date context.
|
|
73
|
+
* Returns the enriched prompt, or undefined if no system prompt given.
|
|
74
|
+
*/
|
|
75
|
+
export function withDateContext(systemPrompt) {
|
|
76
|
+
if (!systemPrompt)
|
|
77
|
+
return undefined;
|
|
78
|
+
return `[Current date and time: ${formatDate()}]\n[Operating system: ${getOsInfo()}]\n\n${systemPrompt}`;
|
|
79
|
+
}
|
|
80
|
+
//# sourceMappingURL=context.js.map
|