Unify console prompt to [user@VM]; fix real personality-block truncation; correct §XXV's wrong lockdown conclusion (FABRIC-3.md §XXVI)
Investigating the std79 lockdown finding from FABRIC-3.md §XXV led to a real discovery: WIREBIND births TWO VMs per identity, a console proxy under the plain username and the actual restricted identity under <username>~user (capsule_wirebind.c). Every test in §XXV targeted the console proxy, which was never locked down at all. Retested against the correct target (rajames~user): the lockdown works exactly as designed. §XXV's "lockdown never engages" conclusion was wrong -- corrected here, not deleted, since the mistake and how it was caught are worth keeping (see the new feedback memory: confirm which specific VM a name resolves to before concluding anything, when a subsystem is known to birth more than one VM per identity). Two real, separate things found along the way are kept regardless of that correction: - capsule_runcap.c: the reserved personality devblock was read in full (mostly zero-padding after a short ~200-byte string) with no terminator, producing "WARN: block 4998 exceeds 1KB, truncating" on every std79-locked identity's birth, universal, since at least 2026-09-10. Fixed by trimming to the first NUL byte actually found -- real, but harmless to execution (real content sat in the truncated block's surviving head); it mattered for capsule_id/ content_hash being computed over padding instead of real content. - console.h/console.c/repl.c: unified the prompt from a separately- computed "[VMName] (user)" into a single "[user@VMName]" line prefix -- exactly the ambiguity that caused the original misdiagnosis (the prompt showed only the WIREBIND username, identical whether USE had targeted the console proxy or the real ~user identity). Implemented as a registered callback (console_set_user_prefix_provider()) rather than console.c calling into WIREBIND/session logic directly, since console.c is a clean HAL module with no prior dependency on capsule-level subsystems. Verified: clean build on all 3 architectures, zero new warnings, identical dict_hash/capsule_hash to every prior boot this session (console/prompt-only change). Full 9-identity messaging campaign re-run end to end: 202s, zero faults, all 8 identities at 99/99 tokens, zero regression. Also surfaced, not yet acted on: the full campaign's own console tags now visibly show which VM each identity's tests actually reached ([zuse@rajames], not [zuse@rajames~user]) -- messaging.4th's VM-NAMES-INIT registers identities by plain username, so std79-doe. fth's turn-attractor has been dispatching to each identity's console proxy, not the actual locked-down identity, since the messaging rewrite. Flagged for a deliberate decision, not investigated further. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01EXieurDfDSsDFdnSyusuWo
This commit is contained in:
co-authored by
Claude Sonnet 5
parent
cb32e6632b
commit
a8b16d41da
+69
@@ -3325,3 +3325,72 @@ fixed: an explicit, automated check that `ACL-STD79-ALLOWED?` (or any allowlist
|
|||||||
*exists* and denies a known off-list word for a live std79-locked identity, rather than trusting
|
*exists* and denies a known off-list word for a live std79-locked identity, rather than trusting
|
||||||
a clean mint + a clean boot as proof the lockdown engaged.
|
a clean mint + a clean boot as proof the lockdown engaged.
|
||||||
|
|
||||||
|
## XXVI. Correction to §XXV: the lockdown was never broken -- wrong VM tested. Truncation fix
|
||||||
|
kept (real, separate bug); unified `[user@VM]` console prefix; a bigger methodology finding
|
||||||
|
surfaced along the way (2026-09-13)
|
||||||
|
|
||||||
|
**§XXV's "the std79 lockdown likely never engages" conclusion was wrong, and the reason is worth
|
||||||
|
recording plainly rather than quietly editing away.** `WIREBIND` births *two* VMs per identity,
|
||||||
|
confirmed by re-reading `capsule_wirebind_try_attach()`: a console VM registered under the plain
|
||||||
|
username (`capsule_console_birth(username, ...)`), and the actual std79-locked identity VM
|
||||||
|
registered as `<username>~user` (`capsule_runcap_birth(dev, sig, user_vm_name, ...)`, where
|
||||||
|
`user_vm_name = username + "~user"`). Every test in §XXV targeted `rajames` -- the console proxy,
|
||||||
|
which is never locked down at all -- not `rajames~user`, the real restricted identity. Re-run
|
||||||
|
against the correct target: `' EXEC ACL-STD79-ALLOWED? .` on `rajames~user` returns `0` (`EXEC`
|
||||||
|
correctly denied, exactly as `acl-std79.4th`'s own header comment says it should be once
|
||||||
|
`ACL-LOCKDOWN-STD79` finishes) -- the lockdown has been working correctly the whole time. **The
|
||||||
|
std79 lockdown gap described in §XXV did not exist. Recorded here as a correction, not deleted,
|
||||||
|
because the mistake and how it was caught are worth keeping: always confirm which specific VM
|
||||||
|
identity a name actually resolves to before drawing a conclusion from testing it, especially
|
||||||
|
when a subsystem (WIREBIND) is known to birth more than one VM per external identity.**
|
||||||
|
|
||||||
|
**The `capsule_runcap.c` truncation fix from §XXV is kept -- it's a real, separate bug,
|
||||||
|
independently confirmed, just not the cause of a lockdown failure that never happened.** `WARN:
|
||||||
|
block 4998 exceeds 1KB, truncating` genuinely fired on every std79-locked identity's birth
|
||||||
|
(confirmed universal and long-standing in §XXV); the fix (trimming `source_len` to the first NUL
|
||||||
|
byte actually found, since `MINT_IDENTITY_SRC_DEVBLOCKS`'s one reserved devblock is always
|
||||||
|
`memset` to 0 before the short personality string is written into it) is correct regardless, and
|
||||||
|
matters for a reason independent of lockdown correctness: `desc.content_hash`/`capsule_id` were
|
||||||
|
being computed over ~4KB of mostly zero-padding instead of the real ~200-byte content, which
|
||||||
|
matters for this project's content-addressing model even though the real content sitting in the
|
||||||
|
truncated block's surviving head meant execution itself was never actually affected.
|
||||||
|
|
||||||
|
**New: unified console prefix, `[user@VMName]` replacing the separately-computed `[VMName]`
|
||||||
|
bracket and `(user)` prompt segment.** Directly motivated by the confusion that produced this
|
||||||
|
correction -- console tags already distinguished `rajames` from `rajames~user` correctly the
|
||||||
|
whole time, but the *prompt* only ever showed the WIREBIND username, identical regardless of
|
||||||
|
which VM `USE` had actually targeted, so a human (or an agent) could not tell from the prompt
|
||||||
|
alone which VM a command was about to reach. Implemented as a registered callback
|
||||||
|
(`console_set_user_prefix_provider()`, `console.h`/`console.c`) rather than `console.c` calling
|
||||||
|
into WIREBIND/session logic directly -- console.c is a clean HAL module with zero prior
|
||||||
|
dependency on capsule-level subsystems, and pulling one in for this would have been a real
|
||||||
|
layering violation, not just a style question. `repl.c` registers `sk_console_user_prefix()`
|
||||||
|
(the same `zuse_session`/`capsule_wirebind_attached_username()` logic `sk_print_prompt()` used to
|
||||||
|
compute inline) once at `sk_repl_run()` startup; `sk_print_prompt()` itself now just prints the
|
||||||
|
bare `"ok> "` text, since the user segment moved into the shared line prefix that already reaches
|
||||||
|
every line, prompt included. Verified live: `[zuse@Hera] ok>` at the bare console, `[zuse@
|
||||||
|
rajames~user] ok>` after `S" rajames~user" USE` -- one tag, always accurate about both who's
|
||||||
|
logged in and which VM a command actually reaches. Built clean on all 3 architectures, zero new
|
||||||
|
warnings; booted all 3, identical dict_hash/capsule_hash to every prior boot this session (this
|
||||||
|
change touches only console/prompt code, not the dictionary); re-ran the full 9-identity
|
||||||
|
messaging campaign end to end -- 202s (matching the established 194-212s range), zero faults, all
|
||||||
|
8 identities at 99/99 tokens, zero regression.
|
||||||
|
|
||||||
|
**A bigger methodology finding surfaced while re-verifying the campaign against the new prefix
|
||||||
|
format, not yet acted on:** the full-campaign log's own console tags read `[zuse@rajames]`,
|
||||||
|
`[zuse@00]`, etc. -- **the plain console-proxy names, not `rajames~user`/`00~user`.**
|
||||||
|
`common:messaging.4th`'s `VM-NAMES-INIT` registers identities by their plain username
|
||||||
|
(`S" rajames" 1 DOE-IDX>MSG-IDX VM-NAME-REG`, confirmed against the file directly) -- meaning
|
||||||
|
`std79-doe.fth`'s messaging-based turn-attractor (§XXI onward) has been dispatching every trial's
|
||||||
|
24 tests to each identity's **console proxy VM**, not the actual std79-locked identity VM,
|
||||||
|
since the messaging rewrite landed. The turn-attractor's own mechanics (rep-granularity
|
||||||
|
batching, priority ordering, K conservation, all of §XXI/§XXII/§XXIII's verification) are
|
||||||
|
unaffected by this -- the messaging/Stadium/heat accounting is identical regardless of which
|
||||||
|
specific VM receives the dispatched text. What's genuinely in question is the campaign's own
|
||||||
|
premise: if the intent was ever to specifically exercise standard-word behavior *inside* a
|
||||||
|
locked-down, standards-only environment (as opposed to just "some live VM, whichever WIREBIND
|
||||||
|
happens to hand back"), every messaging-based run so far has been testing the wrong one. Not
|
||||||
|
investigated further this session -- flagged here for a deliberate decision (retarget
|
||||||
|
`VM-NAMES-INIT` to the `~user` identities and re-run, or confirm the console-proxy target was
|
||||||
|
actually fine for what this campaign measures) rather than assumed either way.
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# Capsule Block Manifest — Auto-generated
|
# Capsule Block Manifest — Auto-generated
|
||||||
<!-- Generated by mkcapsule --manifest 2026-09-13T02:53:31Z -->
|
<!-- Generated by mkcapsule --manifest 2026-09-13T10:39:15Z -->
|
||||||
<!-- DO NOT EDIT — re-run mkcapsule --manifest to refresh. -->
|
<!-- DO NOT EDIT — re-run mkcapsule --manifest to refresh. -->
|
||||||
<!-- Hand-written justifications and immutability notes live -->
|
<!-- Hand-written justifications and immutability notes live -->
|
||||||
<!-- in MANIFEST.md alongside this auto-generated index. -->
|
<!-- in MANIFEST.md alongside this auto-generated index. -->
|
||||||
|
|||||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,660 @@
|
|||||||
|
tick_number,elapsed_ns,tick_interval_ns,cache_hits_delta,bucket_hits_delta,word_executions_delta,hot_word_count,avg_word_heat_q48,window_width,actual_window_size,predicted_label_hits,jitter_bits,apic_ticks,time_trust_q48,variance_q48,vm_call_depth_max,hera_heat_q48,hermes_heat_q48,artemis_heat_q48,fleet_k_q48,fleet_conserved
|
||||||
|
1291,12910000,10000,0,0,256,81,2065,1024,1024,0,0,16043,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1292,12920000,10000,0,0,256,85,2053,1024,1024,0,0,16050,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1293,12930000,10000,0,0,256,87,2054,2048,2048,0,0,16055,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1294,12940000,10000,0,0,256,88,2056,2048,2048,0,0,16070,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1295,12950000,10000,0,0,256,93,1991,4096,4096,0,0,16073,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1296,12960000,10000,0,0,256,93,1992,4096,4096,0,0,16077,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1297,12970000,10000,0,0,256,94,1994,4096,4096,0,0,16081,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1298,12980000,10000,0,0,256,94,1885,4096,4096,0,0,16085,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1299,12990000,10000,0,0,256,96,1852,4096,4096,0,0,16089,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1300,13000000,10000,0,0,256,97,1854,2048,2048,0,0,16094,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1301,13010000,10000,0,0,256,104,1855,2048,2048,0,0,16098,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1302,13020000,10000,0,0,256,104,1857,1024,1024,0,0,16103,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1303,13030000,10000,0,0,256,104,1858,1024,1024,0,0,16106,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1304,13040000,10000,0,0,256,104,1860,1024,1024,0,0,16111,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1305,13050000,10000,0,0,256,104,1861,512,512,0,0,16114,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1306,13060000,10000,0,0,256,104,1852,512,512,0,0,16118,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1307,13070000,10000,0,0,256,104,1709,256,256,0,0,16122,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1308,13080000,10000,0,0,256,104,1646,256,256,0,0,16125,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
54,540000,18446744073697011616,0,0,12711,59,98,256,256,0,4895412794951723024,16139,40044,41720,0,50134,7602,7800,65536,1
|
||||||
|
1309,13090000,12550000,0,0,313588,104,1572,256,256,0,4712993971838648320,16143,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1310,13100000,10000,0,0,256,104,1573,256,256,0,0,16146,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1311,13110000,10000,0,0,256,104,1574,256,256,0,0,16148,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1312,13120000,10000,0,0,256,104,1576,256,256,0,0,16152,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1313,13130000,10000,0,0,256,104,1577,256,256,0,0,16156,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1314,13140000,10000,0,0,256,104,1578,256,256,0,0,16158,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1315,13150000,10000,0,0,256,104,1572,256,256,0,0,16162,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1316,13160000,10000,0,0,256,104,1565,256,256,0,0,16167,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1317,13170000,10000,0,0,256,104,1566,256,256,0,0,16170,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1318,13180000,10000,0,0,256,104,1568,256,256,0,0,16175,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1319,13190000,10000,0,0,256,104,1569,256,256,0,0,16188,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1320,13200000,10000,0,0,256,104,1570,256,256,0,0,16192,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1321,13210000,10000,0,0,256,104,1571,256,256,0,0,16196,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1322,13220000,10000,0,0,256,104,1573,256,256,0,0,16200,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1323,13230000,10000,0,0,256,109,1574,256,256,0,0,16204,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1324,13240000,10000,0,0,256,110,1575,256,256,0,0,16208,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1325,13250000,10000,0,0,256,110,1576,256,256,0,0,16210,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1326,13260000,10000,0,0,256,110,1577,256,256,0,0,16213,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1327,13270000,10000,0,0,256,110,1578,256,256,0,0,16215,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1328,13280000,10000,0,0,256,110,1580,256,256,0,0,16219,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1329,13290000,10000,0,0,256,110,1581,256,256,0,0,16222,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1330,13300000,10000,0,0,256,110,1582,256,256,0,0,16224,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1331,13310000,10000,0,0,256,110,1584,256,256,0,0,16226,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1332,13320000,10000,0,0,256,110,1585,256,256,0,0,16229,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1333,13330000,10000,0,0,256,110,1586,256,256,0,0,16234,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1334,13340000,10000,0,0,256,110,1587,256,256,0,0,16238,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1335,13350000,10000,0,0,256,110,1588,256,256,0,0,16247,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1336,13360000,10000,0,0,256,110,1590,256,256,0,0,16250,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1337,13370000,10000,0,0,256,110,1591,256,256,0,0,16253,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1338,13380000,10000,0,0,256,110,1592,256,256,0,0,16264,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1339,13390000,10000,0,0,256,110,1593,256,256,0,0,16266,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1340,13400000,10000,0,0,256,110,1595,256,256,0,0,16269,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1341,13410000,10000,0,0,256,110,1596,256,256,0,0,16272,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1342,13420000,10000,0,0,256,110,1597,256,256,0,0,16274,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1343,13430000,10000,0,0,256,110,1598,256,256,0,0,16278,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1344,13440000,10000,0,0,256,110,1600,256,256,0,0,16281,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1345,13450000,10000,0,0,256,110,1601,256,256,0,0,16284,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1346,13460000,10000,0,0,256,110,1602,256,256,0,0,16287,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1347,13470000,10000,0,0,256,110,1603,256,256,0,0,16290,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1348,13480000,10000,0,0,256,110,1604,256,256,0,0,16292,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1349,13490000,10000,0,0,256,110,1605,256,256,0,0,16296,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1350,13500000,10000,0,0,256,110,1606,256,256,0,0,16298,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1351,13510000,10000,0,0,256,110,1608,256,256,0,0,16301,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1352,13520000,10000,0,0,256,111,1609,256,256,0,0,16303,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1353,13530000,10000,0,0,256,111,1610,256,256,0,0,16306,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1354,13540000,10000,0,0,256,111,1611,256,256,0,0,16308,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1355,13550000,10000,0,0,256,111,1613,256,256,0,0,16310,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1356,13560000,10000,0,0,256,111,1614,256,256,0,0,16313,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1357,13570000,10000,0,0,256,111,1615,256,256,0,0,16317,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1358,13580000,10000,0,0,256,111,1617,256,256,0,0,16319,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1359,13590000,10000,0,0,256,111,1618,256,256,0,0,16322,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1360,13600000,10000,0,0,256,111,1619,256,256,0,0,16325,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
159,1590000,18446744073697541616,0,0,39600,38,521,256,256,0,4895412794951723283,16338,40044,41720,0,50134,7602,7800,65536,1
|
||||||
|
1361,13610000,12020000,0,0,300011,112,1620,256,256,0,4712709430255288320,16343,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1362,13620000,10000,0,0,256,112,1622,256,256,0,0,16346,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1363,13630000,10000,0,0,256,112,1623,256,256,0,0,16348,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1364,13640000,10000,0,0,256,112,1624,256,256,0,0,16350,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1365,13650000,10000,0,0,256,112,1626,256,256,0,0,16354,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1366,13660000,10000,0,0,256,112,1627,256,256,0,0,16356,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1367,13670000,10000,0,0,256,112,1628,256,256,0,0,16359,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1368,13680000,10000,0,0,256,112,1629,256,256,0,0,16362,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1369,13690000,10000,0,0,256,112,1631,256,256,0,0,16365,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1370,13700000,10000,0,0,256,112,1632,256,256,0,0,16368,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1371,13710000,10000,0,0,256,112,1633,256,256,0,0,16378,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1372,13720000,10000,0,0,256,112,1634,256,256,0,0,16380,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1373,13730000,10000,0,0,256,112,1636,256,256,0,0,16383,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1374,13740000,10000,0,0,256,112,1637,256,256,0,0,16386,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1375,13750000,10000,0,0,256,112,1638,256,256,0,0,16390,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1376,13760000,10000,0,0,256,112,1639,256,256,0,0,16392,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1377,13770000,10000,0,0,256,112,1640,256,256,0,0,16395,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1378,13780000,10000,0,0,256,112,1641,256,256,0,0,16397,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1379,13790000,10000,0,0,256,112,1643,256,256,0,0,16399,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1380,13800000,10000,0,0,256,112,1644,256,256,0,0,16402,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1381,13810000,10000,0,0,256,112,1645,256,256,0,0,16405,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1382,13820000,10000,0,0,256,112,1646,256,256,0,0,16408,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1383,13830000,10000,0,0,256,112,1648,256,256,0,0,16411,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1384,13840000,10000,0,0,256,112,1649,256,256,0,0,16414,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1385,13850000,10000,0,0,256,112,1650,256,256,0,0,16417,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1386,13860000,10000,0,0,256,111,1651,256,256,0,0,16420,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
474,4740000,18446744073700431616,0,0,120270,31,2359,256,256,0,4895412794951724694,16430,40044,41720,0,50134,7602,7800,65536,1
|
||||||
|
1387,13870000,9130000,0,0,225997,111,1652,256,256,0,4711157873319608320,16435,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1388,13880000,10000,0,0,256,111,1653,256,256,0,0,16437,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1389,13890000,10000,0,0,256,111,1655,256,256,0,0,16439,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1390,13900000,10000,0,0,256,111,1656,256,256,0,0,16441,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1391,13910000,10000,0,0,256,111,1657,256,256,0,0,16444,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1392,13920000,10000,0,0,256,111,1658,256,256,0,0,16447,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1393,13930000,10000,0,0,256,111,1659,256,256,0,0,16450,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1394,13940000,10000,0,0,256,111,1661,256,256,0,0,16453,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1395,13950000,10000,0,0,256,111,1662,256,256,0,0,16456,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1396,13960000,10000,0,0,256,111,1663,256,256,0,0,16458,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1397,13970000,10000,0,0,256,111,1665,256,256,0,0,16461,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1398,13980000,10000,0,0,256,111,1666,256,256,0,0,16464,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1399,13990000,10000,0,0,256,111,1667,256,256,0,0,16466,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1400,14000000,10000,0,0,256,111,1668,256,256,0,0,16470,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1401,14010000,10000,0,0,256,110,1669,256,256,0,0,16473,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1402,14020000,10000,0,0,256,110,1670,256,256,0,0,16475,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1403,14030000,10000,0,0,256,110,1672,256,256,0,0,16478,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1404,14040000,10000,0,0,256,110,1673,256,256,0,0,16481,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1405,14050000,10000,0,0,256,110,1674,256,256,0,0,16483,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1406,14060000,10000,0,0,256,110,1676,256,256,0,0,16495,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1407,14070000,10000,0,0,256,110,1677,256,256,0,0,16497,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1408,14080000,10000,0,0,256,110,1678,256,256,0,0,16500,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1409,14090000,10000,0,0,256,110,1679,256,256,0,0,16502,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1410,14100000,10000,0,0,256,110,1680,256,256,0,0,16505,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1411,14110000,10000,0,0,256,110,1682,256,256,0,0,16507,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1412,14120000,10000,0,0,256,110,1683,256,256,0,0,16510,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1413,14130000,10000,0,0,256,110,1684,256,256,0,0,16515,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1414,14140000,10000,0,0,256,110,1685,256,256,0,0,16517,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1415,14150000,10000,0,0,256,110,1686,256,256,0,0,16520,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1416,14160000,10000,0,0,256,110,1688,256,256,0,0,16523,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1417,14170000,10000,0,0,256,110,1689,256,256,0,0,16526,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1418,14180000,10000,0,0,256,110,1690,256,256,0,0,16529,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1419,14190000,10000,0,0,256,110,1692,256,256,0,0,16532,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1420,14200000,10000,0,0,256,111,1693,256,256,0,0,16535,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1421,14210000,10000,0,0,256,111,1694,256,256,0,0,16538,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1422,14220000,10000,0,0,256,111,1695,256,256,0,0,16541,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1423,14230000,10000,0,0,256,111,1697,256,256,0,0,16543,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1424,14240000,10000,0,0,256,111,1698,256,256,0,0,16546,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1425,14250000,10000,0,0,256,111,1699,256,256,0,0,16549,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1426,14260000,10000,0,0,256,111,1700,256,256,0,0,16553,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1427,14270000,10000,0,0,256,111,1702,256,256,0,0,16556,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1428,14280000,10000,0,0,256,111,1703,256,256,0,0,16559,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1429,14290000,10000,0,0,256,111,1704,256,256,0,0,16561,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1430,14300000,10000,0,0,256,111,1705,256,256,0,0,16563,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1431,14310000,10000,0,0,256,111,1707,256,256,0,0,16566,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1432,14320000,10000,0,0,256,111,1708,256,256,0,0,16568,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1433,14330000,10000,0,0,256,111,1709,256,256,0,0,16572,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1434,14340000,10000,0,0,256,111,1710,256,256,0,0,16575,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1435,14350000,10000,0,0,256,111,1712,256,256,0,0,16578,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1436,14360000,10000,0,0,256,111,1713,256,256,0,0,16580,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1437,14370000,10000,0,0,256,111,1714,256,256,0,0,16582,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1438,14380000,10000,0,0,256,112,1716,256,256,0,0,16584,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1439,14390000,10000,0,0,256,112,1717,256,256,0,0,16587,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
55,550000,18446744073695711616,0,0,12861,63,99,256,256,0,4895412794951722389,16599,40044,41720,0,50134,7602,7800,65536,1
|
||||||
|
1440,14400000,13850000,0,0,346974,112,1718,256,256,0,4713691904024248320,16611,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1441,14410000,10000,0,0,256,112,1720,256,256,0,0,16614,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1442,14420000,10000,0,0,256,112,1721,256,256,0,0,16618,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1443,14430000,10000,0,0,256,112,1722,256,256,0,0,16621,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1444,14440000,10000,0,0,256,112,1723,256,256,0,0,16624,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1445,14450000,10000,0,0,256,116,1725,256,256,0,0,16628,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1446,14460000,10000,0,0,256,116,1726,256,256,0,0,16630,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1447,14470000,10000,0,0,256,116,1727,256,256,0,0,16633,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1448,14480000,10000,0,0,256,116,1729,256,256,0,0,16636,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1449,14490000,10000,0,0,256,116,1730,256,256,0,0,16639,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1450,14500000,10000,0,0,256,116,1731,256,256,0,0,16642,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1451,14510000,10000,0,0,256,116,1732,256,256,0,0,16644,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1452,14520000,10000,0,0,256,116,1734,256,256,0,0,16647,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1453,14530000,10000,0,0,256,116,1735,256,256,0,0,16648,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1454,14540000,10000,0,0,256,116,1736,256,256,0,0,16651,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1455,14550000,10000,0,0,256,116,1738,256,256,0,0,16654,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1456,14560000,10000,0,0,256,116,1739,256,256,0,0,16657,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1457,14570000,10000,0,0,256,116,1740,256,256,0,0,16660,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1458,14580000,10000,0,0,256,116,1741,256,256,0,0,16662,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1459,14590000,10000,0,0,256,116,1743,256,256,0,0,16665,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1460,14600000,10000,0,0,256,116,1744,256,256,0,0,16668,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1461,14610000,10000,0,0,256,116,1745,256,256,0,0,16671,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1462,14620000,10000,0,0,256,116,1747,256,256,0,0,16674,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1463,14630000,10000,0,0,256,116,1748,256,256,0,0,16677,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1464,14640000,10000,0,0,256,116,1749,256,256,0,0,16680,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
107,1070000,18446744073695981616,0,0,26232,49,273,256,256,0,4895412794951722521,16691,40044,41720,0,50134,7602,7800,65536,1
|
||||||
|
1465,14650000,13580000,0,0,340003,116,1751,256,256,0,4713546948878008320,16695,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1466,14660000,10000,0,0,256,116,1752,256,256,0,0,16699,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1467,14670000,10000,0,0,256,116,1753,256,256,0,0,16701,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1468,14680000,10000,0,0,256,116,1754,256,256,0,0,16704,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1469,14690000,10000,0,0,256,116,1756,256,256,0,0,16708,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1470,14700000,10000,0,0,256,116,1757,256,256,0,0,16711,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1471,14710000,10000,0,0,256,116,1758,256,256,0,0,16712,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1472,14720000,10000,0,0,256,116,1760,256,256,0,0,16714,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1473,14730000,10000,0,0,256,116,1761,256,256,0,0,16724,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1474,14740000,10000,0,0,256,116,1762,256,256,0,0,16727,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1475,14750000,10000,0,0,256,116,1763,256,256,0,0,16731,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1476,14760000,10000,0,0,256,116,1765,256,256,0,0,16733,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1477,14770000,10000,0,0,256,116,1766,256,256,0,0,16736,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1478,14780000,10000,0,0,256,117,1767,256,256,0,0,16741,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1479,14790000,10000,0,0,256,117,1769,256,256,0,0,16743,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1480,14800000,10000,0,0,256,117,1770,256,256,0,0,16746,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1481,14810000,10000,0,0,256,117,1771,256,256,0,0,16750,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1482,14820000,10000,0,0,256,117,1773,256,256,0,0,16752,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1483,14830000,10000,0,0,256,117,1774,256,256,0,0,16763,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1484,14840000,10000,0,0,256,117,1775,256,256,0,0,16765,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1485,14850000,10000,0,0,256,117,1776,256,256,0,0,16767,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1486,14860000,10000,0,0,256,117,1778,256,256,0,0,16771,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1487,14870000,10000,0,0,256,117,1779,256,256,0,0,16774,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1488,14880000,10000,0,0,256,117,1780,256,256,0,0,16779,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1489,14890000,10000,0,0,256,117,1782,256,256,0,0,16782,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1490,14900000,10000,0,0,256,117,1783,256,256,0,0,16785,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1491,14910000,10000,0,0,256,117,1784,256,256,0,0,16793,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1492,14920000,10000,0,0,256,117,1785,256,256,0,0,16796,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1493,14930000,10000,0,0,256,117,1787,256,256,0,0,16799,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1494,14940000,10000,0,0,256,117,1788,256,256,0,0,16801,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1495,14950000,10000,0,0,256,117,1789,256,256,0,0,16805,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1496,14960000,10000,0,0,256,117,1791,256,256,0,0,16809,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1497,14970000,10000,0,0,256,117,1792,256,256,0,0,16812,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1498,14980000,10000,0,0,256,117,1793,256,256,0,0,16816,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1499,14990000,10000,0,0,256,117,1794,256,256,0,0,16819,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1500,15000000,10000,0,0,256,117,1796,256,256,0,0,16823,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1501,15010000,10000,0,0,256,117,1797,256,256,0,0,16826,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1502,15020000,10000,0,0,256,117,1798,256,256,0,0,16829,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1503,15030000,10000,0,0,256,117,1800,256,256,0,0,16833,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1504,15040000,10000,0,0,256,117,1801,256,256,0,0,16838,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1505,15050000,10000,0,0,256,117,1802,256,256,0,0,16840,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1506,15060000,10000,0,0,256,117,1804,256,256,0,0,16842,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1507,15070000,10000,0,0,256,118,1805,256,256,0,0,16846,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1508,15080000,10000,0,0,256,118,1806,256,256,0,0,16849,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1509,15090000,10000,0,0,256,118,1807,256,256,0,0,16852,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1510,15100000,10000,0,0,256,118,1809,256,256,0,0,16856,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1511,15110000,10000,0,0,256,118,1810,256,256,0,0,16858,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1512,15120000,10000,0,0,256,118,1811,256,256,0,0,16861,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1513,15130000,10000,0,0,256,118,1813,256,256,0,0,16863,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1514,15140000,10000,0,0,256,118,1814,256,256,0,0,16865,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1515,15150000,10000,0,0,256,119,1815,256,256,0,0,16869,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
277,2770000,18446744073697171616,0,0,69833,35,1225,256,256,0,4895412794951723102,16872,40044,41720,0,50134,7602,7800,65536,1
|
||||||
|
1516,15160000,12390000,0,0,309458,119,1816,256,256,0,4712908072492728320,16887,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1517,15170000,10000,0,0,256,120,1818,256,256,0,0,16889,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1518,15180000,10000,0,0,256,120,1819,256,256,0,0,16891,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1519,15190000,10000,0,0,256,120,1820,256,256,0,0,16894,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1520,15200000,10000,0,0,256,120,1822,256,256,0,0,16896,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1521,15210000,10000,0,0,256,120,1823,256,256,0,0,16898,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1522,15220000,10000,0,0,256,120,1824,256,256,0,0,16901,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1523,15230000,10000,0,0,256,120,1826,256,256,0,0,16905,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1524,15240000,10000,0,0,256,120,1827,256,256,0,0,16908,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1525,15250000,10000,0,0,256,120,1828,256,256,0,0,16912,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1526,15260000,10000,0,0,256,120,1829,256,256,0,0,16915,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1527,15270000,10000,0,0,256,120,1831,256,256,0,0,16918,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1528,15280000,10000,0,0,256,120,1832,256,256,0,0,16921,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1529,15290000,10000,0,0,256,124,1833,256,256,0,0,16924,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1530,15300000,10000,0,0,256,125,1835,256,256,0,0,16927,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1531,15310000,10000,0,0,256,125,1836,256,256,0,0,16930,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1532,15320000,10000,0,0,256,129,1837,256,256,0,0,16931,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1533,15330000,10000,0,0,256,129,1838,256,256,0,0,16933,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1534,15340000,10000,0,0,256,129,1840,256,256,0,0,16937,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1535,15350000,10000,0,0,256,129,1841,256,256,0,0,16940,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1536,15360000,10000,0,0,256,129,1842,256,256,0,0,16944,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1537,15370000,10000,0,0,256,129,1844,256,256,0,0,16947,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1538,15380000,10000,0,0,256,129,1845,256,256,0,0,16949,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1539,15390000,10000,0,0,256,129,1846,256,256,0,0,16952,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1540,15400000,10000,0,0,256,130,1848,256,256,0,0,16955,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1541,15410000,10000,0,0,256,131,1849,256,256,0,0,16959,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1542,15420000,10000,0,0,256,131,1850,256,256,0,0,16964,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1543,15430000,10000,0,0,256,131,1851,256,256,0,0,16971,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1544,15440000,10000,0,0,256,131,1853,256,256,0,0,16973,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1545,15450000,10000,0,0,256,131,1854,256,256,0,0,16975,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1546,15460000,10000,0,0,256,131,1855,256,256,0,0,16977,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1547,15470000,10000,0,0,256,131,1857,256,256,0,0,16980,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1548,15480000,10000,0,0,256,131,1858,256,256,0,0,16984,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1549,15490000,10000,0,0,256,131,1859,256,256,0,0,16987,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1550,15500000,10000,0,0,256,131,1860,256,256,0,0,16990,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1551,15510000,10000,0,0,256,131,1862,256,256,0,0,16993,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1552,15520000,10000,0,0,256,131,1863,256,256,0,0,17005,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1553,15530000,10000,0,0,256,131,1864,256,256,0,0,17008,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1554,15540000,10000,0,0,256,131,1866,256,256,0,0,17010,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1555,15550000,10000,0,0,256,131,1867,256,256,0,0,17013,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1556,15560000,10000,0,0,256,131,1868,256,256,0,0,17016,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1557,15570000,10000,0,0,256,131,1869,256,256,0,0,17020,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1558,15580000,10000,0,0,256,131,1871,256,256,0,0,17023,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1559,15590000,10000,0,0,256,131,1872,256,256,0,0,17026,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1560,15600000,10000,0,0,256,131,1873,256,256,0,0,17030,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1561,15610000,10000,0,0,256,131,1875,256,256,0,0,17034,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1562,15620000,10000,0,0,256,131,1876,256,256,0,0,17036,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1563,15630000,10000,0,0,256,131,1877,256,256,0,0,17038,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1564,15640000,10000,0,0,256,131,1879,256,256,0,0,17041,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1565,15650000,10000,0,0,256,131,1880,256,256,0,0,17045,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1566,15660000,10000,0,0,256,131,1881,256,256,0,0,17048,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1567,15670000,10000,0,0,256,131,1882,256,256,0,0,17050,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1568,15680000,10000,0,0,256,131,1884,256,256,0,0,17055,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
160,1600000,18446744073695471616,0,0,39751,42,473,256,256,0,4895412794951722272,17066,40044,41720,0,50134,7602,7800,65536,1
|
||||||
|
1569,15690000,14090000,0,0,353108,131,1885,256,256,0,4713820753043128320,17071,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1570,15700000,10000,0,0,256,131,1886,256,256,0,0,17073,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1571,15710000,10000,0,0,256,131,1888,256,256,0,0,17077,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1572,15720000,10000,0,0,256,131,1889,256,256,0,0,17081,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1573,15730000,10000,0,0,256,131,1890,256,256,0,0,17084,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1574,15740000,10000,0,0,256,131,1891,256,256,0,0,17088,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1575,15750000,10000,0,0,256,131,1893,256,256,0,0,17092,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1576,15760000,10000,0,0,256,131,1894,256,256,0,0,17095,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1577,15770000,10000,0,0,256,131,1895,256,256,0,0,17098,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1578,15780000,10000,0,0,256,131,1897,256,256,0,0,17100,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1579,15790000,10000,0,0,256,131,1898,256,256,0,0,17105,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1580,15800000,10000,0,0,256,131,1899,256,256,0,0,17108,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1581,15810000,10000,0,0,256,131,1901,256,256,0,0,17120,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1582,15820000,10000,0,0,256,131,1902,256,256,0,0,17122,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1583,15830000,10000,0,0,256,131,1903,256,256,0,0,17125,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1584,15840000,10000,0,0,256,131,1904,256,256,0,0,17127,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1585,15850000,10000,0,0,256,131,1906,256,256,0,0,17130,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1586,15860000,10000,0,0,256,131,1907,256,256,0,0,17132,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1587,15870000,10000,0,0,256,131,1908,256,256,0,0,17133,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1588,15880000,10000,0,0,256,131,1910,256,256,0,0,17136,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1589,15890000,10000,0,0,256,131,1911,256,256,0,0,17138,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1590,15900000,10000,0,0,256,131,1912,256,256,0,0,17140,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1591,15910000,10000,0,0,256,131,1913,256,256,0,0,17142,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1592,15920000,10000,0,0,256,131,1915,256,256,0,0,17144,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1593,15930000,10000,0,0,256,131,1916,256,256,0,0,17145,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1594,15940000,10000,0,0,256,131,1917,256,256,0,0,17150,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1595,15950000,10000,0,0,256,131,1919,256,256,0,0,17152,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1596,15960000,10000,0,0,256,131,1920,256,256,0,0,17155,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1597,15970000,10000,0,0,256,131,1921,256,256,0,0,17157,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1598,15980000,10000,0,0,256,131,1922,256,256,0,0,17160,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1599,15990000,10000,0,0,256,131,1924,256,256,0,0,17161,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1600,16000000,10000,0,0,256,131,1925,256,256,0,0,17164,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1601,16010000,10000,0,0,256,131,1926,256,256,0,0,17165,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1602,16020000,10000,0,0,256,131,1928,256,256,0,0,17168,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1603,16030000,10000,0,0,256,131,1929,256,256,0,0,17170,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1604,16040000,10000,0,0,256,131,1930,256,256,0,0,17172,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1605,16050000,10000,0,0,256,131,1932,256,256,0,0,17175,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1606,16060000,10000,0,0,256,131,1933,256,256,0,0,17177,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1607,16070000,10000,0,0,256,131,1934,256,256,0,0,17181,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1608,16080000,10000,0,0,256,131,1935,256,256,0,0,17183,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1609,16090000,10000,0,0,256,131,1937,256,256,0,0,17187,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1610,16100000,10000,0,0,256,131,1938,256,256,0,0,17189,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1611,16110000,10000,0,0,256,131,1939,256,256,0,0,17191,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1612,16120000,10000,0,0,256,131,1941,256,256,0,0,17194,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1613,16130000,10000,0,0,256,131,1942,256,256,0,0,17198,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1614,16140000,10000,0,0,256,131,1943,256,256,0,0,17200,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1615,16150000,10000,0,0,256,131,1944,256,256,0,0,17202,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1616,16160000,10000,0,0,256,131,1946,256,256,0,0,17204,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1617,16170000,10000,0,0,256,131,1947,256,256,0,0,17206,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1618,16180000,10000,0,0,256,131,1948,256,256,0,0,17207,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1619,16190000,10000,0,0,256,131,1950,256,256,0,0,17209,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1620,16200000,10000,0,0,256,131,1951,256,256,0,0,17213,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1621,16210000,10000,0,0,256,131,1952,256,256,0,0,17216,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1622,16220000,10000,0,0,256,131,1954,256,256,0,0,17218,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1623,16230000,10000,0,0,256,131,1955,256,256,0,0,17220,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1624,16240000,10000,0,0,256,131,1956,256,256,0,0,17230,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1625,16250000,10000,0,0,256,132,1957,256,256,0,0,17233,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1626,16260000,10000,0,0,256,132,1959,256,256,0,0,17237,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1627,16270000,10000,0,0,256,132,1960,256,256,0,0,17241,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1628,16280000,10000,0,0,256,132,1961,256,256,0,0,17244,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1629,16290000,10000,0,0,256,133,1963,256,256,0,0,17248,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1630,16300000,10000,0,0,256,133,1964,256,256,0,0,17251,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1631,16310000,10000,0,0,256,133,1965,256,256,0,0,17263,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1632,16320000,10000,0,0,256,133,1966,256,256,0,0,17265,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1633,16330000,10000,0,0,256,133,1968,256,256,0,0,17268,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1634,16340000,10000,0,0,256,133,1969,256,256,0,0,17270,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1635,16350000,10000,0,0,256,133,1970,256,256,0,0,17271,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1636,16360000,10000,0,0,256,133,1972,256,256,0,0,17273,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1637,16370000,10000,0,0,256,133,1973,256,256,0,0,17275,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1638,16380000,10000,0,0,256,133,1974,256,256,0,0,17278,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1639,16390000,10000,0,0,256,133,1976,256,256,0,0,17280,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1640,16400000,10000,0,0,256,133,1977,256,256,0,0,17282,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1641,16410000,10000,0,0,256,133,1978,256,256,0,0,17284,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1642,16420000,10000,0,0,256,133,1979,256,256,0,0,17286,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1643,16430000,10000,0,0,256,138,1981,256,256,0,0,17288,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1644,16440000,10000,0,0,256,153,1982,256,256,0,0,17291,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1645,16450000,10000,0,0,256,153,1983,256,256,0,0,17294,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
278,2780000,18446744073695881616,0,0,69985,40,881,256,256,0,4895412794951722472,17304,40044,41720,0,50134,7602,7800,65536,1
|
||||||
|
1646,16460000,13680000,0,0,342586,164,1985,256,256,0,4713600635969208320,17310,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1647,16470000,10000,0,0,256,164,1986,256,256,0,0,17313,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1648,16480000,10000,0,0,256,165,1987,256,256,0,0,17316,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1649,16490000,10000,0,0,256,165,1988,256,256,0,0,17318,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1650,16500000,10000,0,0,256,165,1990,256,256,0,0,17321,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1651,16510000,10000,0,0,256,165,1991,256,256,0,0,17323,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1652,16520000,10000,0,0,256,165,1992,256,256,0,0,17326,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1653,16530000,10000,0,0,256,165,1994,256,256,0,0,17329,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1654,16540000,10000,0,0,256,165,1995,256,256,0,0,17331,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1655,16550000,10000,0,0,256,165,1996,256,256,0,0,17334,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1656,16560000,10000,0,0,256,165,1997,256,256,0,0,17336,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1657,16570000,10000,0,0,256,165,1999,256,256,0,0,17338,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1658,16580000,10000,0,0,256,168,2000,256,256,0,0,17341,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1659,16590000,10000,0,0,256,169,2001,256,256,0,0,17344,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1660,16600000,10000,0,0,256,169,2003,256,256,0,0,17346,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1661,16610000,10000,0,0,256,169,2004,256,256,0,0,17348,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1662,16620000,10000,0,0,256,169,2005,256,256,0,0,17351,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1663,16630000,10000,0,0,256,169,2007,256,256,0,0,17354,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1664,16640000,10000,0,0,256,169,2008,256,256,0,0,17358,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1665,16650000,10000,0,0,256,169,2009,256,256,0,0,17361,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1666,16660000,10000,0,0,256,169,2010,256,256,0,0,17363,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1667,16670000,10000,0,0,256,169,2012,256,256,0,0,17366,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1668,16680000,10000,0,0,256,169,2013,256,256,0,0,17377,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1669,16690000,10000,0,0,256,169,2014,256,256,0,0,17378,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1670,16700000,10000,0,0,256,169,2016,256,256,0,0,17381,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
212,2120000,18446744073694971616,0,0,53120,38,679,256,256,0,4895412794951722028,17393,40044,41720,0,50134,7602,7800,65536,1
|
||||||
|
1671,16710000,14590000,0,0,365851,169,2017,256,256,0,4714089188499128320,17395,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1672,16720000,10000,0,0,256,169,2018,256,256,0,0,17397,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1673,16730000,10000,0,0,256,169,2019,256,256,0,0,17400,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1674,16740000,10000,0,0,256,169,2021,256,256,0,0,17403,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1675,16750000,10000,0,0,256,169,2022,256,256,0,0,17405,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1676,16760000,10000,0,0,256,169,2023,256,256,0,0,17407,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1677,16770000,10000,0,0,256,169,2025,256,256,0,0,17410,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1678,16780000,10000,0,0,256,169,2026,256,256,0,0,17413,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1679,16790000,10000,0,0,256,169,2027,256,256,0,0,17415,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1680,16800000,10000,0,0,256,169,2029,256,256,0,0,17418,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1681,16810000,10000,0,0,256,169,2030,256,256,0,0,17421,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1682,16820000,10000,0,0,256,169,2031,256,256,0,0,17423,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1683,16830000,10000,0,0,256,169,2032,256,256,0,0,17426,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1684,16840000,10000,0,0,256,169,2034,256,256,0,0,17430,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1685,16850000,10000,0,0,256,169,2035,256,256,0,0,17433,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1686,16860000,10000,0,0,256,169,2036,256,256,0,0,17435,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1687,16870000,10000,0,0,256,169,2038,256,256,0,0,17438,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1688,16880000,10000,0,0,256,169,2039,256,256,0,0,17441,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1689,16890000,10000,0,0,256,169,2040,256,256,0,0,17445,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1690,16900000,10000,0,0,256,169,2041,256,256,0,0,17448,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1691,16910000,10000,0,0,256,169,2043,256,256,0,0,17451,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1692,16920000,10000,0,0,256,169,2044,256,256,0,0,17454,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1693,16930000,10000,0,0,256,169,2045,256,256,0,0,17457,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1694,16940000,10000,0,0,256,169,2047,256,256,0,0,17460,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1695,16950000,10000,0,0,256,169,2048,256,256,0,0,17463,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1696,16960000,10000,0,0,256,169,2049,256,256,0,0,17467,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1697,16970000,10000,0,0,256,169,2050,256,256,0,0,17473,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1698,16980000,10000,0,0,256,169,2052,256,256,0,0,17477,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1699,16990000,10000,0,0,256,169,2053,256,256,0,0,17479,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1700,17000000,10000,0,0,256,169,2054,256,256,0,0,17482,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1701,17010000,10000,0,0,256,169,2056,256,256,0,0,17493,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1702,17020000,10000,0,0,256,169,2057,256,256,0,0,17496,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1703,17030000,10000,0,0,256,169,2058,256,256,0,0,17499,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1704,17040000,10000,0,0,256,169,2060,256,256,0,0,17503,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1705,17050000,10000,0,0,256,169,2061,256,256,0,0,17507,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1706,17060000,10000,0,0,256,169,2062,256,256,0,0,17510,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1707,17070000,10000,0,0,256,169,2063,256,256,0,0,17513,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1708,17080000,10000,0,0,256,169,2065,256,256,0,0,17516,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1709,17090000,10000,0,0,256,169,2066,256,256,0,0,17519,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1710,17100000,10000,0,0,256,169,2067,256,256,0,0,17522,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1711,17110000,10000,0,0,256,169,2069,256,256,0,0,17525,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1712,17120000,10000,0,0,256,169,2070,256,256,0,0,17528,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1713,17130000,10000,0,0,256,169,2071,256,256,0,0,17532,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1714,17140000,10000,0,0,256,169,2072,256,256,0,0,17535,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1715,17150000,10000,0,0,256,169,2074,256,256,0,0,17539,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1716,17160000,10000,0,0,256,169,2075,256,256,0,0,17542,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1717,17170000,10000,0,0,256,169,2076,256,256,0,0,17546,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1718,17180000,10000,0,0,256,169,2078,256,256,0,0,17549,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1719,17190000,10000,0,0,256,169,2079,256,256,0,0,17552,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1720,17200000,10000,0,0,256,169,2080,256,256,0,0,17555,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1721,17210000,10000,0,0,256,169,2082,256,256,0,0,17559,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
356,3560000,18446744073695901616,0,0,90037,35,1359,256,256,0,4895412794951722482,17572,40044,41720,0,50134,7602,7800,65536,1
|
||||||
|
1722,17220000,13660000,0,0,341990,169,2083,256,256,0,4713589898550968320,17576,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1723,17230000,10000,0,0,256,169,2084,256,256,0,0,17579,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1724,17240000,10000,0,0,256,169,2085,256,256,0,0,17581,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1725,17250000,10000,0,0,256,169,2087,256,256,0,0,17585,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1726,17260000,10000,0,0,256,169,2088,256,256,0,0,17589,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1727,17270000,10000,0,0,256,169,2089,256,256,0,0,17593,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1728,17280000,10000,0,0,256,169,2091,256,256,0,0,17596,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1729,17290000,10000,0,0,256,169,2092,256,256,0,0,17599,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1730,17300000,10000,0,0,256,169,2093,256,256,0,0,17611,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1731,17310000,10000,0,0,256,169,2094,256,256,0,0,17613,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1732,17320000,10000,0,0,256,169,2096,256,256,0,0,17617,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1733,17330000,10000,0,0,256,169,2097,256,256,0,0,17620,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1734,17340000,10000,0,0,256,169,2098,256,256,0,0,17622,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1735,17350000,10000,0,0,256,169,2100,256,256,0,0,17626,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1736,17360000,10000,0,0,256,169,2101,256,256,0,0,17629,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1737,17370000,10000,0,0,256,169,2102,256,256,0,0,17633,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1738,17380000,10000,0,0,256,169,2104,256,256,0,0,17637,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1739,17390000,10000,0,0,256,169,2105,256,256,0,0,17639,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1740,17400000,10000,0,0,256,169,2106,256,256,0,0,17643,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1741,17410000,10000,0,0,256,169,2107,256,256,0,0,17645,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1742,17420000,10000,0,0,256,169,2109,256,256,0,0,17648,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1743,17430000,10000,0,0,256,169,2110,256,256,0,0,17650,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1744,17440000,10000,0,0,256,169,2111,256,256,0,0,17654,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1745,17450000,10000,0,0,256,169,2113,256,256,0,0,17657,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1746,17460000,10000,0,0,256,169,2114,256,256,0,0,17660,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1747,17470000,10000,0,0,256,169,2115,256,256,0,0,17663,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1748,17480000,10000,0,0,256,169,2116,256,256,0,0,17670,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1749,17490000,10000,0,0,256,169,2118,256,256,0,0,17673,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1750,17500000,10000,0,0,256,169,2119,256,256,0,0,17676,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1751,17510000,10000,0,0,256,169,2120,256,256,0,0,17679,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1752,17520000,10000,0,0,256,169,2122,256,256,0,0,17681,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1753,17530000,10000,0,0,256,169,2123,256,256,0,0,17683,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1754,17540000,10000,0,0,256,169,2124,256,256,0,0,17687,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1755,17550000,10000,0,0,256,169,2126,256,256,0,0,17691,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1756,17560000,10000,0,0,256,169,2127,256,256,0,0,17695,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1757,17570000,10000,0,0,256,169,2128,256,256,0,0,17697,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1758,17580000,10000,0,0,256,169,2129,256,256,0,0,17700,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1759,17590000,10000,0,0,256,169,2131,256,256,0,0,17704,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1760,17600000,10000,0,0,256,169,2132,256,256,0,0,17707,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1761,17610000,10000,0,0,256,172,2133,256,256,0,0,17711,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1762,17620000,10000,0,0,256,172,2135,256,256,0,0,17715,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1763,17630000,10000,0,0,256,172,2136,256,256,0,0,17726,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1764,17640000,10000,0,0,256,172,2137,256,256,0,0,17730,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1765,17650000,10000,0,0,256,172,2138,256,256,0,0,17732,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1766,17660000,10000,0,0,256,172,2140,256,256,0,0,17736,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1767,17670000,10000,0,0,256,172,2141,256,256,0,0,17738,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1768,17680000,10000,0,0,256,172,2142,256,256,0,0,17740,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1769,17690000,10000,0,0,256,172,2144,256,256,0,0,17744,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1770,17700000,10000,0,0,256,172,2145,256,256,0,0,17748,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1771,17710000,10000,0,0,256,172,2146,256,256,0,0,17751,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1772,17720000,10000,0,0,256,172,2147,256,256,0,0,17753,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1773,17730000,10000,0,0,256,172,2149,256,256,0,0,17764,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
357,3570000,18446744073695391616,0,0,90188,39,1180,256,256,0,4895412794951722233,17774,40044,41720,0,50134,7602,7800,65536,1
|
||||||
|
1774,17740000,14170000,0,0,355151,172,2150,256,256,0,4713863702716088320,17777,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1775,17750000,10000,0,0,256,172,2151,256,256,0,0,17779,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1776,17760000,10000,0,0,256,172,2153,256,256,0,0,17782,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1777,17770000,10000,0,0,256,172,2154,256,256,0,0,17786,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1778,17780000,10000,0,0,256,172,2155,256,256,0,0,17789,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1779,17790000,10000,0,0,256,172,2157,256,256,0,0,17791,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1780,17800000,10000,0,0,256,172,2158,256,256,0,0,17795,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1781,17810000,10000,0,0,256,172,2159,256,256,0,0,17800,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1782,17820000,10000,0,0,256,172,2160,256,256,0,0,17802,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1783,17830000,10000,0,0,256,172,2162,256,256,0,0,17805,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1784,17840000,10000,0,0,256,172,2163,256,256,0,0,17808,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1785,17850000,10000,0,0,256,172,2164,256,256,0,0,17811,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1786,17860000,10000,0,0,256,172,2166,256,256,0,0,17813,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1787,17870000,10000,0,0,256,172,2167,256,256,0,0,17816,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1788,17880000,10000,0,0,256,172,2168,256,256,0,0,17820,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1789,17890000,10000,0,0,256,172,2169,256,256,0,0,17822,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1790,17900000,10000,0,0,256,172,2171,256,256,0,0,17826,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1791,17910000,10000,0,0,256,172,2172,256,256,0,0,17830,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1792,17920000,10000,0,0,256,172,2173,256,256,0,0,17833,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1793,17930000,10000,0,0,256,172,2175,256,256,0,0,17837,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1794,17940000,10000,0,0,256,172,2176,256,256,0,0,17839,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1795,17950000,10000,0,0,256,172,2177,256,256,0,0,17841,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1796,17960000,10000,0,0,256,172,2179,256,256,0,0,17844,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1797,17970000,10000,0,0,256,172,2180,256,256,0,0,17848,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1798,17980000,10000,0,0,256,172,2181,256,256,0,0,17852,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1799,17990000,10000,0,0,256,172,2182,256,256,0,0,17859,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1800,18000000,10000,0,0,256,172,2184,256,256,0,0,17862,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1801,18010000,10000,0,0,256,172,2185,256,256,0,0,17865,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1802,18020000,10000,0,0,256,172,2186,256,256,0,0,17867,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1803,18030000,10000,0,0,256,172,2188,256,256,0,0,17879,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1804,18040000,10000,0,0,256,172,2189,256,256,0,0,17880,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1805,18050000,10000,0,0,256,172,2190,256,256,0,0,17884,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1806,18060000,10000,0,0,256,172,2191,256,256,0,0,17886,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1807,18070000,10000,0,0,256,172,2193,256,256,0,0,17888,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1808,18080000,10000,0,0,256,172,2194,256,256,0,0,17891,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1809,18090000,10000,0,0,256,172,2195,256,256,0,0,17893,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1810,18100000,10000,0,0,256,172,2197,256,256,0,0,17897,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1811,18110000,10000,0,0,256,172,2198,256,256,0,0,17902,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1812,18120000,10000,0,0,256,172,2199,256,256,0,0,17906,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1813,18130000,10000,0,0,256,172,2200,256,256,0,0,17909,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1814,18140000,10000,0,0,256,172,2202,256,256,0,0,17913,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1815,18150000,10000,0,0,256,172,2203,256,256,0,0,17917,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1816,18160000,10000,0,0,256,172,2204,256,256,0,0,17921,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1817,18170000,10000,0,0,256,172,2206,256,256,0,0,17925,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1818,18180000,10000,0,0,256,172,2207,256,256,0,0,17927,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1819,18190000,10000,0,0,256,172,2208,256,256,0,0,17929,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1820,18200000,10000,0,0,256,172,2210,256,256,0,0,17931,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1821,18210000,10000,0,0,256,172,2211,256,256,0,0,17934,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1822,18220000,10000,0,0,256,172,2212,256,256,0,0,17936,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1823,18230000,10000,0,0,256,172,2213,256,256,0,0,17938,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1824,18240000,10000,0,0,256,172,2215,256,256,0,0,17940,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1825,18250000,10000,0,0,256,172,2216,256,256,0,0,17947,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1826,18260000,10000,0,0,256,172,2217,256,256,0,0,17950,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1827,18270000,10000,0,0,256,172,2219,256,256,0,0,17953,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1828,18280000,10000,0,0,256,172,2220,256,256,0,0,17956,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1829,18290000,10000,0,0,256,172,2221,256,256,0,0,17958,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1830,18300000,10000,0,0,256,172,2222,256,256,0,0,17961,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1831,18310000,10000,0,0,256,172,2224,256,256,0,0,17963,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1832,18320000,10000,0,0,256,172,2225,256,256,0,0,17967,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1833,18330000,10000,0,0,256,172,2226,256,256,0,0,17970,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1834,18340000,10000,0,0,256,172,2228,256,256,0,0,17973,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1835,18350000,10000,0,0,256,172,2229,256,256,0,0,17976,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1836,18360000,10000,0,0,256,172,2230,256,256,0,0,17979,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1837,18370000,10000,0,0,256,172,2231,256,256,0,0,17983,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1838,18380000,10000,0,0,256,172,2233,256,256,0,0,17993,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1839,18390000,10000,0,0,256,172,2234,256,256,0,0,17994,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1840,18400000,10000,0,0,256,172,2235,256,256,0,0,17998,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1841,18410000,10000,0,0,256,172,2237,256,256,0,0,18000,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1842,18420000,10000,0,0,256,172,2238,256,256,0,0,18003,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1843,18430000,10000,0,0,256,172,2239,256,256,0,0,18006,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1844,18440000,10000,0,0,256,172,2241,256,256,0,0,18010,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1845,18450000,10000,0,0,256,172,2242,256,256,0,0,18014,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1846,18460000,10000,0,0,256,172,2243,256,256,0,0,18017,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1847,18470000,10000,0,0,256,172,2244,256,256,0,0,18020,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1848,18480000,10000,0,0,256,172,2246,256,256,0,0,18023,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1849,18490000,10000,0,0,256,172,2247,256,256,0,0,18026,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1850,18500000,10000,0,0,256,172,2248,256,256,0,0,18028,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
593,5930000,18446744073696981616,0,0,150653,33,2024,256,256,0,4895412794951723009,18034,40044,41720,0,50134,7602,7800,65536,1
|
||||||
|
1851,18510000,12580000,0,0,314398,172,2250,256,256,0,4713010077966008320,18037,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1852,18520000,10000,0,0,256,172,2251,256,256,0,0,18040,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1853,18530000,10000,0,0,256,172,2252,256,256,0,0,18042,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1854,18540000,10000,0,0,256,172,2253,256,256,0,0,18045,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1855,18550000,10000,0,0,256,172,2255,256,256,0,0,18047,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1856,18560000,10000,0,0,256,172,2256,256,256,0,0,18049,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1857,18570000,10000,0,0,256,172,2257,256,256,0,0,18052,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1858,18580000,10000,0,0,256,172,2259,256,256,0,0,18053,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1859,18590000,10000,0,0,256,172,2260,256,256,0,0,18056,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1860,18600000,10000,0,0,256,172,2261,256,256,0,0,18058,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1861,18610000,10000,0,0,256,172,2263,256,256,0,0,18061,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1862,18620000,10000,0,0,256,172,2264,256,256,0,0,18064,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1863,18630000,10000,0,0,256,172,2265,256,256,0,0,18068,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1864,18640000,10000,0,0,256,172,2266,256,256,0,0,18071,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1865,18650000,10000,0,0,256,172,2268,256,256,0,0,18074,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1866,18660000,10000,0,0,256,172,2269,256,256,0,0,18077,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1867,18670000,10000,0,0,256,172,2270,256,256,0,0,18081,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1868,18680000,10000,0,0,256,172,2272,256,256,0,0,18084,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1869,18690000,10000,0,0,256,172,2273,256,256,0,0,18087,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1870,18700000,10000,0,0,256,172,2274,256,256,0,0,18090,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1871,18710000,10000,0,0,256,172,2275,256,256,0,0,18093,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1872,18720000,10000,0,0,256,172,2277,256,256,0,0,18095,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1873,18730000,10000,0,0,256,172,2278,256,256,0,0,18106,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1874,18740000,10000,0,0,256,172,2279,256,256,0,0,18108,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1875,18750000,10000,0,0,256,172,2281,256,256,0,0,18110,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
475,4750000,18446744073695551616,0,0,120422,37,1640,256,256,0,4895412794951722311,18121,40044,41720,0,50134,7602,7800,65536,1
|
||||||
|
1876,18760000,14010000,0,0,351029,172,2282,256,256,0,4713777803370168320,18127,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1877,18770000,10000,0,0,256,172,2283,256,256,0,0,18130,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1878,18780000,10000,0,0,256,172,2285,256,256,0,0,18133,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1879,18790000,10000,0,0,256,172,2286,256,256,0,0,18137,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1880,18800000,10000,0,0,256,172,2287,256,256,0,0,18140,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1881,18810000,10000,0,0,256,172,2288,256,256,0,0,18143,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1882,18820000,10000,0,0,256,172,2290,256,256,0,0,18146,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1883,18830000,10000,0,0,256,172,2291,256,256,0,0,18149,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1884,18840000,10000,0,0,256,172,2292,256,256,0,0,18152,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1885,18850000,10000,0,0,256,172,2294,256,256,0,0,18155,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1886,18860000,10000,0,0,256,172,2295,256,256,0,0,18158,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1887,18870000,10000,0,0,256,172,2296,256,256,0,0,18161,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1888,18880000,10000,0,0,256,172,2297,256,256,0,0,18163,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1889,18890000,10000,0,0,256,172,2287,256,256,0,0,18166,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1890,18900000,10000,0,0,256,172,2254,256,256,0,0,18170,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1891,18910000,10000,0,0,256,173,2234,256,256,0,0,18173,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1892,18920000,10000,0,0,256,173,2213,256,256,0,0,18175,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1893,18930000,10000,0,0,256,173,2193,256,256,0,0,18179,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1894,18940000,10000,0,0,256,173,2173,256,256,0,0,18182,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1895,18950000,10000,0,0,256,173,2154,256,256,0,0,18185,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1896,18960000,10000,0,0,256,173,2135,256,256,0,0,18189,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1897,18970000,10000,0,0,256,173,2117,256,256,0,0,18193,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1898,18980000,10000,0,0,256,173,2118,256,256,0,0,18197,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1899,18990000,10000,0,0,256,173,2119,256,256,0,0,18201,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1900,19000000,10000,0,0,256,173,2120,256,256,0,0,18203,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1901,19010000,10000,0,0,256,173,2121,256,256,0,0,18206,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1902,19020000,10000,0,0,256,173,2123,256,256,0,0,18209,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1903,19030000,10000,0,0,256,173,2124,256,256,0,0,18212,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1904,19040000,10000,0,0,256,173,2125,256,256,0,0,18223,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1905,19050000,10000,0,0,256,173,2126,256,256,0,0,18226,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1906,19060000,10000,0,0,256,173,2127,256,256,0,0,18229,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1907,19070000,10000,0,0,256,173,2128,256,256,0,0,18231,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1908,19080000,10000,0,0,256,173,2130,256,256,0,0,18235,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1909,19090000,10000,0,0,256,173,2131,256,256,0,0,18239,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1910,19100000,10000,0,0,256,173,2132,256,256,0,0,18242,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1911,19110000,10000,0,0,256,162,2133,256,256,0,0,18249,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1912,19120000,10000,0,0,256,161,2134,256,256,0,0,18252,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1913,19130000,10000,0,0,256,161,2135,256,256,0,0,18254,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1914,19140000,10000,0,0,256,161,2136,256,256,0,0,18265,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1915,19150000,10000,0,0,256,161,2137,256,256,0,0,18267,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1916,19160000,10000,0,0,256,161,2138,256,256,0,0,18271,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1917,19170000,10000,0,0,256,161,2139,256,256,0,0,18273,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1918,19180000,10000,0,0,256,161,2140,256,256,0,0,18278,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1919,19190000,10000,0,0,256,161,2142,256,256,0,0,18282,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1920,19200000,10000,0,0,256,161,2143,256,256,0,0,18287,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1921,19210000,10000,0,0,256,161,2144,256,256,0,0,18290,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1922,19220000,10000,0,0,256,160,2145,256,256,0,0,18293,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1923,19230000,10000,0,0,256,157,2145,256,256,0,0,18296,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1924,19240000,10000,0,0,256,157,2147,256,256,0,0,18302,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1925,19250000,10000,0,0,256,157,2148,256,256,0,0,18306,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1926,19260000,10000,0,0,256,157,2149,256,256,0,0,18311,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1927,19270000,10000,0,0,256,157,2150,256,256,0,0,18315,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1928,19280000,10000,0,0,256,157,2151,256,256,0,0,18318,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1929,19290000,10000,0,0,256,157,2152,256,256,0,0,18323,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1930,19300000,10000,0,0,256,154,2153,256,256,0,0,18329,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1931,19310000,10000,0,0,256,154,2154,256,256,0,0,18336,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1932,19320000,10000,0,0,256,154,2156,256,256,0,0,18341,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1933,19330000,10000,0,0,256,154,2157,256,256,0,0,18346,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1934,19340000,10000,0,0,256,154,2158,256,256,0,0,18350,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1935,19350000,10000,0,0,256,154,2159,256,256,0,0,18352,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
1936,19360000,10000,0,0,256,154,2160,256,256,0,0,18357,40044,41720,1,50134,7602,7800,65536,1
|
||||||
|
@@ -208,6 +208,28 @@ const char *console_get_vm_name(void);
|
|||||||
*/
|
*/
|
||||||
void console_save_vm_name(char *out, size_t cap);
|
void console_save_vm_name(char *out, size_t cap);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* FABRIC-3.md SXXV follow-up (2026-09-13): the line prefix used to be a
|
||||||
|
* bare "[VMName] ", ambiguous between a console-proxy VM and the actual
|
||||||
|
* identity VM behind it (e.g. "rajames" the console vs. "rajames~user"
|
||||||
|
* the real WIREBIND-restricted identity) -- confirmed live to cause real
|
||||||
|
* confusion during testing. Unified to "[user@VMName] " when a user
|
||||||
|
* context is available, still "[VMName] " when not (unauthenticated/
|
||||||
|
* pre-login, unchanged from today).
|
||||||
|
*
|
||||||
|
* console.c is a clean HAL module with no dependency on capsule/WIREBIND
|
||||||
|
* logic (zuse_session, capsule_wirebind_attached_username()) -- pulling
|
||||||
|
* either in directly here would be a real layering violation, not just a
|
||||||
|
* style preference. This callback lets repl.c (which already computes
|
||||||
|
* exactly this for sk_print_prompt()) supply the "user" half without
|
||||||
|
* console.c knowing anything about VMs, sessions, or WIREBIND. Returns
|
||||||
|
* NULL/empty for "no user context" (falls back to the bare "[VMName] "
|
||||||
|
* form); the returned pointer must remain valid until the next call
|
||||||
|
* (matches console_get_vm_name()'s own single-buffer convention).
|
||||||
|
*/
|
||||||
|
typedef const char *(*console_user_prefix_fn)(void);
|
||||||
|
void console_set_user_prefix_provider(console_user_prefix_fn fn);
|
||||||
|
|
||||||
/* Last FORTH word name set by the dispatcher before entry->func(vm).
|
/* Last FORTH word name set by the dispatcher before entry->func(vm).
|
||||||
* Printed by the #GP fault handler to identify the faulting word. */
|
* Printed by the #GP fault handler to identify the faulting word. */
|
||||||
extern volatile const char *g_sk_fault_word;
|
extern volatile const char *g_sk_fault_word;
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,42 @@
|
|||||||
|
epoch_s,elapsed_s,qemu_utime_jiffies,mem_used_kb,mem_available_kb,swap_used_kb
|
||||||
|
1789295956,2,0,2366572,9773108,601876
|
||||||
|
1789295961,7,0,2461672,9678008,601876
|
||||||
|
1789295967,13,0,2422984,9716696,601876
|
||||||
|
1789295972,18,0,2410368,9729312,601876
|
||||||
|
1789295977,23,0,2451728,9687952,601876
|
||||||
|
1789295982,28,0,2470656,9669024,601876
|
||||||
|
1789295987,33,0,2461968,9677712,601876
|
||||||
|
1789295992,38,0,2480280,9659400,601876
|
||||||
|
1789295997,43,0,2494284,9645396,601876
|
||||||
|
1789296002,48,0,2495996,9643684,601876
|
||||||
|
1789296007,53,0,2493760,9645920,601876
|
||||||
|
1789296012,58,0,2452384,9687296,601876
|
||||||
|
1789296017,63,0,2448592,9691088,601876
|
||||||
|
1789296022,68,0,2478176,9661504,601876
|
||||||
|
1789296027,73,0,2497964,9641716,601876
|
||||||
|
1789296032,78,0,2476676,9663004,601876
|
||||||
|
1789296037,83,0,2477772,9661908,601876
|
||||||
|
1789296042,88,0,2495920,9643760,601876
|
||||||
|
1789296047,93,0,2515288,9624392,601876
|
||||||
|
1789296052,98,0,2514900,9624780,601876
|
||||||
|
1789296057,103,0,2529988,9609692,601876
|
||||||
|
1789296062,108,0,2520348,9619332,601876
|
||||||
|
1789296067,113,0,2506172,9633508,601876
|
||||||
|
1789296072,118,0,2520368,9619312,601876
|
||||||
|
1789296077,123,0,2529232,9610448,601876
|
||||||
|
1789296082,128,0,2534760,9604920,601876
|
||||||
|
1789296087,133,0,2546732,9592948,601876
|
||||||
|
1789296092,138,0,2518060,9621620,601876
|
||||||
|
1789296097,143,0,2510028,9629652,601876
|
||||||
|
1789296102,148,0,2502964,9636716,601876
|
||||||
|
1789296107,153,0,2504376,9635304,601876
|
||||||
|
1789296112,158,0,2514676,9625004,601876
|
||||||
|
1789296118,164,0,2538768,9600912,601876
|
||||||
|
1789296123,169,0,2549384,9590296,601876
|
||||||
|
1789296128,174,0,2530072,9609608,601876
|
||||||
|
1789296133,179,0,2540248,9599432,601876
|
||||||
|
1789296138,184,0,2583444,9556236,601876
|
||||||
|
1789296143,189,0,2538108,9601572,601876
|
||||||
|
1789296148,194,0,2536188,9603492,601876
|
||||||
|
1789296153,199,0,2547044,9592636,601876
|
||||||
|
1789296158,204,0,2505156,9634524,601876
|
||||||
|
File diff suppressed because it is too large
Load Diff
@@ -58,6 +58,34 @@ CapsuleRunResult capsule_runcap_birth(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* FABRIC-3.md SXXV follow-up (2026-09-13): source_len above is the
|
||||||
|
* FULL reserved region (source_devblocks worth of 4KiB devblocks) --
|
||||||
|
* MINT (capsule_mint.c) only ever writes a short personality string
|
||||||
|
* into it and memset()s the rest of that one devblock to 0 first, but
|
||||||
|
* never touches whatever devblocks beyond the first were reserved for
|
||||||
|
* identity_src, and this loop reads all of them regardless. Real
|
||||||
|
* content is a handful of lines; everything past it, for the whole
|
||||||
|
* remaining reserved region, is zero bytes with no "Block N" header
|
||||||
|
* of its own to stop capsule_exec_payload()'s own block-flush scan --
|
||||||
|
* confirmed live as the actual cause of "WARN: block 4998 exceeds
|
||||||
|
* 1KB, truncating", firing for every std79-locked identity, every
|
||||||
|
* boot, since before this was found: the parser had no way to tell
|
||||||
|
* "real content ends here" from "just more of this same block," so it
|
||||||
|
* walked the whole zero-padded region as one oversized block. FORTH
|
||||||
|
* source never legitimately contains a raw NUL, so it's a safe,
|
||||||
|
* ordinary C-string-style terminator here: trim source_len down to
|
||||||
|
* the first NUL actually found, restoring the block-parser's normal
|
||||||
|
* behavior instead of teaching it a special case for this one
|
||||||
|
* caller's own padding convention. */
|
||||||
|
{
|
||||||
|
uint64_t real_len = source_len;
|
||||||
|
uint64_t k;
|
||||||
|
for (k = 0; k < source_len; k++) {
|
||||||
|
if (arena[k] == '\0') { real_len = k; break; }
|
||||||
|
}
|
||||||
|
source_len = real_len;
|
||||||
|
}
|
||||||
|
|
||||||
/* Heap-built single-entry directory -- exact shape §F.6 traced
|
/* Heap-built single-entry directory -- exact shape §F.6 traced
|
||||||
* against capsule_birth_baby()'s own parameters, not a new mechanism.
|
* against capsule_birth_baby()'s own parameters, not a new mechanism.
|
||||||
* Never freed: matches kernel_main.c's own compile-time-directory
|
* Never freed: matches kernel_main.c's own compile-time-directory
|
||||||
|
|||||||
@@ -195,6 +195,18 @@ const char *console_get_vm_name(void) {
|
|||||||
return g_active_vm_name;
|
return g_active_vm_name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* FABRIC-3.md SXXV follow-up: see console.h's own doc comment on
|
||||||
|
* console_set_user_prefix_provider() for why this is a registered
|
||||||
|
* callback rather than console.c calling into capsule/WIREBIND logic
|
||||||
|
* directly. NULL (the default, until repl.c registers one at boot) means
|
||||||
|
* "no provider yet" -- emit_prefix() falls back to the bare "[VMName] "
|
||||||
|
* form, identical to today's behavior. */
|
||||||
|
static console_user_prefix_fn g_user_prefix_fn = (void *)0;
|
||||||
|
|
||||||
|
void console_set_user_prefix_provider(console_user_prefix_fn fn) {
|
||||||
|
g_user_prefix_fn = fn;
|
||||||
|
}
|
||||||
|
|
||||||
void console_save_vm_name(char *out, size_t cap) {
|
void console_save_vm_name(char *out, size_t cap) {
|
||||||
if (!out || cap == 0) return;
|
if (!out || cap == 0) return;
|
||||||
size_t i = 0;
|
size_t i = 0;
|
||||||
@@ -239,10 +251,19 @@ static void emit_prefix(void) {
|
|||||||
int fb = fb_is_available();
|
int fb = fb_is_available();
|
||||||
static const char *color_on = "\x1b[38;2;255;165;0m";
|
static const char *color_on = "\x1b[38;2;255;165;0m";
|
||||||
static const char *color_off = "\x1b[39m";
|
static const char *color_off = "\x1b[39m";
|
||||||
|
const char *user = g_user_prefix_fn ? g_user_prefix_fn() : (void *)0;
|
||||||
|
|
||||||
for (p = color_on; *p; p++) { raw_putc(*p); if (fb) vt100_putc(*p); }
|
for (p = color_on; *p; p++) { raw_putc(*p); if (fb) vt100_putc(*p); }
|
||||||
raw_putc('[');
|
raw_putc('[');
|
||||||
if (fb) vt100_putc('[');
|
if (fb) vt100_putc('[');
|
||||||
|
if (user && user[0]) {
|
||||||
|
for (p = user; *p; p++) {
|
||||||
|
raw_putc(*p);
|
||||||
|
if (fb) vt100_putc(*p);
|
||||||
|
}
|
||||||
|
raw_putc('@');
|
||||||
|
if (fb) vt100_putc('@');
|
||||||
|
}
|
||||||
for (p = g_active_vm_name; *p; p++) {
|
for (p = g_active_vm_name; *p; p++) {
|
||||||
raw_putc(*p);
|
raw_putc(*p);
|
||||||
if (fb) vt100_putc(*p);
|
if (fb) vt100_putc(*p);
|
||||||
|
|||||||
+46
-37
@@ -60,31 +60,35 @@
|
|||||||
|
|
||||||
const char lithos_version[64] = LITHOS_VERSION_STR;
|
const char lithos_version[64] = LITHOS_VERSION_STR;
|
||||||
|
|
||||||
/* FABRIC-0.md §27.8/4.4s, unblocked 2026-09-04: extends the prompt to
|
/* FABRIC-3.md SXXV follow-up (2026-09-13): was "[VM name] (user) ok>"
|
||||||
* "[VM name] (user) ok>" (e.g. "[Hera] (zuse) ok>") whenever an
|
* (e.g. "[Hera] (zuse) ok>") -- the VM-name bracket and the user segment
|
||||||
* identity is currently attached -- Zuse (mama_vm->zuse_session; there
|
* were computed independently, and neither one told you whether the
|
||||||
* is only ever one, so no username lookup needed) or a regular WIREBIND
|
* bracketed VM was the console proxy WIREBIND births per identity or the
|
||||||
* user (capsule_wirebind_attached_username()). Checked independently of
|
* actual restricted identity VM behind it (e.g. "rajames" vs.
|
||||||
* which VM's own bracket console.c is currently showing: both identities
|
* "rajames~user") -- confirmed live to cause real confusion debugging
|
||||||
* are console-level attach state, not per-VM dictionary state, so the
|
* the std79 lockdown. Unified into the single "[user@VM name] ok>" line
|
||||||
* segment reflects "who is at the console" the same way regardless of
|
* prefix (console.c's emit_prefix(), via console_set_user_prefix_
|
||||||
* which VM you've USE'd into. Prints nothing (bare "ok> ", today's
|
* provider() below) -- one tag, always accurate about both who's at the
|
||||||
* existing format, unchanged) when neither is attached -- Hera's own
|
* console AND which VM a line actually came from/a command actually
|
||||||
* documented normal steady state (FABRIC-2.md §D.2). */
|
* reaches. This function now only prints the bare prompt text; the user
|
||||||
|
* segment moved into the line prefix, which is a different call path per
|
||||||
|
* console.c's own commenting elsewhere but reaches every line including
|
||||||
|
* this prompt. */
|
||||||
static void sk_print_prompt(void) {
|
static void sk_print_prompt(void) {
|
||||||
VM *mama_vm = (VM *)sk_get_mama_vm();
|
|
||||||
const char *username;
|
|
||||||
|
|
||||||
if (mama_vm && mama_vm->zuse_session) {
|
|
||||||
console_puts("(zuse) ");
|
|
||||||
} else if ((username = capsule_wirebind_attached_username()) != (const char *)0) {
|
|
||||||
console_puts("(");
|
|
||||||
console_puts(username);
|
|
||||||
console_puts(") ");
|
|
||||||
}
|
|
||||||
console_puts(SK_PROMPT_TEXT);
|
console_puts(SK_PROMPT_TEXT);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* console_user_prefix_fn provider (console.h) -- same zuse_session/
|
||||||
|
* WIREBIND-username logic sk_print_prompt() used to compute inline
|
||||||
|
* before this moved into the shared line prefix. Registered once at
|
||||||
|
* boot (sk_repl_run()'s own init, see below); NULL until then, which
|
||||||
|
* console.c's emit_prefix() already treats as "no provider yet." */
|
||||||
|
static const char *sk_console_user_prefix(void) {
|
||||||
|
VM *mama_vm = (VM *)sk_get_mama_vm();
|
||||||
|
if (mama_vm && mama_vm->zuse_session) return "zuse";
|
||||||
|
return capsule_wirebind_attached_username();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/*===========================================================================
|
/*===========================================================================
|
||||||
* USE-word dispatch: which VM receives REPL input.
|
* USE-word dispatch: which VM receives REPL input.
|
||||||
@@ -1215,16 +1219,15 @@ int sk_repl_step(VM *vm)
|
|||||||
|
|
||||||
{
|
{
|
||||||
/* Unified prompt (FABRIC-0.md 4.4a): console_putc()'s existing per-line
|
/* Unified prompt (FABRIC-0.md 4.4a): console_putc()'s existing per-line
|
||||||
* "[VMName] " prefix (console.c, g_active_vm_name) already supplies the
|
* "[user@VMName] " prefix (console.c's emit_prefix(), FABRIC-3.md
|
||||||
* bracket -- print only "ok> " here, don't build a second one.
|
* SXXV follow-up) already supplies the bracket -- print only
|
||||||
* emergency_console is no longer set from here (FABRIC-2.md §F.20/
|
* "ok> " here, don't build a second one. emergency_console is no
|
||||||
* §F.21: the emergency-CLI ACL bypass is retired) -- it's driven
|
* longer set from here (FABRIC-2.md §F.20/§F.21: the emergency-CLI
|
||||||
* only by the genuine C-level fault handler now (vm.c's own
|
* ACL bypass is retired) -- it's driven only by the genuine C-level
|
||||||
* emergency-fault-recovery use, EMERGENCY_CONSOLE_ENABLED). Every
|
* fault handler now (vm.c's own emergency-fault-recovery use,
|
||||||
* word run from this REPL, Hera's bare prompt included, goes
|
* EMERGENCY_CONSOLE_ENABLED). Every word run from this REPL,
|
||||||
* through ordinary ACL enforcement. FABRIC-0.md 4.4s (2026-09-04):
|
* Hera's bare prompt included, goes through ordinary ACL
|
||||||
* sk_print_prompt() extends this with a "(user)" segment when an
|
* enforcement. */
|
||||||
* identity is attached -- see its own doc comment. */
|
|
||||||
sk_print_prompt();
|
sk_print_prompt();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1276,6 +1279,12 @@ void sk_repl_run(VM *vm)
|
|||||||
char input[INPUT_BUFFER_SIZE]; /* FABRIC-0.md 4.4w: matches the strip's input width */
|
char input[INPUT_BUFFER_SIZE]; /* FABRIC-0.md 4.4w: matches the strip's input width */
|
||||||
VM *active;
|
VM *active;
|
||||||
|
|
||||||
|
/* FABRIC-3.md SXXV follow-up: one-time registration so console.c's
|
||||||
|
* emit_prefix() can compose "[user@VMName] " instead of the bare
|
||||||
|
* "[VMName] " it falls back to while this is still unregistered
|
||||||
|
* (early boot output, before sk_repl_run() is ever reached). */
|
||||||
|
console_set_user_prefix_provider(sk_console_user_prefix);
|
||||||
|
|
||||||
vm->halted = 0;
|
vm->halted = 0;
|
||||||
|
|
||||||
while (!vm->halted) {
|
while (!vm->halted) {
|
||||||
@@ -1299,12 +1308,12 @@ void sk_repl_run(VM *vm)
|
|||||||
active = g_repl_active_vm ? g_repl_active_vm : vm;
|
active = g_repl_active_vm ? g_repl_active_vm : vm;
|
||||||
|
|
||||||
/* Unified prompt (FABRIC-0.md 4.4a): console_putc()'s existing per-line
|
/* Unified prompt (FABRIC-0.md 4.4a): console_putc()'s existing per-line
|
||||||
* "[VMName] " prefix (console.c, g_active_vm_name) already supplies the
|
* "[user@VMName] " prefix (console.c's emit_prefix(), FABRIC-3.md
|
||||||
* bracket -- print only "ok> " here, don't build a second one.
|
* SXXV follow-up) already supplies the bracket -- print only "ok> "
|
||||||
* emergency_console is no longer set from here (FABRIC-2.md §F.20/
|
* here, don't build a second one. emergency_console is no longer
|
||||||
* §F.21: the emergency-CLI ACL bypass is retired) -- see sk_repl_
|
* set from here (FABRIC-2.md §F.20/§F.21: the emergency-CLI ACL
|
||||||
* step()'s matching comment above. FABRIC-0.md 4.4s (2026-09-04):
|
* bypass is retired) -- see sk_repl_step()'s matching comment
|
||||||
* sk_print_prompt() extends this with a "(user)" segment. */
|
* above. */
|
||||||
sk_print_prompt();
|
sk_print_prompt();
|
||||||
|
|
||||||
int n = sk_console_readline(input, sizeof(input), active, 1);
|
int n = sk_console_readline(input, sizeof(input), active, 1);
|
||||||
|
|||||||
Reference in New Issue
Block a user