knodin 0.5.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.
Files changed (81) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +590 -0
  3. package/dist/bin/cli.js +1704 -0
  4. package/dist/src/agent-integration.js +250 -0
  5. package/dist/src/artifact-refresh.js +81 -0
  6. package/dist/src/cli-args.js +267 -0
  7. package/dist/src/cli-model.js +324 -0
  8. package/dist/src/compact-structural.js +96 -0
  9. package/dist/src/competitive-constraints.js +20 -0
  10. package/dist/src/competitive-manifest.js +330 -0
  11. package/dist/src/competitive-measurement.js +183 -0
  12. package/dist/src/competitive-runner.js +453 -0
  13. package/dist/src/competitive-sandbox.js +108 -0
  14. package/dist/src/context-export.js +422 -0
  15. package/dist/src/context.js +102 -0
  16. package/dist/src/docs-sections.js +141 -0
  17. package/dist/src/doctor.js +380 -0
  18. package/dist/src/engine/ann-hnsw.js +271 -0
  19. package/dist/src/engine/embeddings.js +193 -0
  20. package/dist/src/engine/file-walker.js +43 -0
  21. package/dist/src/engine/index.js +13030 -0
  22. package/dist/src/engine/perf.js +115 -0
  23. package/dist/src/engine/prune.js +112 -0
  24. package/dist/src/engine/source-policy.js +69 -0
  25. package/dist/src/engine/sqlite.js +71 -0
  26. package/dist/src/engine/symbol-delete.js +58 -0
  27. package/dist/src/failure-diagnosis.js +590 -0
  28. package/dist/src/fleet.js +7 -0
  29. package/dist/src/git-executable.js +31 -0
  30. package/dist/src/graph-query-health.js +115 -0
  31. package/dist/src/index-activity.js +125 -0
  32. package/dist/src/init-progress-worker.js +107 -0
  33. package/dist/src/init-progress.js +155 -0
  34. package/dist/src/init.js +985 -0
  35. package/dist/src/lifecycle-health.js +213 -0
  36. package/dist/src/lsp-readonly.js +217 -0
  37. package/dist/src/output-compression.js +629 -0
  38. package/dist/src/output-telemetry.js +359 -0
  39. package/dist/src/pr-triage.js +638 -0
  40. package/dist/src/relationship-adapters.js +370 -0
  41. package/dist/src/release-attestation.js +533 -0
  42. package/dist/src/repair-progress-worker.js +121 -0
  43. package/dist/src/repair-progress.js +262 -0
  44. package/dist/src/repository-init-process.js +173 -0
  45. package/dist/src/repository-management.js +1089 -0
  46. package/dist/src/response-budget.js +184 -0
  47. package/dist/src/server.js +53 -0
  48. package/dist/src/system-config.js +615 -0
  49. package/dist/src/terminal-help.js +83 -0
  50. package/dist/src/tools/knodin-tools.js +1438 -0
  51. package/dist/src/tools/reckon-tools.js +5 -0
  52. package/dist/src/update-policy.js +944 -0
  53. package/dist/src/update-trust.js +503 -0
  54. package/dist/src/version.js +13 -0
  55. package/dist/src/visualization.js +162 -0
  56. package/dist/src/wait-for-fresh.js +98 -0
  57. package/dist/src/worktree-lifecycle.js +231 -0
  58. package/docs/CLI.md +39 -0
  59. package/docs/COMMAND-OUTPUT-COMPRESSION.md +194 -0
  60. package/docs/DEAD-CODE-AND-IMPACT.md +27 -0
  61. package/docs/DOCTOR-AND-UPDATES.md +84 -0
  62. package/docs/INDEXING-POLICY-AND-PROVENANCE.md +37 -0
  63. package/docs/INSTALLATION.md +208 -0
  64. package/docs/MCP.md +100 -0
  65. package/docs/PT-ACCESS-RECOMMENDATION.md +91 -0
  66. package/docs/RELEASE-0.3-EVIDENCE.md +73 -0
  67. package/docs/REPOSITORIES-AND-WORKTREES.md +81 -0
  68. package/docs/SIGNED-UPDATES.md +146 -0
  69. package/docs/SYSTEMS-AND-RELATIONSHIPS.md +45 -0
  70. package/docs/TELEMETRY.md +42 -0
  71. package/docs/releases/0.3.0.md +46 -0
  72. package/docs/releases/0.4.0.md +68 -0
  73. package/docs/releases/0.4.1.md +28 -0
  74. package/docs/releases/0.4.2.md +27 -0
  75. package/docs/releases/0.4.3.md +23 -0
  76. package/docs/releases/0.5.0.md +29 -0
  77. package/package.json +110 -0
  78. package/schemas/release-attestation-v1.schema.json +210 -0
  79. package/tree-sitter-prisma.wasm +0 -0
  80. package/tree-sitter-sql.wasm +0 -0
  81. package/tree-sitter-xml.wasm +0 -0
@@ -0,0 +1,359 @@
1
+ import crypto from "node:crypto";
2
+ import fs from "node:fs";
3
+ import path from "node:path";
4
+ import { encode } from "gpt-tokenizer/encoding/o200k_base";
5
+ export const TELEMETRY_TOKENIZER = "gpt-tokenizer@3.4.0:o200k_base";
6
+ export const countOutputTokens = (value) => encode(value).length;
7
+ export const DEFAULT_TELEMETRY_RETENTION_DAYS = 30;
8
+ const DEFAULT_INPUT = ".reckon-telemetry.jsonl";
9
+ function lineCount(value) {
10
+ return value.length === 0 ? 0 : value.split(/\r?\n/).length;
11
+ }
12
+ function repositoryIdentifier(repo) {
13
+ return `repo_${crypto.createHash("sha256").update(fs.realpathSync(repo)).digest("hex").slice(0, 16)}`;
14
+ }
15
+ function privatePath(repoPath, requested, purpose) {
16
+ const repo = fs.realpathSync(repoPath);
17
+ const target = path.resolve(repo, requested);
18
+ if (target !== repo && !target.startsWith(`${repo}${path.sep}`))
19
+ throw new Error(`knodin telemetry ${purpose}: path must stay inside the repository`);
20
+ const relative = path.relative(repo, target);
21
+ let cursor = repo;
22
+ for (const segment of relative === "" ? [] : relative.split(path.sep)) {
23
+ cursor = path.join(cursor, segment);
24
+ let stat;
25
+ try {
26
+ stat = fs.lstatSync(cursor);
27
+ }
28
+ catch (error) {
29
+ if (error.code === "ENOENT")
30
+ break;
31
+ throw error;
32
+ }
33
+ if (stat.isSymbolicLink())
34
+ throw new Error(purpose === "persist"
35
+ ? "knodin telemetry: refusing symlinked persistence path"
36
+ : `knodin telemetry ${purpose}: refusing symlinked path`);
37
+ }
38
+ return { repo, target };
39
+ }
40
+ function atomicPrivateWrite(target, value) {
41
+ fs.mkdirSync(path.dirname(target), { recursive: true, mode: 0o700 });
42
+ const temporary = `${target}.${process.pid}.${Date.now()}.tmp`;
43
+ fs.writeFileSync(temporary, value, { mode: 0o600, flag: "wx" });
44
+ fs.renameSync(temporary, target);
45
+ }
46
+ function retentionCutoff(days, now) {
47
+ if (!Number.isInteger(days) || days < 1 || days > 3650)
48
+ throw new Error("knodin telemetry: retention days must be an integer from 1 to 3650");
49
+ return now.getTime() - days * 86_400_000;
50
+ }
51
+ function percent(baseline, optimized) {
52
+ if (baseline === 0)
53
+ return optimized === 0 ? 0 : Number.NEGATIVE_INFINITY;
54
+ return Math.round(((baseline - optimized) / baseline) * 10_000) / 100;
55
+ }
56
+ function baselineFiles(repo, operation, output) {
57
+ if (!["query:file_summary", "query:batch_outline"].includes(operation))
58
+ return [];
59
+ const candidates = operation === "query:file_summary"
60
+ ? [output.target]
61
+ : Array.isArray(output.results)
62
+ ? output.results.map((row) => row.file)
63
+ : [];
64
+ const root = fs.realpathSync(repo);
65
+ const files = new Set();
66
+ for (const candidate of candidates) {
67
+ if (typeof candidate !== "string" || !candidate)
68
+ continue;
69
+ const resolved = path.resolve(root, candidate);
70
+ let real;
71
+ try {
72
+ real = fs.realpathSync(resolved);
73
+ }
74
+ catch {
75
+ continue;
76
+ }
77
+ if (real !== root && !real.startsWith(`${root}${path.sep}`))
78
+ continue;
79
+ if (fs.statSync(real).isFile())
80
+ files.add(real);
81
+ }
82
+ return [...files].sort();
83
+ }
84
+ export function measureOutput(options) {
85
+ const serialized = JSON.stringify(options.output);
86
+ const optimized = {
87
+ contract: "actual-operation-response",
88
+ bytes: Buffer.byteLength(serialized),
89
+ tokens: encode(serialized).length,
90
+ lines: lineCount(serialized),
91
+ };
92
+ const files = baselineFiles(options.repo, options.operation, options.output);
93
+ const baselineText = files.length > 0 ? files.map((file) => fs.readFileSync(file, "utf-8")).join("\n") : null;
94
+ const baseline = baselineText === null
95
+ ? null
96
+ : {
97
+ contract: "executed-full-file-read",
98
+ bytes: Buffer.byteLength(baselineText),
99
+ tokens: encode(baselineText).length,
100
+ fileCount: files.length,
101
+ lines: lineCount(baselineText),
102
+ };
103
+ const status = typeof options.output.status === "string" ? options.output.status : undefined;
104
+ const availability = options.output.availability;
105
+ const freshness = options.output.freshness;
106
+ const fidelity = options.output.fidelity;
107
+ const database = path.join(fs.realpathSync(options.repo), ".reckon", "db.sqlite");
108
+ const latencyMs = Math.round((performance.now() - options.startedAt) * 100) / 100;
109
+ const outcome = (status !== undefined &&
110
+ ["error", "failed", "unavailable", "blocked", "timeout"].includes(status)) ||
111
+ availability?.state === "unavailable"
112
+ ? "error"
113
+ : "success";
114
+ let compressionFidelity = null;
115
+ if (typeof fidelity === "number")
116
+ compressionFidelity = fidelity;
117
+ else if (typeof fidelity?.percent === "number")
118
+ compressionFidelity = fidelity.percent;
119
+ return {
120
+ schemaVersion: 2,
121
+ at: new Date().toISOString(),
122
+ repositoryId: repositoryIdentifier(options.repo),
123
+ operation: options.operation,
124
+ latencyMs,
125
+ rssBytes: process.memoryUsage().rss,
126
+ temperature: "cold",
127
+ outcome,
128
+ agentRoundTrips: 1,
129
+ indexStorageBytes: fs.existsSync(database) ? fs.statSync(database).size : null,
130
+ indexingMs: options.operation.startsWith("index") ? latencyMs : null,
131
+ freshnessFailure: options.output.staleness === "stale" ||
132
+ (typeof freshness?.state === "string" && freshness.state !== "fresh") ||
133
+ availability?.state === "unavailable",
134
+ compressionFidelity,
135
+ confidence: baseline ? "measured" : "unavailable",
136
+ truncated: options.truncated,
137
+ detailMode: options.detailMode,
138
+ tokenizer: TELEMETRY_TOKENIZER,
139
+ schemaTokens: options.schemaTokens,
140
+ optimized,
141
+ baseline,
142
+ savings: baseline
143
+ ? {
144
+ bytes: baseline.bytes - optimized.bytes,
145
+ tokens: baseline.tokens - optimized.tokens,
146
+ bytePercent: percent(baseline.bytes, optimized.bytes),
147
+ tokenPercent: percent(baseline.tokens, optimized.tokens),
148
+ }
149
+ : null,
150
+ };
151
+ }
152
+ function percentile(values, fraction) {
153
+ if (values.length === 0)
154
+ return 0;
155
+ const sorted = [...values].sort((left, right) => left - right);
156
+ return sorted[Math.min(sorted.length - 1, Math.ceil(sorted.length * fraction) - 1)] ?? 0;
157
+ }
158
+ function escapeHtml(value) {
159
+ return value
160
+ .replaceAll("&", "&amp;")
161
+ .replaceAll("<", "&lt;")
162
+ .replaceAll(">", "&gt;")
163
+ .replaceAll('"', "&quot;")
164
+ .replaceAll("'", "&#39;");
165
+ }
166
+ function telemetrySummary(records) {
167
+ const measured = records.filter(({ savings }) => savings !== null);
168
+ return {
169
+ calls: records.length,
170
+ successes: records.filter(({ outcome }) => outcome !== "error").length,
171
+ errors: records.filter(({ outcome }) => outcome === "error").length,
172
+ measuredBaselines: measured.length,
173
+ measuredTokensAvoided: measured.reduce((sum, record) => sum + (record.savings?.tokens ?? 0), 0),
174
+ latencyP50Ms: percentile(records.map(({ latencyMs }) => latencyMs), 0.5),
175
+ latencyP95Ms: percentile(records.map(({ latencyMs }) => latencyMs), 0.95),
176
+ freshnessFailures: records.filter(({ freshnessFailure }) => freshnessFailure === true).length,
177
+ compressionFidelitySamples: records.filter(({ compressionFidelity }) => typeof compressionFidelity === "number").length,
178
+ compressionFidelityP50: percentile(records.flatMap(({ compressionFidelity }) => typeof compressionFidelity === "number" ? [compressionFidelity] : []), 0.5),
179
+ indexStorageBytes: Math.max(0, ...records.map(({ indexStorageBytes }) => indexStorageBytes ?? 0)),
180
+ indexingMs: records.reduce((sum, record) => sum + (record.indexingMs ?? 0), 0),
181
+ };
182
+ }
183
+ export function writeTelemetryReport(repoPath, records, outputPath = ".reckon/telemetry-report.html") {
184
+ const { repo, target: output } = privatePath(repoPath, outputPath, "report");
185
+ const groups = new Map();
186
+ for (const record of records) {
187
+ const group = groups.get(record.operation) ?? [];
188
+ group.push(record);
189
+ groups.set(record.operation, group);
190
+ }
191
+ const rows = [...groups]
192
+ .sort(([left], [right]) => left.localeCompare(right))
193
+ .map(([operation, values]) => {
194
+ const measured = values.filter(({ savings }) => savings !== null);
195
+ const tokens = measured.reduce((sum, value) => sum + (value.savings?.tokens ?? 0), 0);
196
+ return `<tr><td>${escapeHtml(operation)}</td><td>${values.length}</td><td>${values.filter(({ outcome }) => outcome === "error").length}</td><td>${measured.length}</td><td>${tokens}</td><td>${percentile(values.map(({ latencyMs }) => latencyMs), 0.5)}</td><td>${percentile(values.map(({ latencyMs }) => latencyMs), 0.95)}</td></tr>`;
197
+ })
198
+ .join("");
199
+ const summary = telemetrySummary(records);
200
+ const timeSeries = new Map();
201
+ for (const record of records) {
202
+ const day = typeof record.at === "string" ? record.at.slice(0, 10) : "unknown";
203
+ const current = timeSeries.get(day) ?? { calls: 0, tokens: 0 };
204
+ current.calls += 1;
205
+ current.tokens += record.savings?.tokens ?? 0;
206
+ timeSeries.set(day, current);
207
+ }
208
+ const seriesRows = [...timeSeries]
209
+ .sort(([left], [right]) => left.localeCompare(right))
210
+ .map(([day, value]) => `<tr><td>${escapeHtml(day)}</td><td>${value.calls}</td><td>${value.tokens}</td></tr>`)
211
+ .join("");
212
+ const repositories = new Map();
213
+ for (const record of records)
214
+ if (record.repositoryId)
215
+ repositories.set(record.repositoryId, (repositories.get(record.repositoryId) ?? 0) + 1);
216
+ const repositoryRows = [...repositories]
217
+ .sort(([left], [right]) => left.localeCompare(right))
218
+ .map(([id, calls]) => `<tr><td>${escapeHtml(id)}</td><td>${calls}</td></tr>`)
219
+ .join("");
220
+ const html = `<!doctype html><meta charset="utf-8"><meta name="color-scheme" content="light dark"><title>knodin telemetry</title><style>:root{color-scheme:light dark;--line:#d0d7de;--card:#f6f8fa}body{font:14px system-ui;margin:2rem;max-width:76rem}section{background:var(--card);padding:1rem;margin:1rem 0;border-radius:.5rem}table{border-collapse:collapse;width:100%}th,td{padding:.55rem;border-bottom:1px solid var(--line);text-align:left}@media(prefers-color-scheme:dark){:root{--line:#30363d;--card:#161b22}}</style><h1>knodin local telemetry</h1><p>Tokenizer: ${TELEMETRY_TOKENIZER}. Local, opt-in, metadata-only; source, raw output, command text, usernames, and paths are not persisted.</p><section><h2>Summary</h2><p>Total measured tokens avoided: ${summary.measuredTokensAvoided}</p><p>Calls: ${summary.calls}; successes: ${summary.successes}; errors: ${summary.errors}; measured baselines: ${summary.measuredBaselines}</p><p>Latency p50 / p95: ${summary.latencyP50Ms} / ${summary.latencyP95Ms} ms</p><p>Freshness failures: ${summary.freshnessFailures}; compression fidelity samples / p50: ${summary.compressionFidelitySamples} / ${summary.compressionFidelityP50}; indexing time: ${summary.indexingMs} ms; index storage: ${summary.indexStorageBytes} bytes</p></section><section><h2>Operation breakdown</h2><table><thead><tr><th>Operation</th><th>Calls</th><th>Errors</th><th>Measured baselines</th><th>Net tokens saved</th><th>p50 ms</th><th>p95 ms</th></tr></thead><tbody>${rows}</tbody></table></section><section><h2>Time series</h2><table><thead><tr><th>Day</th><th>Calls</th><th>Tokens avoided</th></tr></thead><tbody>${seriesRows}</tbody></table></section><section><h2>Repository breakdown</h2><table><thead><tr><th>Private repository id</th><th>Calls</th></tr></thead><tbody>${repositoryRows}</tbody></table></section><p>Use <code>knodin telemetry export</code> for the machine-readable evidence bundle and <code>knodin telemetry clear</code> to delete persisted records.</p>`;
221
+ atomicPrivateWrite(output, html);
222
+ return {
223
+ outputPath: path.relative(repo, output),
224
+ records: records.length,
225
+ operations: groups.size,
226
+ };
227
+ }
228
+ function sanitizeTelemetryRecord(record) {
229
+ return {
230
+ schemaVersion: record.schemaVersion,
231
+ at: record.at,
232
+ repositoryId: record.repositoryId,
233
+ operation: record.operation,
234
+ latencyMs: record.latencyMs,
235
+ rssBytes: record.rssBytes,
236
+ temperature: record.temperature,
237
+ outcome: record.outcome,
238
+ agentRoundTrips: record.agentRoundTrips,
239
+ indexStorageBytes: record.indexStorageBytes,
240
+ indexingMs: record.indexingMs,
241
+ freshnessFailure: record.freshnessFailure,
242
+ compressionFidelity: record.compressionFidelity,
243
+ confidence: record.confidence,
244
+ truncated: record.truncated,
245
+ detailMode: record.detailMode,
246
+ tokenizer: record.tokenizer,
247
+ schemaTokens: record.schemaTokens,
248
+ optimized: {
249
+ contract: "actual-operation-response",
250
+ bytes: record.optimized.bytes,
251
+ tokens: record.optimized.tokens,
252
+ lines: record.optimized.lines,
253
+ },
254
+ baseline: record.baseline
255
+ ? {
256
+ contract: "executed-full-file-read",
257
+ bytes: record.baseline.bytes,
258
+ tokens: record.baseline.tokens,
259
+ fileCount: record.baseline.fileCount,
260
+ lines: record.baseline.lines,
261
+ }
262
+ : null,
263
+ savings: record.savings
264
+ ? {
265
+ bytes: record.savings.bytes,
266
+ tokens: record.savings.tokens,
267
+ bytePercent: record.savings.bytePercent,
268
+ tokenPercent: record.savings.tokenPercent,
269
+ }
270
+ : null,
271
+ };
272
+ }
273
+ export function readTelemetryRecords(repoPath, inputPath = DEFAULT_INPUT, retentionDays, now = new Date()) {
274
+ const { target: input } = privatePath(repoPath, inputPath, "read");
275
+ if (!fs.existsSync(input))
276
+ return [];
277
+ const records = fs
278
+ .readFileSync(input, "utf-8")
279
+ .split(/\r?\n/)
280
+ .filter(Boolean)
281
+ .map((line, index) => {
282
+ try {
283
+ return JSON.parse(line);
284
+ }
285
+ catch {
286
+ throw new Error(`knodin telemetry read: malformed JSONL record at line ${index + 1}`);
287
+ }
288
+ })
289
+ .filter((record) => typeof record.operation === "string" &&
290
+ record.tokenizer === TELEMETRY_TOKENIZER &&
291
+ typeof record.optimized?.tokens === "number")
292
+ .map(sanitizeTelemetryRecord);
293
+ if (retentionDays === undefined)
294
+ return records;
295
+ const cutoff = retentionCutoff(retentionDays, now);
296
+ return records.filter(({ at }) => typeof at !== "string" || Date.parse(at) >= cutoff);
297
+ }
298
+ export function appendTelemetryRecord(repoPath, record, retentionDays = DEFAULT_TELEMETRY_RETENTION_DAYS, now = new Date(), inputPath = DEFAULT_INPUT) {
299
+ const { target } = privatePath(repoPath, inputPath, "persist");
300
+ const records = readTelemetryRecords(repoPath, inputPath);
301
+ records.push(sanitizeTelemetryRecord({ ...record, at: record.at ?? now.toISOString() }));
302
+ const cutoff = retentionCutoff(retentionDays, now);
303
+ const retained = records.filter(({ at }) => typeof at !== "string" || Date.parse(at) >= cutoff);
304
+ atomicPrivateWrite(target, retained.length === 0 ? "" : `${retained.map((value) => JSON.stringify(value)).join("\n")}\n`);
305
+ return { records: retained.length, retentionDays };
306
+ }
307
+ export function telemetryStatus(repoPath, inputPath = DEFAULT_INPUT, retentionDays = DEFAULT_TELEMETRY_RETENTION_DAYS, now = new Date()) {
308
+ const { repo, target } = privatePath(repoPath, inputPath, "status");
309
+ const persisted = fs.existsSync(target);
310
+ const records = readTelemetryRecords(repo, inputPath, retentionDays, now);
311
+ const dates = records
312
+ .map(({ at }) => (typeof at === "string" ? at : null))
313
+ .filter((value) => value !== null)
314
+ .sort((left, right) => left.localeCompare(right));
315
+ return {
316
+ schemaVersion: 1,
317
+ enabledByDefault: false,
318
+ localOnly: true,
319
+ persisted,
320
+ inputPath: path.relative(repo, target),
321
+ records: records.length,
322
+ bytes: persisted ? fs.statSync(target).size : 0,
323
+ retentionDays,
324
+ oldestAt: dates[0] ?? null,
325
+ newestAt: dates.at(-1) ?? null,
326
+ tokenizer: TELEMETRY_TOKENIZER,
327
+ };
328
+ }
329
+ export function exportTelemetry(repoPath, records, outputPath = ".reckon/telemetry-export.json") {
330
+ const { repo, target } = privatePath(repoPath, outputPath, "export");
331
+ const bundle = {
332
+ schemaVersion: 1,
333
+ generatedAt: new Date().toISOString(),
334
+ privacy: "local-metadata-only",
335
+ tokenizer: TELEMETRY_TOKENIZER,
336
+ methodology: {
337
+ measured: "actual operation response versus executed repository-contained full-file read",
338
+ modeled: null,
339
+ unknownBaselines: "null",
340
+ },
341
+ summary: telemetrySummary(records),
342
+ records,
343
+ };
344
+ atomicPrivateWrite(target, `${JSON.stringify(bundle, null, 2)}\n`);
345
+ return {
346
+ outputPath: path.relative(repo, target),
347
+ records: records.length,
348
+ summary: bundle.summary,
349
+ };
350
+ }
351
+ export function clearTelemetry(repoPath, inputPath = DEFAULT_INPUT) {
352
+ const { target } = privatePath(repoPath, inputPath, "clear");
353
+ if (!fs.existsSync(target))
354
+ return { removed: false, records: 0, bytes: 0 };
355
+ const records = readTelemetryRecords(repoPath, inputPath).length;
356
+ const bytes = fs.statSync(target).size;
357
+ fs.unlinkSync(target);
358
+ return { removed: true, records, bytes };
359
+ }