From 49bd7c27fd78d8a5b9ca8a6b7b7f87817fc83521 Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Wed, 18 Sep 2024 15:57:13 -0300 Subject: [PATCH 1/4] negentropy: add format. --- README.md | 1 + doc/formats.md | 50 +- format/all/all.fqtest | 1 + format/all/all.go | 1 + format/format.go | 1 + format/negentropy/negentropy.go | 116 ++ format/negentropy/negentropy.md | 23 + .../testdata/bigmessagewitheverything | Bin 0 -> 4461 bytes .../testdata/bigmessagewitheverything.fqtest | 1367 +++++++++++++++++ .../negentropy/testdata/smalljustfingerprints | Bin 0 -> 320 bytes .../testdata/smalljustfingerprints.fqtest | 110 ++ 11 files changed, 1661 insertions(+), 9 deletions(-) create mode 100644 format/negentropy/negentropy.go create mode 100644 format/negentropy/negentropy.md create mode 100644 format/negentropy/testdata/bigmessagewitheverything create mode 100644 format/negentropy/testdata/bigmessagewitheverything.fqtest create mode 100644 format/negentropy/testdata/smalljustfingerprints create mode 100644 format/negentropy/testdata/smalljustfingerprints.fqtest diff --git a/README.md b/README.md index 2c4ad944a..38ba48c8f 100644 --- a/README.md +++ b/README.md @@ -124,6 +124,7 @@ mpeg_pes_packet, mpeg_spu, mpeg_ts, [msgpack](doc/formats.md#msgpack), +[negentropy](doc/formats.md#negentropy), [nes](doc/formats.md#nes), ogg, ogg_page, diff --git a/doc/formats.md b/doc/formats.md index a4ce51531..92dbee9af 100644 --- a/doc/formats.md +++ b/doc/formats.md @@ -96,6 +96,7 @@ |`mpeg_spu` |Sub Picture Unit (DVD subtitle) || |`mpeg_ts` |MPEG Transport Stream || |[`msgpack`](#msgpack) |MessagePack || +|[`negentropy`](#negentropy) |Negentropy message || |[`nes`](#nes) |iNES/NES 2.0 cartridge ROM format || |`ogg` |OGG file |`ogg_page` `vorbis_packet` `opus_packet` `flac_metadatablock` `flac_frame`| |`ogg_page` |OGG page || @@ -140,7 +141,7 @@ |`ip_packet` |Group |`icmp` `icmpv6` `tcp_segment` `udp_datagram`| |`link_frame` |Group |`bsd_loopback_frame` `ether8023_frame` `ipv4_packet` `ipv6_packet` `sll2_packet` `sll_packet`| |`mp3_frame_tags` |Group |`mp3_frame_vbri` `mp3_frame_xing`| -|`probe` |Group |`adts` `aiff` `apple_bookmark` `ar` `avi` `avro_ocf` `bitcoin_blkdat` `bplist` `bzip2` `caff` `elf` `fit` `flac` `gif` `gzip` `html` `jp2c` `jpeg` `json` `jsonl` `leveldb_table` `luajit` `macho` `macho_fat` `matroska` `moc3` `mp3` `mp4` `mpeg_ts` `nes` `ogg` `opentimestamps` `pcap` `pcapng` `png` `tar` `tiff` `toml` `tzif` `tzx` `wasm` `wav` `webp` `xml` `yaml` `zip`| +|`probe` |Group |`adts` `aiff` `apple_bookmark` `ar` `avi` `avro_ocf` `bitcoin_blkdat` `bplist` `bzip2` `caff` `elf` `fit` `flac` `gif` `gzip` `html` `jp2c` `jpeg` `json` `jsonl` `leveldb_table` `luajit` `macho` `macho_fat` `matroska` `midi` `moc3` `mp3` `mp4` `mpeg_ts` `nes` `ogg` `opentimestamps` `pcap` `pcapng` `png` `tar` `tiff` `toml` `tzif` `tzx` `wasm` `wav` `webp` `xml` `yaml` `zip`| |`tcp_stream` |Group |`dns_tcp` `rtmp` `tls`| |`udp_payload` |Group |`dns`| @@ -873,37 +874,41 @@ Standard MIDI file. ### Notes -1. Only supports the MIDI 1.0 specification. -2. Does only basic validation on the MIDI data. +1. Only supports the MIDI 1.0 MIDI file specification. +2. Only supports _MThd_ and _MTrk_ chunks. +3. Does only basic validation on the MIDI data. ### Sample queries 1. Extract the track names from a MIDI file ``` -fq -d midi -d midi '.. | select(.event=="Track Name")? | "\(.name)"' twinkle.mid +fq -d midi -d midi '.. | select(.event=="track_name")? | "\(.track_name)"' midi/twinkle.mid ``` 2. Extract the tempo changes from a MIDI file ``` -fq -d midi '.. | select(.event=="Tempo")?.tempo' twinkle.mid +fq -d midi '.. | select(.event=="tempo")?.tempo' midi/twinkle.mid ``` 3. Extract the key changes from a MIDI file ``` -fq -d midi '.. | select(.event=="Key Signature")?.key' key-signatures.mid +fq -d midi '.. | select(.event=="key_signature")?.key_signature' midi/twinkle.mid ``` -4. Extract NoteOn and NoteOff events: +4. Extract NoteOn events: ``` -fq -d midi 'grep_by(.event=="Note On" or .event=="Note Off") | "\(.event) \(.time.tick) \(.note)"' twinkle.mid +fq -d midi 'grep_by(.event=="note_on") | [.time.tick, .note_on.note] | join(" ")' midi/twinkle.mid ``` ### Authors -- transcriptaze.development@gmail.com +- [transcriptaze](https://github.com/transcriptaze) ### References 1. [The Complete MIDI 1.0 Detailed Specification](https://www.midi.org/specifications/item/the-midi-1-0-specification) +2. [Standard MIDI Files](https://midi.org/standard-midi-files) +3. [Standard MIDI File (SMF) Format](http://midi.teragonaudio.com/tech/midifile.htm) +4. [MIDI Files Specification](http://www.somascape.org/midi/tech/mfile.html) ## moc3 MOC3 file. @@ -1012,6 +1017,33 @@ $ fq -d msgpack torepr file.msgpack ### References - https://github.com/msgpack/msgpack/blob/master/spec.md +## negentropy +Negentropy message. + +### View a full Negentropy message + +``` +$ fq -d negentropy dd file +``` + +### Check how many ranges the message has and how many of those are of 'fingerprint' mode + +``` +$ fq -d negentropy '.bounds | length as $total | map(select(.mode == "fingerprint")) | length | {$total, fingerprint: .}' message +``` + +### Check get all ids in all idlists + +``` +$ fq -d negentropy '.bounds | map(select(.mode == "idlist") | .idlist | .ids) | flatten' message +``` + +### Authors +- fiatjaf, https://fiatjaf.com + +### References +- https://github.com/hoytech/negentropy + ## nes iNES/NES 2.0 cartridge ROM format. diff --git a/format/all/all.fqtest b/format/all/all.fqtest index 14b765402..7674bee36 100644 --- a/format/all/all.fqtest +++ b/format/all/all.fqtest @@ -141,6 +141,7 @@ mpeg_pes_packet MPEG Packetized elementary stream packet mpeg_spu Sub Picture Unit (DVD subtitle) mpeg_ts MPEG Transport Stream msgpack MessagePack +negentropy Negentropy message nes iNES/NES 2.0 cartridge ROM format ogg OGG file ogg_page OGG page diff --git a/format/all/all.go b/format/all/all.go index 982b7a711..0eb2b762e 100644 --- a/format/all/all.go +++ b/format/all/all.go @@ -42,6 +42,7 @@ import ( _ "github.com/wader/fq/format/mp4" _ "github.com/wader/fq/format/mpeg" _ "github.com/wader/fq/format/msgpack" + _ "github.com/wader/fq/format/negentropy" _ "github.com/wader/fq/format/nes" _ "github.com/wader/fq/format/ogg" _ "github.com/wader/fq/format/opentimestamps" diff --git a/format/format.go b/format/format.go index a61cf9e10..94e14bada 100644 --- a/format/format.go +++ b/format/format.go @@ -148,6 +148,7 @@ var ( MPEG_TS = &decode.Group{Name: "mpeg_ts"} MPES_PES = &decode.Group{Name: "mpeg_pes"} MsgPack = &decode.Group{Name: "msgpack"} + Negentropy = &decode.Group{Name: "negentropy"} NES = &decode.Group{Name: "nes"} Ogg = &decode.Group{Name: "ogg"} Ogg_Page = &decode.Group{Name: "ogg_page"} diff --git a/format/negentropy/negentropy.go b/format/negentropy/negentropy.go new file mode 100644 index 000000000..62d47694f --- /dev/null +++ b/format/negentropy/negentropy.go @@ -0,0 +1,116 @@ +package negentropy + +// https://github.com/hoytech/negentropy + +import ( + "embed" + "math" + "time" + + "github.com/wader/fq/format" + "github.com/wader/fq/pkg/decode" + "github.com/wader/fq/pkg/interp" + "github.com/wader/fq/pkg/scalar" +) + +//go:embed negentropy.md +var negFS embed.FS + +func init() { + interp.RegisterFormat( + format.Negentropy, + &decode.Format{ + Description: "Negentropy message", + DecodeFn: decodeNegentropyMessage, + Groups: []*decode.Group{}, + }) + interp.RegisterFS(negFS) +} + +const ( + version = 0x61 + fingerprintSize = 16 +) + +var modeMapper = scalar.SintMapSymStr{ + 0: "skip", + 1: "fingerprint", + 2: "idlist", +} + +type timestampTranslator struct{ last time.Time } + +func (tt *timestampTranslator) MapSint(s scalar.Sint) (scalar.Sint, error) { + if s.Actual == 0 { + s.Description = "infinity" + s.Actual = -1 + tt.last = time.Unix(math.MaxInt64, 0) + return s, nil + } else { + s.Actual-- + + timestamp := tt.last.Add(time.Second * time.Duration(s.Actual-1)) + tt.last = timestamp + s.Description = timestamp.Format(time.DateTime) + return s, nil + } +} + +func decodeNegentropyMessage(d *decode.D) any { + tt := ×tampTranslator{last: time.Unix(0, 0)} + + d.Endian = decode.BigEndian + + v := d.FieldU8("version") + if v != version { + d.Fatalf("unexpected version %d (expected %d), is this really a negentropy message?", v, version) + } + + d.FieldStructArrayLoop("bounds", "bound", d.NotEnd, func(d *decode.D) { + d.FieldSintFn("timestamp_delta", decodeVarInt, tt) + + size := d.FieldSintFn("id_prefix_size", decodeVarInt) + if size > 32 { + d.Fatalf("unexpected id prefix size bigger than 32: %d", size) + } + if size > 0 { + d.FieldRawLen("id_prefix", size*8, scalar.RawHex) + } + + mode := d.FieldSintFn("mode", decodeVarInt, modeMapper) + switch mode { + case 0: + return + case 1: + d.FieldRawLen("fingerprint", fingerprintSize*8, scalar.RawHex) + return + case 2: + d.FieldStruct("idlist", func(d *decode.D) { + num := d.FieldSintFn("num", decodeVarInt) + d.FieldArray("ids", func(d *decode.D) { + for i := 0; i < int(num); i++ { + d.FieldRawLen("id", 32*8, scalar.RawHex) + } + }) + }) + default: + d.Fatalf("unexpected mode %d", mode) + } + }) + + return nil +} + +func decodeVarInt(d *decode.D) int64 { + var res int64 = 0 + + for { + b := d.U8() + res = (res << 7) | (int64(b) & 127) + if (b & 128) == 0 { + break + } + } + + return res +} diff --git a/format/negentropy/negentropy.md b/format/negentropy/negentropy.md new file mode 100644 index 000000000..fe02f0fc1 --- /dev/null +++ b/format/negentropy/negentropy.md @@ -0,0 +1,23 @@ +### View a full Negentropy message + +``` +$ fq -d negentropy dd file +``` + +### Check how many ranges the message has and how many of those are of 'fingerprint' mode + +``` +$ fq -d negentropy '.bounds | length as $total | map(select(.mode == "fingerprint")) | length | {$total, fingerprint: .}' message +``` + +### Check get all ids in all idlists + +``` +$ fq -d negentropy '.bounds | map(select(.mode == "idlist") | .idlist | .ids) | flatten' message +``` + +### Authors +- fiatjaf, https://fiatjaf.com + +### References +- https://github.com/hoytech/negentropy diff --git a/format/negentropy/testdata/bigmessagewitheverything b/format/negentropy/testdata/bigmessagewitheverything new file mode 100644 index 0000000000000000000000000000000000000000..55c6da2f822332b2f14de2c5f94bc3acccc41a02 GIT binary patch literal 4461 zcmb8xc{o&U9|!PrtXU%sgUHyjW@nx(L)ju*5?Nv*BugF>#!^Nid1#1IwnRlzkwQwA zqGiZdl1wQh6O9Uy7SFGL-{*a2p7&hWx&Qcl@42sYo$H?ae2KCMI#wS1uJ6XlStHRc zDoU2w!~6&uOI(}fYA=B+yQLxPF6l-GD(^Ar=u=6UrxUM4JTxiH0ou0V{?|Sirx$!7 z2HQXIWheqkBw_nE-|a1;c{+CHW;wJ01-2|C$(aS_MX#8(2;TlM0uh;1H_cby=wKMm2qzKepU{MBRA|fkY_z<+0f9S@bjUkRz z@+p9?{dy=5f=0)5H}WuF{(3~F>-+ff@B=B36Gx>@Vuhcrvs?etYPcVWI_%iPJK4=1z-Hl z@s~^SCUIUTfW%@g@4OZC7q4#(I(ySuq8BK*0H0#s%2?a7xjBjypJfL`+^4zy>RN}) z5p2yjb$nPfP^Wk4QceM3Lz8NXGF9`L08sAzPOO-KV#eTsh9V>lLt*4 z^4+k?ydu2r2>LdDdMow8tPdtQV{Hdb082u+kpJh7LAbC8+e?aViXc)b`w3E99CB_B zIS+@NmqX6SA?N3iui}skaLC0tBGc;IK@2Uk-uYF6bcl4d+Qk~|xmYwGfH0Q3oZ*}s>rOZjIg;RoovOt#p)yVe? zepWgTN$2wqesBd^<5F>&tGbwhUEyl*nS5Q6u7V)IkJK>l1$iFN6U7Yr;ydXLK*oB! zf;8+ckL^1RxxWSWzXtkc88hRQh@CEvoo#K?^EU_DBJO8#%Xev_C-TjcoLuH3pvys0 zr=E!%b*z77EF~1QB@`&TMBZwnq6ei{;owh&k-b0RoAF*Y8OvaCx3nnHWE}JL-GHox zG+o!6o&Ga_;HUJ%wD&zgO-0;YFORR>DgVZ6btSIK4`|Zm^7e;^wWC8MN+vHx@+JMI z6#ftAx&5!px%zu?WiZQuFsIh%?7yv$-cd+xI30NOEYO|MS3XoJp%g>PSkJk=l7>L^ zt(_Ap^5>b~Pa7pu`5hC0G@fKq@B-pX7qVU57?0J9fP$um`Z}icw2^rI<*4eL%c;o- zB8zZwI8O}n*zZ?^lN|DV4tW8G{1k`$G>5#9Lw*L{!SDC*kNa#eg5J^#d|uN;E*U8y zn$P>RwvV`x@YjQPfWe=0Jpjh8#bi+-M;K|HjvN7bwA`ua-%~f zE-qgabq}Y*(I$?d-I^P|I?LZL95Z3EWMaDmXrSp$l!8Mr|k(pQwZ0;E|#CaV5} z9?-?RJc&?3jsaN(XMVZ8(mS#XqkiCZX!TE^@}-YYG+1ub*$|CKK~A#XK;yM-D_geR zyI{NBJhHvngb0*wEBm!Dl!B2IpS4oNTAt87yb(>Ax;0%f*^MD1CS zx`7sEWf_vpE&_$rc^L;k;*QA=)0o#QIVT0Q@=$+_T)ge(c$n2eqFVDH5Ti*dX<(q> z)xyu3>+}kJI*`b1-t7Lk1gaZ9nUp`%odtAtv=VKTu}}GwpdwxxIywNLmjCCG z&1u%kLjB%LKuYfz!(C1Mk+06%t{<~n6a{)(eAjtaRt?7*RnfNIpWp}7h%Mc9cG&Ey zz1o;joQHrJkf4!X@sIe=ag&Nn_jNW#(?G*RWoqFkwLZ~9V<#6~j*)~Bw913fA=@>l z=d0O%w;M;}2V%%yArr2+7B^nQ+|s(?!*oUv_)~S$wZd1=w|Ui0 zi`M51=QUK%@n8!dAVs4|IR$m9fF4f(dhW&ZR$c_f?U~9s{G&r=yhe?*`{~jm(63@{ zd}2e}kr$m$NZ3l`70}!e!Cm>i$e|;STBXcX;Uu7JqOp*j^^&N;iJpLA70WRojlsXx zUaRGm{QA;hMp{3n2I%z;g-8j!{3R!x!^ojKQ@>}aX0#Y92j}g6xj}nn`>n!oAjNaS zy+(%NUWq{}(*?0w89;p=C-RnJige24rbZ7pz32sM6j+zkZIecrAu{rW^1H2pG@^SN zw%B6ga#?xK{9`X9f&TO9DM|l){8UpoMgGmO>G!<ZG=43+)^2mS?IGJLBWZ zL=p6S*X6x=`o+t+d{#CR72Tyk{rBpsN`AtM$WkpcW;KBbF!JhtrQ@&ya#E ze=lELten02*T>;YgLS8?_7~iMy_7r9Vz65;YC%bQQ7d4VTm(?j$CH*#eA0;zE|=2= z*0o6krF_I&)E8{l_`2VT%)79(2k369a9{Jyc5mIHnW#%w-35U(bI*zSZ@Wk}H!XjT zVJJ!hVNI;X65DU^g{|q(7O7!~1ATU^sNR%5}pC@=OW_22r JVap>v{0*NUukQc= literal 0 HcmV?d00001 diff --git a/format/negentropy/testdata/bigmessagewitheverything.fqtest b/format/negentropy/testdata/bigmessagewitheverything.fqtest new file mode 100644 index 000000000..0f8738881 --- /dev/null +++ b/format/negentropy/testdata/bigmessagewitheverything.fqtest @@ -0,0 +1,1367 @@ +$ fq -d negentropy dv bigmessagewitheverything + |00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: bigmessagewitheverything (negentropy) 0x0-0x116d (4461) +0x0000|61 |a | version: 97 0x0-0x1 (1) + | | | bounds[0:199]: 0x1-0x116d (4460) + | | | [0]{}: bound 0x1-0x14 (19) +0x0000| 1b | . | timestamp_delta: 26 (1970-01-01 00:00:25) 0x1-0x2 (1) +0x0000| 00 | . | id_prefix_size: 0 0x2-0x3 (1) +0x0000| 01 | . | mode: "fingerprint" (1) 0x3-0x4 (1) +0x0000| dd a1 66 e3 d0 b3 93 ef 35 0e 43 25| ..f.....5.C%| fingerprint: "dda166e3d0b393ef350e432523408dd7" (raw bits) 0x4-0x14 (16) +0x0010|23 40 8d d7 |#@.. | + | | | [1]{}: bound 0x14-0x27 (19) +0x0010| 07 | . | timestamp_delta: 6 (1970-01-01 00:00:30) 0x14-0x15 (1) +0x0010| 00 | . | id_prefix_size: 0 0x15-0x16 (1) +0x0010| 01 | . | mode: "fingerprint" (1) 0x16-0x17 (1) +0x0010| 76 61 14 8b 50 48 13 21 9f| va..PH.!.| fingerprint: "7661148b504813219fb62a1b531651de" (raw bits) 0x17-0x27 (16) +0x0020|b6 2a 1b 53 16 51 de |.*.S.Q. | + | | | [2]{}: bound 0x27-0x3a (19) +0x0020| 07 | . | timestamp_delta: 6 (1970-01-01 00:00:35) 0x27-0x28 (1) +0x0020| 00 | . | id_prefix_size: 0 0x28-0x29 (1) +0x0020| 01 | . | mode: "fingerprint" (1) 0x29-0x2a (1) +0x0020| a1 cd 37 c2 d0 25| ..7..%| fingerprint: "a1cd37c2d0257af4de61ac6dc837988e" (raw bits) 0x2a-0x3a (16) +0x0030|7a f4 de 61 ac 6d c8 37 98 8e |z..a.m.7.. | + | | | [3]{}: bound 0x3a-0x4d (19) +0x0030| 07 | . | timestamp_delta: 6 (1970-01-01 00:00:40) 0x3a-0x3b (1) +0x0030| 00 | . | id_prefix_size: 0 0x3b-0x3c (1) +0x0030| 01 | . | mode: "fingerprint" (1) 0x3c-0x3d (1) +0x0030| 4c 27 c4| L'.| fingerprint: "4c27c4f6d04f4dd806673352ea068722" (raw bits) 0x3d-0x4d (16) +0x0040|f6 d0 4f 4d d8 06 67 33 52 ea 06 87 22 |..OM..g3R..." | + | | | [4]{}: bound 0x4d-0x60 (19) +0x0040| 07 | . | timestamp_delta: 6 (1970-01-01 00:00:45) 0x4d-0x4e (1) +0x0040| 00 | . | id_prefix_size: 0 0x4e-0x4f (1) +0x0040| 01| .| mode: "fingerprint" (1) 0x4f-0x50 (1) +0x0050|13 7c 18 d1 42 bd ce 9b cc 57 4b c3 91 8b 4a c0|.|..B....WK...J.| fingerprint: "137c18d142bdce9bcc574bc3918b4ac0" (raw bits) 0x50-0x60 (16) + | | | [5]{}: bound 0x60-0x73 (19) +0x0060|07 |. | timestamp_delta: 6 (1970-01-01 00:00:50) 0x60-0x61 (1) +0x0060| 00 | . | id_prefix_size: 0 0x61-0x62 (1) +0x0060| 01 | . | mode: "fingerprint" (1) 0x62-0x63 (1) +0x0060| 63 bb f5 7c 1d 3c 63 92 71 ff 3c bb 0a| c..|..G| fingerprint: "4da3b9235e3a2edb6cfa4b3eeb47d771" (raw bits) 0xc2-0xd2 (16) +0x00d0|d7 71 |.q | + | | | [11]{}: bound 0xd2-0xe5 (19) +0x00d0| 07 | . | timestamp_delta: 6 (1970-01-01 00:01:20) 0xd2-0xd3 (1) +0x00d0| 00 | . | id_prefix_size: 0 0xd3-0xd4 (1) +0x00d0| 01 | . | mode: "fingerprint" (1) 0xd4-0xd5 (1) +0x00d0| 1d 24 5c ef 39 f5 3c 5d 21 82 cc| .$\.9.<]!..| fingerprint: "1d245cef39f53c5d2182cc14e78455b1" (raw bits) 0xd5-0xe5 (16) +0x00e0|14 e7 84 55 b1 |...U. | + | | | [12]{}: bound 0xe5-0xf8 (19) +0x00e0| 07 | . | timestamp_delta: 6 (1970-01-01 00:01:25) 0xe5-0xe6 (1) +0x00e0| 00 | . | id_prefix_size: 0 0xe6-0xe7 (1) +0x00e0| 01 | . | mode: "fingerprint" (1) 0xe7-0xe8 (1) +0x00e0| 0b f5 b1 49 8f e8 6f 20| ...I..o | fingerprint: "0bf5b1498fe86f205b98362e29583e43" (raw bits) 0xe8-0xf8 (16) +0x00f0|5b 98 36 2e 29 58 3e 43 |[.6.)X>C | + | | | [13]{}: bound 0xf8-0x10b (19) +0x00f0| 07 | . | timestamp_delta: 6 (1970-01-01 00:01:30) 0xf8-0xf9 (1) +0x00f0| 00 | . | id_prefix_size: 0 0xf9-0xfa (1) +0x00f0| 01 | . | mode: "fingerprint" (1) 0xfa-0xfb (1) +0x00f0| b9 d4 28 1a 9f| ..(..| fingerprint: "b9d4281a9f6cad1e6129b20c1553121a" (raw bits) 0xfb-0x10b (16) +0x0100|6c ad 1e 61 29 b2 0c 15 53 12 1a |l..a)...S.. | + | | | [14]{}: bound 0x10b-0x11e (19) +0x0100| 07 | . | timestamp_delta: 6 (1970-01-01 00:01:35) 0x10b-0x10c (1) +0x0100| 00 | . | id_prefix_size: 0 0x10c-0x10d (1) +0x0100| 01 | . | mode: "fingerprint" (1) 0x10d-0x10e (1) +0x0100| ad ec| ..| fingerprint: "adecbf548009aba5ee81d3736d6ea44f" (raw bits) 0x10e-0x11e (16) +0x0110|bf 54 80 09 ab a5 ee 81 d3 73 6d 6e a4 4f |.T.......smn.O | + | | | [15]{}: bound 0x11e-0x131 (19) +0x0110| 06 | . | timestamp_delta: 5 (1970-01-01 00:01:39) 0x11e-0x11f (1) +0x0110| 00| .| id_prefix_size: 0 0x11f-0x120 (1) +0x0120|01 |. | mode: "fingerprint" (1) 0x120-0x121 (1) +0x0120| ce 07 d4 b3 d3 45 34 21 ee 9d f0 60 06 c1 b0| .....E4!...`...| fingerprint: "ce07d4b3d3453421ee9df06006c1b068" (raw bits) 0x121-0x131 (16) +0x0130|68 |h | + | | | [16]{}: bound 0x131-0x144 (19) +0x0130| 04 | . | timestamp_delta: 3 (1970-01-01 00:01:41) 0x131-0x132 (1) +0x0130| 00 | . | id_prefix_size: 0 0x132-0x133 (1) +0x0130| 01 | . | mode: "fingerprint" (1) 0x133-0x134 (1) +0x0130| 71 73 c7 b7 04 e9 da fe c9 79 de 32| qs.......y.2| fingerprint: "7173c7b704e9dafec979de325b5c0407" (raw bits) 0x134-0x144 (16) +0x0140|5b 5c 04 07 |[\.. | + | | | [17]{}: bound 0x144-0x157 (19) +0x0140| 04 | . | timestamp_delta: 3 (1970-01-01 00:01:43) 0x144-0x145 (1) +0x0140| 00 | . | id_prefix_size: 0 0x145-0x146 (1) +0x0140| 01 | . | mode: "fingerprint" (1) 0x146-0x147 (1) +0x0140| 20 79 7b db 19 37 76 0c d5| y{..7v..| fingerprint: "20797bdb1937760cd51c471fda41d7d1" (raw bits) 0x147-0x157 (16) +0x0150|1c 47 1f da 41 d7 d1 |.G..A.. | + | | | [18]{}: bound 0x157-0x16a (19) +0x0150| 04 | . | timestamp_delta: 3 (1970-01-01 00:01:45) 0x157-0x158 (1) +0x0150| 00 | . | id_prefix_size: 0 0x158-0x159 (1) +0x0150| 01 | . | mode: "fingerprint" (1) 0x159-0x15a (1) +0x0150| 90 e4 5e 9b 6c 6c| ..^.ll| fingerprint: "90e45e9b6c6c871130a41ff4ba83a91f" (raw bits) 0x15a-0x16a (16) +0x0160|87 11 30 a4 1f f4 ba 83 a9 1f |..0....... | + | | | [19]{}: bound 0x16a-0x17d (19) +0x0160| 03 | . | timestamp_delta: 2 (1970-01-01 00:01:46) 0x16a-0x16b (1) +0x0160| 00 | . | id_prefix_size: 0 0x16b-0x16c (1) +0x0160| 01 | . | mode: "fingerprint" (1) 0x16c-0x16d (1) +0x0160| 4e af 16| N..| fingerprint: "4eaf1631a94803214b707e3410498846" (raw bits) 0x16d-0x17d (16) +0x0170|31 a9 48 03 21 4b 70 7e 34 10 49 88 46 |1.H.!Kp~4.I.F | + | | | [20]{}: bound 0x17d-0x190 (19) +0x0170| 03 | . | timestamp_delta: 2 (1970-01-01 00:01:47) 0x17d-0x17e (1) +0x0170| 00 | . | id_prefix_size: 0 0x17e-0x17f (1) +0x0170| 01| .| mode: "fingerprint" (1) 0x17f-0x180 (1) +0x0180|d5 78 d2 97 2d 05 36 f4 0b e9 1b 74 c2 61 ec ee|.x..-.6....t.a..| fingerprint: "d578d2972d0536f40be91b74c261ecee" (raw bits) 0x180-0x190 (16) + | | | [21]{}: bound 0x190-0x1a3 (19) +0x0190|03 |. | timestamp_delta: 2 (1970-01-01 00:01:48) 0x190-0x191 (1) +0x0190| 00 | . | id_prefix_size: 0 0x191-0x192 (1) +0x0190| 01 | . | mode: "fingerprint" (1) 0x192-0x193 (1) +0x0190| 0e bf d7 96 24 d2 89 2c 7d 40 71 91 72| ....$..,}@q.r| fingerprint: "0ebfd79624d2892c7d40719172794e51" (raw bits) 0x193-0x1a3 (16) +0x01a0|79 4e 51 |yNQ | + | | | [22]{}: bound 0x1a3-0x1b6 (19) +0x01a0| 03 | . | timestamp_delta: 2 (1970-01-01 00:01:49) 0x1a3-0x1a4 (1) +0x01a0| 00 | . | id_prefix_size: 0 0x1a4-0x1a5 (1) +0x01a0| 01 | . | mode: "fingerprint" (1) 0x1a5-0x1a6 (1) +0x01a0| e4 c0 74 f8 03 8a 21 80 76 ef| ..t...!.v.| fingerprint: "e4c074f8038a218076ef742fbbd72e38" (raw bits) 0x1a6-0x1b6 (16) +0x01b0|74 2f bb d7 2e 38 |t/...8 | + | | | [23]{}: bound 0x1b6-0x1c9 (19) +0x01b0| 03 | . | timestamp_delta: 2 (1970-01-01 00:01:50) 0x1b6-0x1b7 (1) +0x01b0| 00 | . | id_prefix_size: 0 0x1b7-0x1b8 (1) +0x01b0| 01 | . | mode: "fingerprint" (1) 0x1b8-0x1b9 (1) +0x01b0| db 3f fa 62 12 e2 4c| .?.b..L| fingerprint: "db3ffa6212e24ca93ee910017aa18677" (raw bits) 0x1b9-0x1c9 (16) +0x01c0|a9 3e e9 10 01 7a a1 86 77 |.>...z..w | + | | | [24]{}: bound 0x1c9-0x1dc (19) +0x01c0| 03 | . | timestamp_delta: 2 (1970-01-01 00:01:51) 0x1c9-0x1ca (1) +0x01c0| 00 | . | id_prefix_size: 0 0x1ca-0x1cb (1) +0x01c0| 01 | . | mode: "fingerprint" (1) 0x1cb-0x1cc (1) +0x01c0| 4d d0 45 1e| M.E.| fingerprint: "4dd0451e95f25f3d38aa9e383777588f" (raw bits) 0x1cc-0x1dc (16) +0x01d0|95 f2 5f 3d 38 aa 9e 38 37 77 58 8f |.._=8..87wX. | + | | | [25]{}: bound 0x1dc-0x1ef (19) +0x01d0| 03 | . | timestamp_delta: 2 (1970-01-01 00:01:52) 0x1dc-0x1dd (1) +0x01d0| 00 | . | id_prefix_size: 0 0x1dd-0x1de (1) +0x01d0| 01 | . | mode: "fingerprint" (1) 0x1de-0x1df (1) +0x01d0| 10| .| fingerprint: "107640bce20a5f11b2be649ab54e13ce" (raw bits) 0x1df-0x1ef (16) +0x01e0|76 40 bc e2 0a 5f 11 b2 be 64 9a b5 4e 13 ce |v@..._...d..N.. | + | | | [26]{}: bound 0x1ef-0x202 (19) +0x01e0| 03| .| timestamp_delta: 2 (1970-01-01 00:01:53) 0x1ef-0x1f0 (1) +0x01f0|00 |. | id_prefix_size: 0 0x1f0-0x1f1 (1) +0x01f0| 01 | . | mode: "fingerprint" (1) 0x1f1-0x1f2 (1) +0x01f0| 66 95 38 80 3d be e5 14 bb 42 b9 6f 74 78| f.8.=....B.otx| fingerprint: "669538803dbee514bb42b96f74788b47" (raw bits) 0x1f2-0x202 (16) +0x0200|8b 47 |.G | + | | | [27]{}: bound 0x202-0x215 (19) +0x0200| 03 | . | timestamp_delta: 2 (1970-01-01 00:01:54) 0x202-0x203 (1) +0x0200| 00 | . | id_prefix_size: 0 0x203-0x204 (1) +0x0200| 01 | . | mode: "fingerprint" (1) 0x204-0x205 (1) +0x0200| 61 69 2b 52 ae 14 4a 89 d9 18 ab| ai+R..J....| fingerprint: "61692b52ae144a89d918abf929386a71" (raw bits) 0x205-0x215 (16) +0x0210|f9 29 38 6a 71 |.)8jq | + | | | [28]{}: bound 0x215-0x228 (19) +0x0210| 03 | . | timestamp_delta: 2 (1970-01-01 00:01:55) 0x215-0x216 (1) +0x0210| 00 | . | id_prefix_size: 0 0x216-0x217 (1) +0x0210| 01 | . | mode: "fingerprint" (1) 0x217-0x218 (1) +0x0210| c3 5a 9e f8 8e 95 3f 27| .Z....?'| fingerprint: "c35a9ef88e953f27b8268024902bd509" (raw bits) 0x218-0x228 (16) +0x0220|b8 26 80 24 90 2b d5 09 |.&.$.+.. | + | | | [29]{}: bound 0x228-0x23b (19) +0x0220| 03 | . | timestamp_delta: 2 (1970-01-01 00:01:56) 0x228-0x229 (1) +0x0220| 00 | . | id_prefix_size: 0 0x229-0x22a (1) +0x0220| 01 | . | mode: "fingerprint" (1) 0x22a-0x22b (1) +0x0220| 91 c4 c3 18 10| .....| fingerprint: "91c4c31810092287d3707d0f7458bfdd" (raw bits) 0x22b-0x23b (16) +0x0230|09 22 87 d3 70 7d 0f 74 58 bf dd |."..p}.tX.. | + | | | [30]{}: bound 0x23b-0x24e (19) +0x0230| 03 | . | timestamp_delta: 2 (1970-01-01 00:01:57) 0x23b-0x23c (1) +0x0230| 00 | . | id_prefix_size: 0 0x23c-0x23d (1) +0x0230| 01 | . | mode: "fingerprint" (1) 0x23d-0x23e (1) +0x0230| 47 29| G)| fingerprint: "4729532d64e675374a94511824050d05" (raw bits) 0x23e-0x24e (16) +0x0240|53 2d 64 e6 75 37 4a 94 51 18 24 05 0d 05 |S-d.u7J.Q.$... | + | | | [31]{}: bound 0x24e-0x261 (19) +0x0240| 53 | S | timestamp_delta: 82 (1970-01-01 00:03:18) 0x24e-0x24f (1) +0x0240| 00| .| id_prefix_size: 0 0x24f-0x250 (1) +0x0250|01 |. | mode: "fingerprint" (1) 0x250-0x251 (1) +0x0250| e2 78 eb 49 90 c5 ef 5b 15 66 87 14 c2 cc 09| .x.I...[.f.....| fingerprint: "e278eb4990c5ef5b15668714c2cc0918" (raw bits) 0x251-0x261 (16) +0x0260|18 |. | + | | | [32]{}: bound 0x261-0x265 (4) +0x0260| 74 | t | timestamp_delta: 115 (1970-01-01 00:05:12) 0x261-0x262 (1) +0x0260| 00 | . | id_prefix_size: 0 0x262-0x263 (1) +0x0260| 02 | . | mode: "idlist" (2) 0x263-0x264 (1) + | | | idlist{}: 0x264-0x265 (1) +0x0260| 00 | . | num: 0 0x264-0x265 (1) + | | | ids[0:0]: 0x265-0x265 (0) + | | | [33]{}: bound 0x265-0x269 (4) +0x0260| 74 | t | timestamp_delta: 115 (1970-01-01 00:07:06) 0x265-0x266 (1) +0x0260| 00 | . | id_prefix_size: 0 0x266-0x267 (1) +0x0260| 02 | . | mode: "idlist" (2) 0x267-0x268 (1) + | | | idlist{}: 0x268-0x269 (1) +0x0260| 00 | . | num: 0 0x268-0x269 (1) + | | | ids[0:0]: 0x269-0x269 (0) + | | | [34]{}: bound 0x269-0x26d (4) +0x0260| 74 | t | timestamp_delta: 115 (1970-01-01 00:09:00) 0x269-0x26a (1) +0x0260| 00 | . | id_prefix_size: 0 0x26a-0x26b (1) +0x0260| 02 | . | mode: "idlist" (2) 0x26b-0x26c (1) + | | | idlist{}: 0x26c-0x26d (1) +0x0260| 00 | . | num: 0 0x26c-0x26d (1) + | | | ids[0:0]: 0x26d-0x26d (0) + | | | [35]{}: bound 0x26d-0x271 (4) +0x0260| 74 | t | timestamp_delta: 115 (1970-01-01 00:10:54) 0x26d-0x26e (1) +0x0260| 00 | . | id_prefix_size: 0 0x26e-0x26f (1) +0x0260| 02| .| mode: "idlist" (2) 0x26f-0x270 (1) + | | | idlist{}: 0x270-0x271 (1) +0x0270|00 |. | num: 0 0x270-0x271 (1) + | | | ids[0:0]: 0x271-0x271 (0) + | | | [36]{}: bound 0x271-0x275 (4) +0x0270| 74 | t | timestamp_delta: 115 (1970-01-01 00:12:48) 0x271-0x272 (1) +0x0270| 00 | . | id_prefix_size: 0 0x272-0x273 (1) +0x0270| 02 | . | mode: "idlist" (2) 0x273-0x274 (1) + | | | idlist{}: 0x274-0x275 (1) +0x0270| 00 | . | num: 0 0x274-0x275 (1) + | | | ids[0:0]: 0x275-0x275 (0) + | | | [37]{}: bound 0x275-0x279 (4) +0x0270| 74 | t | timestamp_delta: 115 (1970-01-01 00:14:42) 0x275-0x276 (1) +0x0270| 00 | . | id_prefix_size: 0 0x276-0x277 (1) +0x0270| 02 | . | mode: "idlist" (2) 0x277-0x278 (1) + | | | idlist{}: 0x278-0x279 (1) +0x0270| 00 | . | num: 0 0x278-0x279 (1) + | | | ids[0:0]: 0x279-0x279 (0) + | | | [38]{}: bound 0x279-0x27d (4) +0x0270| 74 | t | timestamp_delta: 115 (1970-01-01 00:16:36) 0x279-0x27a (1) +0x0270| 00 | . | id_prefix_size: 0 0x27a-0x27b (1) +0x0270| 02 | . | mode: "idlist" (2) 0x27b-0x27c (1) + | | | idlist{}: 0x27c-0x27d (1) +0x0270| 00 | . | num: 0 0x27c-0x27d (1) + | | | ids[0:0]: 0x27d-0x27d (0) + | | | [39]{}: bound 0x27d-0x281 (4) +0x0270| 74 | t | timestamp_delta: 115 (1970-01-01 00:18:30) 0x27d-0x27e (1) +0x0270| 00 | . | id_prefix_size: 0 0x27e-0x27f (1) +0x0270| 02| .| mode: "idlist" (2) 0x27f-0x280 (1) + | | | idlist{}: 0x280-0x281 (1) +0x0280|00 |. | num: 0 0x280-0x281 (1) + | | | ids[0:0]: 0x281-0x281 (0) + | | | [40]{}: bound 0x281-0x285 (4) +0x0280| 74 | t | timestamp_delta: 115 (1970-01-01 00:20:24) 0x281-0x282 (1) +0x0280| 00 | . | id_prefix_size: 0 0x282-0x283 (1) +0x0280| 02 | . | mode: "idlist" (2) 0x283-0x284 (1) + | | | idlist{}: 0x284-0x285 (1) +0x0280| 00 | . | num: 0 0x284-0x285 (1) + | | | ids[0:0]: 0x285-0x285 (0) + | | | [41]{}: bound 0x285-0x289 (4) +0x0280| 74 | t | timestamp_delta: 115 (1970-01-01 00:22:18) 0x285-0x286 (1) +0x0280| 00 | . | id_prefix_size: 0 0x286-0x287 (1) +0x0280| 02 | . | mode: "idlist" (2) 0x287-0x288 (1) + | | | idlist{}: 0x288-0x289 (1) +0x0280| 00 | . | num: 0 0x288-0x289 (1) + | | | ids[0:0]: 0x289-0x289 (0) + | | | [42]{}: bound 0x289-0x28d (4) +0x0280| 74 | t | timestamp_delta: 115 (1970-01-01 00:24:12) 0x289-0x28a (1) +0x0280| 00 | . | id_prefix_size: 0 0x28a-0x28b (1) +0x0280| 02 | . | mode: "idlist" (2) 0x28b-0x28c (1) + | | | idlist{}: 0x28c-0x28d (1) +0x0280| 00 | . | num: 0 0x28c-0x28d (1) + | | | ids[0:0]: 0x28d-0x28d (0) + | | | [43]{}: bound 0x28d-0x291 (4) +0x0280| 74 | t | timestamp_delta: 115 (1970-01-01 00:26:06) 0x28d-0x28e (1) +0x0280| 00 | . | id_prefix_size: 0 0x28e-0x28f (1) +0x0280| 02| .| mode: "idlist" (2) 0x28f-0x290 (1) + | | | idlist{}: 0x290-0x291 (1) +0x0290|00 |. | num: 0 0x290-0x291 (1) + | | | ids[0:0]: 0x291-0x291 (0) + | | | [44]{}: bound 0x291-0x595 (772) +0x0290| 73 | s | timestamp_delta: 114 (1970-01-01 00:27:59) 0x291-0x292 (1) +0x0290| 00 | . | id_prefix_size: 0 0x292-0x293 (1) +0x0290| 02 | . | mode: "idlist" (2) 0x293-0x294 (1) + | | | idlist{}: 0x294-0x595 (769) +0x0290| 18 | . | num: 24 0x294-0x295 (1) + | | | ids[0:24]: 0x295-0x595 (768) +0x0290| 00 00 00 00 00 00 00 00 00 00 00| ...........| [0]: "0000000000000000000000000000000000000000000000000000000000001700" (raw bits) id 0x295-0x2b5 (32) +0x02a0|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x02b0|00 00 00 17 00 |..... | +0x02b0| 00 00 00 00 00 00 00 00 00 00 00| ...........| [1]: "0000000000000000000000000000000000000000000000000000000000001701" (raw bits) id 0x2b5-0x2d5 (32) +0x02c0|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x02d0|00 00 00 17 01 |..... | +0x02d0| 00 00 00 00 00 00 00 00 00 00 00| ...........| [2]: "0000000000000000000000000000000000000000000000000000000000001702" (raw bits) id 0x2d5-0x2f5 (32) +0x02e0|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x02f0|00 00 00 17 02 |..... | +0x02f0| 00 00 00 00 00 00 00 00 00 00 00| ...........| [3]: "0000000000000000000000000000000000000000000000000000000000001703" (raw bits) id 0x2f5-0x315 (32) +0x0300|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0310|00 00 00 17 03 |..... | +0x0310| 00 00 00 00 00 00 00 00 00 00 00| ...........| [4]: "0000000000000000000000000000000000000000000000000000000000001704" (raw bits) id 0x315-0x335 (32) +0x0320|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0330|00 00 00 17 04 |..... | +0x0330| 00 00 00 00 00 00 00 00 00 00 00| ...........| [5]: "0000000000000000000000000000000000000000000000000000000000001705" (raw bits) id 0x335-0x355 (32) +0x0340|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0350|00 00 00 17 05 |..... | +0x0350| 00 00 00 00 00 00 00 00 00 00 00| ...........| [6]: "0000000000000000000000000000000000000000000000000000000000001706" (raw bits) id 0x355-0x375 (32) +0x0360|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0370|00 00 00 17 06 |..... | +0x0370| 00 00 00 00 00 00 00 00 00 00 00| ...........| [7]: "0000000000000000000000000000000000000000000000000000000000001707" (raw bits) id 0x375-0x395 (32) +0x0380|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0390|00 00 00 17 07 |..... | +0x0390| 00 00 00 00 00 00 00 00 00 00 00| ...........| [8]: "0000000000000000000000000000000000000000000000000000000000001708" (raw bits) id 0x395-0x3b5 (32) +0x03a0|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x03b0|00 00 00 17 08 |..... | +0x03b0| 00 00 00 00 00 00 00 00 00 00 00| ...........| [9]: "0000000000000000000000000000000000000000000000000000000000001709" (raw bits) id 0x3b5-0x3d5 (32) +0x03c0|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x03d0|00 00 00 17 09 |..... | +0x03d0| 00 00 00 00 00 00 00 00 00 00 00| ...........| [10]: "0000000000000000000000000000000000000000000000000000000000001710" (raw bits) id 0x3d5-0x3f5 (32) +0x03e0|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x03f0|00 00 00 17 10 |..... | +0x03f0| 00 00 00 00 00 00 00 00 00 00 00| ...........| [11]: "0000000000000000000000000000000000000000000000000000000000001711" (raw bits) id 0x3f5-0x415 (32) +0x0400|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0410|00 00 00 17 11 |..... | +0x0410| 00 00 00 00 00 00 00 00 00 00 00| ...........| [12]: "0000000000000000000000000000000000000000000000000000000000001712" (raw bits) id 0x415-0x435 (32) +0x0420|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0430|00 00 00 17 12 |..... | +0x0430| 00 00 00 00 00 00 00 00 00 00 00| ...........| [13]: "0000000000000000000000000000000000000000000000000000000000001713" (raw bits) id 0x435-0x455 (32) +0x0440|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0450|00 00 00 17 13 |..... | +0x0450| 00 00 00 00 00 00 00 00 00 00 00| ...........| [14]: "0000000000000000000000000000000000000000000000000000000000001714" (raw bits) id 0x455-0x475 (32) +0x0460|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0470|00 00 00 17 14 |..... | +0x0470| 00 00 00 00 00 00 00 00 00 00 00| ...........| [15]: "0000000000000000000000000000000000000000000000000000000000001715" (raw bits) id 0x475-0x495 (32) +0x0480|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0490|00 00 00 17 15 |..... | +0x0490| 00 00 00 00 00 00 00 00 00 00 00| ...........| [16]: "0000000000000000000000000000000000000000000000000000000000001716" (raw bits) id 0x495-0x4b5 (32) +0x04a0|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x04b0|00 00 00 17 16 |..... | +0x04b0| 00 00 00 00 00 00 00 00 00 00 00| ...........| [17]: "0000000000000000000000000000000000000000000000000000000000001717" (raw bits) id 0x4b5-0x4d5 (32) +0x04c0|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x04d0|00 00 00 17 17 |..... | +0x04d0| 00 00 00 00 00 00 00 00 00 00 00| ...........| [18]: "0000000000000000000000000000000000000000000000000000000000001718" (raw bits) id 0x4d5-0x4f5 (32) +0x04e0|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x04f0|00 00 00 17 18 |..... | +0x04f0| 00 00 00 00 00 00 00 00 00 00 00| ...........| [19]: "0000000000000000000000000000000000000000000000000000000000001719" (raw bits) id 0x4f5-0x515 (32) +0x0500|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0510|00 00 00 17 19 |..... | +0x0510| 00 00 00 00 00 00 00 00 00 00 00| ...........| [20]: "0000000000000000000000000000000000000000000000000000000000001720" (raw bits) id 0x515-0x535 (32) +0x0520|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0530|00 00 00 17 20 |.... | +0x0530| 00 00 00 00 00 00 00 00 00 00 00| ...........| [21]: "0000000000000000000000000000000000000000000000000000000000001721" (raw bits) id 0x535-0x555 (32) +0x0540|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0550|00 00 00 17 21 |....! | +0x0550| 00 00 00 00 00 00 00 00 00 00 00| ...........| [22]: "0000000000000000000000000000000000000000000000000000000000001722" (raw bits) id 0x555-0x575 (32) +0x0560|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0570|00 00 00 17 22 |...." | +0x0570| 00 00 00 00 00 00 00 00 00 00 00| ...........| [23]: "0000000000000000000000000000000000000000000000000000000000001723" (raw bits) id 0x575-0x595 (32) +0x0580|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0590|00 00 00 17 23 |....# | + | | | [45]{}: bound 0x595-0x599 (4) +0x0590| 82 0b | .. | timestamp_delta: 266 (1970-01-01 00:32:24) 0x595-0x597 (2) +0x0590| 00 | . | id_prefix_size: 0 0x597-0x598 (1) +0x0590| 00 | . | mode: "skip" (0) 0x598-0x599 (1) + | | | [46]{}: bound 0x599-0x5ac (19) +0x0590| 09 | . | timestamp_delta: 8 (1970-01-01 00:32:31) 0x599-0x59a (1) +0x0590| 00 | . | id_prefix_size: 0 0x59a-0x59b (1) +0x0590| 01 | . | mode: "fingerprint" (1) 0x59b-0x59c (1) +0x0590| d9 ab d7 92| ....| fingerprint: "d9abd792cabed05dfc78ebaaf733a351" (raw bits) 0x59c-0x5ac (16) +0x05a0|ca be d0 5d fc 78 eb aa f7 33 a3 51 |...].x...3.Q | + | | | [47]{}: bound 0x5ac-0x5bf (19) +0x05a0| 09 | . | timestamp_delta: 8 (1970-01-01 00:32:38) 0x5ac-0x5ad (1) +0x05a0| 00 | . | id_prefix_size: 0 0x5ad-0x5ae (1) +0x05a0| 01 | . | mode: "fingerprint" (1) 0x5ae-0x5af (1) +0x05a0| 65| e| fingerprint: "653646a92fd16e578a7e022fa5e69d82" (raw bits) 0x5af-0x5bf (16) +0x05b0|36 46 a9 2f d1 6e 57 8a 7e 02 2f a5 e6 9d 82 |6F./.nW.~./.... | + | | | [48]{}: bound 0x5bf-0x5d2 (19) +0x05b0| 09| .| timestamp_delta: 8 (1970-01-01 00:32:45) 0x5bf-0x5c0 (1) +0x05c0|00 |. | id_prefix_size: 0 0x5c0-0x5c1 (1) +0x05c0| 01 | . | mode: "fingerprint" (1) 0x5c1-0x5c2 (1) +0x05c0| 3f e6 2c 26 96 e4 f1 f7 64 de 7f ff c4 17| ?.,&....d.....| fingerprint: "3fe62c2696e4f1f764de7fffc417b9ab" (raw bits) 0x5c2-0x5d2 (16) +0x05d0|b9 ab |.. | + | | | [49]{}: bound 0x5d2-0x5e5 (19) +0x05d0| 09 | . | timestamp_delta: 8 (1970-01-01 00:32:52) 0x5d2-0x5d3 (1) +0x05d0| 00 | . | id_prefix_size: 0 0x5d3-0x5d4 (1) +0x05d0| 01 | . | mode: "fingerprint" (1) 0x5d4-0x5d5 (1) +0x05d0| 1d 0f 67 d2 3b 92 16 73 e5 3f ad| ..g.;..s.?.| fingerprint: "1d0f67d23b921673e53fade4f0eba84c" (raw bits) 0x5d5-0x5e5 (16) +0x05e0|e4 f0 eb a8 4c |....L | + | | | [50]{}: bound 0x5e5-0x5f8 (19) +0x05e0| 08 | . | timestamp_delta: 7 (1970-01-01 00:32:58) 0x5e5-0x5e6 (1) +0x05e0| 00 | . | id_prefix_size: 0 0x5e6-0x5e7 (1) +0x05e0| 01 | . | mode: "fingerprint" (1) 0x5e7-0x5e8 (1) +0x05e0| d9 7d a8 15 19 ff 2f ad| .}..../.| fingerprint: "d97da81519ff2fad37ca7a875699ecd7" (raw bits) 0x5e8-0x5f8 (16) +0x05f0|37 ca 7a 87 56 99 ec d7 |7.z.V... | + | | | [51]{}: bound 0x5f8-0x60b (19) +0x05f0| 08 | . | timestamp_delta: 7 (1970-01-01 00:33:04) 0x5f8-0x5f9 (1) +0x05f0| 00 | . | id_prefix_size: 0 0x5f9-0x5fa (1) +0x05f0| 01 | . | mode: "fingerprint" (1) 0x5fa-0x5fb (1) +0x05f0| ad 13 64 45 06| ..dE.| fingerprint: "ad1364450644680e3057ee3ba3cce43f" (raw bits) 0x5fb-0x60b (16) +0x0600|44 68 0e 30 57 ee 3b a3 cc e4 3f |Dh.0W.;...? | + | | | [52]{}: bound 0x60b-0x61e (19) +0x0600| 08 | . | timestamp_delta: 7 (1970-01-01 00:33:10) 0x60b-0x60c (1) +0x0600| 00 | . | id_prefix_size: 0 0x60c-0x60d (1) +0x0600| 01 | . | mode: "fingerprint" (1) 0x60d-0x60e (1) +0x0600| b5 66| .f| fingerprint: "b566b73ff10c6c36c9c6e1a4a937fa16" (raw bits) 0x60e-0x61e (16) +0x0610|b7 3f f1 0c 6c 36 c9 c6 e1 a4 a9 37 fa 16 |.?..l6.....7.. | + | | | [53]{}: bound 0x61e-0x631 (19) +0x0610| 08 | . | timestamp_delta: 7 (1970-01-01 00:33:16) 0x61e-0x61f (1) +0x0610| 00| .| id_prefix_size: 0 0x61f-0x620 (1) +0x0620|01 |. | mode: "fingerprint" (1) 0x620-0x621 (1) +0x0620| 18 01 9b f5 1b 81 b4 c1 55 a3 06 98 24 7d 3b| ........U...$};| fingerprint: "18019bf51b81b4c155a30698247d3bda" (raw bits) 0x621-0x631 (16) +0x0630|da |. | + | | | [54]{}: bound 0x631-0x644 (19) +0x0630| 08 | . | timestamp_delta: 7 (1970-01-01 00:33:22) 0x631-0x632 (1) +0x0630| 00 | . | id_prefix_size: 0 0x632-0x633 (1) +0x0630| 01 | . | mode: "fingerprint" (1) 0x633-0x634 (1) +0x0630| c2 54 3a dc de c6 1f 5c a5 77 47 a9| .T:....\.wG.| fingerprint: "c2543adcdec61f5ca57747a95f2757a3" (raw bits) 0x634-0x644 (16) +0x0640|5f 27 57 a3 |_'W. | + | | | [55]{}: bound 0x644-0x657 (19) +0x0640| 08 | . | timestamp_delta: 7 (1970-01-01 00:33:28) 0x644-0x645 (1) +0x0640| 00 | . | id_prefix_size: 0 0x645-0x646 (1) +0x0640| 01 | . | mode: "fingerprint" (1) 0x646-0x647 (1) +0x0640| 59 33 54 e4 fc eb 61 ce f2| Y3T...a..| fingerprint: "593354e4fceb61cef2dd34a3a4a95519" (raw bits) 0x647-0x657 (16) +0x0650|dd 34 a3 a4 a9 55 19 |.4...U. | + | | | [56]{}: bound 0x657-0x66a (19) +0x0650| 08 | . | timestamp_delta: 7 (1970-01-01 00:33:34) 0x657-0x658 (1) +0x0650| 00 | . | id_prefix_size: 0 0x658-0x659 (1) +0x0650| 01 | . | mode: "fingerprint" (1) 0x659-0x65a (1) +0x0650| 49 f7 f8 8a 9c bf| I.....| fingerprint: "49f7f88a9cbff628b5f3633ee281b220" (raw bits) 0x65a-0x66a (16) +0x0660|f6 28 b5 f3 63 3e e2 81 b2 20 |.(..c>... | + | | | [57]{}: bound 0x66a-0x67d (19) +0x0660| 08 | . | timestamp_delta: 7 (1970-01-01 00:33:40) 0x66a-0x66b (1) +0x0660| 00 | . | id_prefix_size: 0 0x66b-0x66c (1) +0x0660| 01 | . | mode: "fingerprint" (1) 0x66c-0x66d (1) +0x0660| c5 ee 00| ...| fingerprint: "c5ee0031090734fb4047b1e148ca59ad" (raw bits) 0x66d-0x67d (16) +0x0670|31 09 07 34 fb 40 47 b1 e1 48 ca 59 ad |1..4.@G..H.Y. | + | | | [58]{}: bound 0x67d-0x690 (19) +0x0670| 08 | . | timestamp_delta: 7 (1970-01-01 00:33:46) 0x67d-0x67e (1) +0x0670| 00 | . | id_prefix_size: 0 0x67e-0x67f (1) +0x0670| 01| .| mode: "fingerprint" (1) 0x67f-0x680 (1) +0x0680|29 ad e2 61 b2 4b 5c eb 02 26 eb 04 af 8d 92 5a|)..a.K\..&.....Z| fingerprint: "29ade261b24b5ceb0226eb04af8d925a" (raw bits) 0x680-0x690 (16) + | | | [59]{}: bound 0x690-0x6a3 (19) +0x0690|08 |. | timestamp_delta: 7 (1970-01-01 00:33:52) 0x690-0x691 (1) +0x0690| 00 | . | id_prefix_size: 0 0x691-0x692 (1) +0x0690| 01 | . | mode: "fingerprint" (1) 0x692-0x693 (1) +0x0690| f3 53 24 69 0f 7d d9 a7 89 e6 41 f5 96| .S$i.}....A..| fingerprint: "f35324690f7dd9a789e641f5960a631b" (raw bits) 0x693-0x6a3 (16) +0x06a0|0a 63 1b |.c. | + | | | [60]{}: bound 0x6a3-0x6b6 (19) +0x06a0| 08 | . | timestamp_delta: 7 (1970-01-01 00:33:58) 0x6a3-0x6a4 (1) +0x06a0| 00 | . | id_prefix_size: 0 0x6a4-0x6a5 (1) +0x06a0| 01 | . | mode: "fingerprint" (1) 0x6a5-0x6a6 (1) +0x06a0| 40 5f a9 00 fb a5 5d 41 2f 4a| @_....]A/J| fingerprint: "405fa900fba55d412f4a7ca29475ea50" (raw bits) 0x6a6-0x6b6 (16) +0x06b0|7c a2 94 75 ea 50 ||..u.P | + | | | [61]{}: bound 0x6b6-0x6c9 (19) +0x06b0| 08 | . | timestamp_delta: 7 (1970-01-01 00:34:04) 0x6b6-0x6b7 (1) +0x06b0| 00 | . | id_prefix_size: 0 0x6b7-0x6b8 (1) +0x06b0| 01 | . | mode: "fingerprint" (1) 0x6b8-0x6b9 (1) +0x06b0| 12 4f a3 97 02 a9 9c| .O.....| fingerprint: "124fa39702a99ce518ff02b45be6df9d" (raw bits) 0x6b9-0x6c9 (16) +0x06c0|e5 18 ff 02 b4 5b e6 df 9d |.....[... | + | | | [62]{}: bound 0x6c9-0x6cd (4) +0x06c0| 86 25 | .% | timestamp_delta: 804 (1970-01-01 00:47:27) 0x6c9-0x6cb (2) +0x06c0| 00 | . | id_prefix_size: 0 0x6cb-0x6cc (1) +0x06c0| 00 | . | mode: "skip" (0) 0x6cc-0x6cd (1) + | | | [63]{}: bound 0x6cd-0x6e0 (19) +0x06c0| 08 | . | timestamp_delta: 7 (1970-01-01 00:47:33) 0x6cd-0x6ce (1) +0x06c0| 00 | . | id_prefix_size: 0 0x6ce-0x6cf (1) +0x06c0| 01| .| mode: "fingerprint" (1) 0x6cf-0x6d0 (1) +0x06d0|c9 28 15 e7 0a 04 ca f4 61 10 33 d0 78 c3 de b4|.(......a.3.x...| fingerprint: "c92815e70a04caf4611033d078c3deb4" (raw bits) 0x6d0-0x6e0 (16) + | | | [64]{}: bound 0x6e0-0x6f3 (19) +0x06e0|08 |. | timestamp_delta: 7 (1970-01-01 00:47:39) 0x6e0-0x6e1 (1) +0x06e0| 00 | . | id_prefix_size: 0 0x6e1-0x6e2 (1) +0x06e0| 01 | . | mode: "fingerprint" (1) 0x6e2-0x6e3 (1) +0x06e0| 36 31 05 0a cc 18 b6 55 52 56 34 03 f9| 61.....URV4..| fingerprint: "3631050acc18b65552563403f963d1df" (raw bits) 0x6e3-0x6f3 (16) +0x06f0|63 d1 df |c.. | + | | | [65]{}: bound 0x6f3-0x706 (19) +0x06f0| 08 | . | timestamp_delta: 7 (1970-01-01 00:47:45) 0x6f3-0x6f4 (1) +0x06f0| 00 | . | id_prefix_size: 0 0x6f4-0x6f5 (1) +0x06f0| 01 | . | mode: "fingerprint" (1) 0x6f5-0x6f6 (1) +0x06f0| fe 40 73 ec 4d 7b 18 eb a1 76| .@s.M{...v| fingerprint: "fe4073ec4d7b18eba176efbec0315f3d" (raw bits) 0x6f6-0x706 (16) +0x0700|ef be c0 31 5f 3d |...1_= | + | | | [66]{}: bound 0x706-0x719 (19) +0x0700| 08 | . | timestamp_delta: 7 (1970-01-01 00:47:51) 0x706-0x707 (1) +0x0700| 00 | . | id_prefix_size: 0 0x707-0x708 (1) +0x0700| 01 | . | mode: "fingerprint" (1) 0x708-0x709 (1) +0x0700| 43 11 5d 3e b6 5c f8| C.]>.\.| fingerprint: "43115d3eb65cf8e4cd6ee0cb8e91e9c9" (raw bits) 0x709-0x719 (16) +0x0710|e4 cd 6e e0 cb 8e 91 e9 c9 |..n...... | + | | | [67]{}: bound 0x719-0x72c (19) +0x0710| 08 | . | timestamp_delta: 7 (1970-01-01 00:47:57) 0x719-0x71a (1) +0x0710| 00 | . | id_prefix_size: 0 0x71a-0x71b (1) +0x0710| 01 | . | mode: "fingerprint" (1) 0x71b-0x71c (1) +0x0710| aa 64 17 96| .d..| fingerprint: "aa641796d50d854bb2dc36170b644368" (raw bits) 0x71c-0x72c (16) +0x0720|d5 0d 85 4b b2 dc 36 17 0b 64 43 68 |...K..6..dCh | + | | | [68]{}: bound 0x72c-0x73f (19) +0x0720| 08 | . | timestamp_delta: 7 (1970-01-01 00:48:03) 0x72c-0x72d (1) +0x0720| 00 | . | id_prefix_size: 0 0x72d-0x72e (1) +0x0720| 01 | . | mode: "fingerprint" (1) 0x72e-0x72f (1) +0x0720| 8d| .| fingerprint: "8d9d1e412e225581ce2075fd20d965fd" (raw bits) 0x72f-0x73f (16) +0x0730|9d 1e 41 2e 22 55 81 ce 20 75 fd 20 d9 65 fd |..A."U.. u. .e. | + | | | [69]{}: bound 0x73f-0x752 (19) +0x0730| 07| .| timestamp_delta: 6 (1970-01-01 00:48:08) 0x73f-0x740 (1) +0x0740|00 |. | id_prefix_size: 0 0x740-0x741 (1) +0x0740| 01 | . | mode: "fingerprint" (1) 0x741-0x742 (1) +0x0740| e7 1b 7d 18 e5 ee 03 bb bb 23 cc 1a 4b 94| ..}......#..K.| fingerprint: "e71b7d18e5ee03bbbb23cc1a4b943251" (raw bits) 0x742-0x752 (16) +0x0750|32 51 |2Q | + | | | [70]{}: bound 0x752-0x765 (19) +0x0750| 07 | . | timestamp_delta: 6 (1970-01-01 00:48:13) 0x752-0x753 (1) +0x0750| 00 | . | id_prefix_size: 0 0x753-0x754 (1) +0x0750| 01 | . | mode: "fingerprint" (1) 0x754-0x755 (1) +0x0750| 44 0b 2b 50 12 9a eb 72 94 d2 fd| D.+P...r...| fingerprint: "440b2b50129aeb7294d2fd19c884e7cd" (raw bits) 0x755-0x765 (16) +0x0760|19 c8 84 e7 cd |..... | + | | | [71]{}: bound 0x765-0x778 (19) +0x0760| 07 | . | timestamp_delta: 6 (1970-01-01 00:48:18) 0x765-0x766 (1) +0x0760| 00 | . | id_prefix_size: 0 0x766-0x767 (1) +0x0760| 01 | . | mode: "fingerprint" (1) 0x767-0x768 (1) +0x0760| b8 9b 03 c6 da 8a ff bc| ........| fingerprint: "b89b03c6da8affbca1f90541ac77a85d" (raw bits) 0x768-0x778 (16) +0x0770|a1 f9 05 41 ac 77 a8 5d |...A.w.] | + | | | [72]{}: bound 0x778-0x78b (19) +0x0770| 07 | . | timestamp_delta: 6 (1970-01-01 00:48:23) 0x778-0x779 (1) +0x0770| 00 | . | id_prefix_size: 0 0x779-0x77a (1) +0x0770| 01 | . | mode: "fingerprint" (1) 0x77a-0x77b (1) +0x0770| e6 4f aa 52 c8| .O.R.| fingerprint: "e64faa52c87f2d7167139de6a66e067c" (raw bits) 0x77b-0x78b (16) +0x0780|7f 2d 71 67 13 9d e6 a6 6e 06 7c |.-qg....n.| | + | | | [73]{}: bound 0x78b-0x79e (19) +0x0780| 07 | . | timestamp_delta: 6 (1970-01-01 00:48:28) 0x78b-0x78c (1) +0x0780| 00 | . | id_prefix_size: 0 0x78c-0x78d (1) +0x0780| 01 | . | mode: "fingerprint" (1) 0x78d-0x78e (1) +0x0780| e6 80| ..| fingerprint: "e68007eaa2035fb01d505f580287e9a1" (raw bits) 0x78e-0x79e (16) +0x0790|07 ea a2 03 5f b0 1d 50 5f 58 02 87 e9 a1 |...._..P_X.... | + | | | [74]{}: bound 0x79e-0x7b1 (19) +0x0790| 07 | . | timestamp_delta: 6 (1970-01-01 00:48:33) 0x79e-0x79f (1) +0x0790| 00| .| id_prefix_size: 0 0x79f-0x7a0 (1) +0x07a0|01 |. | mode: "fingerprint" (1) 0x7a0-0x7a1 (1) +0x07a0| 15 96 1f 8e 6b ba 20 86 c2 98 90 b4 97 63 85| ....k. ......c.| fingerprint: "15961f8e6bba2086c29890b49763859a" (raw bits) 0x7a1-0x7b1 (16) +0x07b0|9a |. | + | | | [75]{}: bound 0x7b1-0x7c4 (19) +0x07b0| 07 | . | timestamp_delta: 6 (1970-01-01 00:48:38) 0x7b1-0x7b2 (1) +0x07b0| 00 | . | id_prefix_size: 0 0x7b2-0x7b3 (1) +0x07b0| 01 | . | mode: "fingerprint" (1) 0x7b3-0x7b4 (1) +0x07b0| bc 68 dc 5b 90 17 0b 80 34 81 dd cd| .h.[....4...| fingerprint: "bc68dc5b90170b803481ddcda0651634" (raw bits) 0x7b4-0x7c4 (16) +0x07c0|a0 65 16 34 |.e.4 | + | | | [76]{}: bound 0x7c4-0x7d7 (19) +0x07c0| 07 | . | timestamp_delta: 6 (1970-01-01 00:48:43) 0x7c4-0x7c5 (1) +0x07c0| 00 | . | id_prefix_size: 0 0x7c5-0x7c6 (1) +0x07c0| 01 | . | mode: "fingerprint" (1) 0x7c6-0x7c7 (1) +0x07c0| de 49 c3 e4 25 1e a2 e9 fb| .I..%....| fingerprint: "de49c3e4251ea2e9fb97357d90074b7a" (raw bits) 0x7c7-0x7d7 (16) +0x07d0|97 35 7d 90 07 4b 7a |.5}..Kz | + | | | [77]{}: bound 0x7d7-0x7ea (19) +0x07d0| 07 | . | timestamp_delta: 6 (1970-01-01 00:48:48) 0x7d7-0x7d8 (1) +0x07d0| 00 | . | id_prefix_size: 0 0x7d8-0x7d9 (1) +0x07d0| 01 | . | mode: "fingerprint" (1) 0x7d9-0x7da (1) +0x07d0| 2a cb 89 81 38 09| *...8.| fingerprint: "2acb8981380911f8a58d5051e5ca299b" (raw bits) 0x7da-0x7ea (16) +0x07e0|11 f8 a5 8d 50 51 e5 ca 29 9b |....PQ..). | + | | | [78]{}: bound 0x7ea-0x7fd (19) +0x07e0| 07 | . | timestamp_delta: 6 (1970-01-01 00:48:53) 0x7ea-0x7eb (1) +0x07e0| 00 | . | id_prefix_size: 0 0x7eb-0x7ec (1) +0x07e0| 01 | . | mode: "fingerprint" (1) 0x7ec-0x7ed (1) +0x07e0| 64 e8 d4| d..| fingerprint: "64e8d4d0c2e8312d007832fa6fa9b5fa" (raw bits) 0x7ed-0x7fd (16) +0x07f0|d0 c2 e8 31 2d 00 78 32 fa 6f a9 b5 fa |...1-.x2.o... | + | | | [79]{}: bound 0x7fd-0x801 (4) +0x07f0| 82 7d | .} | timestamp_delta: 380 (1970-01-01 00:55:12) 0x7fd-0x7ff (2) +0x07f0| 00| .| id_prefix_size: 0 0x7ff-0x800 (1) +0x0800|00 |. | mode: "skip" (0) 0x800-0x801 (1) + | | | [80]{}: bound 0x801-0x905 (260) +0x0800| 1b | . | timestamp_delta: 26 (1970-01-01 00:55:37) 0x801-0x802 (1) +0x0800| 00 | . | id_prefix_size: 0 0x802-0x803 (1) +0x0800| 02 | . | mode: "idlist" (2) 0x803-0x804 (1) + | | | idlist{}: 0x804-0x905 (257) +0x0800| 08 | . | num: 8 0x804-0x805 (1) + | | | ids[0:8]: 0x805-0x905 (256) +0x0800| 00 00 00 00 00 00 00 00 00 00 00| ...........| [0]: "0000000000000000000000000000000000000000000000000000000000003392" (raw bits) id 0x805-0x825 (32) +0x0810|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0820|00 00 00 33 92 |...3. | +0x0820| 00 00 00 00 00 00 00 00 00 00 00| ...........| [1]: "0000000000000000000000000000000000000000000000000000000000003393" (raw bits) id 0x825-0x845 (32) +0x0830|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0840|00 00 00 33 93 |...3. | +0x0840| 00 00 00 00 00 00 00 00 00 00 00| ...........| [2]: "0000000000000000000000000000000000000000000000000000000000003394" (raw bits) id 0x845-0x865 (32) +0x0850|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0860|00 00 00 33 94 |...3. | +0x0860| 00 00 00 00 00 00 00 00 00 00 00| ...........| [3]: "0000000000000000000000000000000000000000000000000000000000003395" (raw bits) id 0x865-0x885 (32) +0x0870|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0880|00 00 00 33 95 |...3. | +0x0880| 00 00 00 00 00 00 00 00 00 00 00| ...........| [4]: "0000000000000000000000000000000000000000000000000000000000003396" (raw bits) id 0x885-0x8a5 (32) +0x0890|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x08a0|00 00 00 33 96 |...3. | +0x08a0| 00 00 00 00 00 00 00 00 00 00 00| ...........| [5]: "0000000000000000000000000000000000000000000000000000000000003397" (raw bits) id 0x8a5-0x8c5 (32) +0x08b0|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x08c0|00 00 00 33 97 |...3. | +0x08c0| 00 00 00 00 00 00 00 00 00 00 00| ...........| [6]: "0000000000000000000000000000000000000000000000000000000000003398" (raw bits) id 0x8c5-0x8e5 (32) +0x08d0|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x08e0|00 00 00 33 98 |...3. | +0x08e0| 00 00 00 00 00 00 00 00 00 00 00| ...........| [7]: "0000000000000000000000000000000000000000000000000000000000003399" (raw bits) id 0x8e5-0x905 (32) +0x08f0|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0900|00 00 00 33 99 |...3. | + | | | [81]{}: bound 0x905-0x909 (4) +0x0900| 1b | . | timestamp_delta: 26 (1970-01-01 00:56:02) 0x905-0x906 (1) +0x0900| 00 | . | id_prefix_size: 0 0x906-0x907 (1) +0x0900| 02 | . | mode: "idlist" (2) 0x907-0x908 (1) + | | | idlist{}: 0x908-0x909 (1) +0x0900| 00 | . | num: 0 0x908-0x909 (1) + | | | ids[0:0]: 0x909-0x909 (0) + | | | [82]{}: bound 0x909-0x90d (4) +0x0900| 1b | . | timestamp_delta: 26 (1970-01-01 00:56:27) 0x909-0x90a (1) +0x0900| 00 | . | id_prefix_size: 0 0x90a-0x90b (1) +0x0900| 02 | . | mode: "idlist" (2) 0x90b-0x90c (1) + | | | idlist{}: 0x90c-0x90d (1) +0x0900| 00 | . | num: 0 0x90c-0x90d (1) + | | | ids[0:0]: 0x90d-0x90d (0) + | | | [83]{}: bound 0x90d-0x911 (4) +0x0900| 1b | . | timestamp_delta: 26 (1970-01-01 00:56:52) 0x90d-0x90e (1) +0x0900| 00 | . | id_prefix_size: 0 0x90e-0x90f (1) +0x0900| 02| .| mode: "idlist" (2) 0x90f-0x910 (1) + | | | idlist{}: 0x910-0x911 (1) +0x0910|00 |. | num: 0 0x910-0x911 (1) + | | | ids[0:0]: 0x911-0x911 (0) + | | | [84]{}: bound 0x911-0x915 (4) +0x0910| 1b | . | timestamp_delta: 26 (1970-01-01 00:57:17) 0x911-0x912 (1) +0x0910| 00 | . | id_prefix_size: 0 0x912-0x913 (1) +0x0910| 02 | . | mode: "idlist" (2) 0x913-0x914 (1) + | | | idlist{}: 0x914-0x915 (1) +0x0910| 00 | . | num: 0 0x914-0x915 (1) + | | | ids[0:0]: 0x915-0x915 (0) + | | | [85]{}: bound 0x915-0x919 (4) +0x0910| 1b | . | timestamp_delta: 26 (1970-01-01 00:57:42) 0x915-0x916 (1) +0x0910| 00 | . | id_prefix_size: 0 0x916-0x917 (1) +0x0910| 02 | . | mode: "idlist" (2) 0x917-0x918 (1) + | | | idlist{}: 0x918-0x919 (1) +0x0910| 00 | . | num: 0 0x918-0x919 (1) + | | | ids[0:0]: 0x919-0x919 (0) + | | | [86]{}: bound 0x919-0x91d (4) +0x0910| 1b | . | timestamp_delta: 26 (1970-01-01 00:58:07) 0x919-0x91a (1) +0x0910| 00 | . | id_prefix_size: 0 0x91a-0x91b (1) +0x0910| 02 | . | mode: "idlist" (2) 0x91b-0x91c (1) + | | | idlist{}: 0x91c-0x91d (1) +0x0910| 00 | . | num: 0 0x91c-0x91d (1) + | | | ids[0:0]: 0x91d-0x91d (0) + | | | [87]{}: bound 0x91d-0x931 (20) +0x0910| 9a 66 | .f | timestamp_delta: 3429 (1970-01-01 01:55:15) 0x91d-0x91f (2) +0x0910| 00| .| id_prefix_size: 0 0x91f-0x920 (1) +0x0920|01 |. | mode: "fingerprint" (1) 0x920-0x921 (1) +0x0920| b6 31 63 d6 ab b8 79 9d d9 9d 61 3d f4 5b bb| .1c...y...a=.[.| fingerprint: "b63163d6abb8799dd99d613df45bbb92" (raw bits) 0x921-0x931 (16) +0x0930|92 |. | + | | | [88]{}: bound 0x931-0x944 (19) +0x0930| 04 | . | timestamp_delta: 3 (1970-01-01 01:55:17) 0x931-0x932 (1) +0x0930| 00 | . | id_prefix_size: 0 0x932-0x933 (1) +0x0930| 01 | . | mode: "fingerprint" (1) 0x933-0x934 (1) +0x0930| d1 30 76 e1 57 40 30 68 6e 62 f5 e8| .0v.W@0hnb..| fingerprint: "d13076e1574030686e62f5e8e3f5c022" (raw bits) 0x934-0x944 (16) +0x0940|e3 f5 c0 22 |..." | + | | | [89]{}: bound 0x944-0x957 (19) +0x0940| 04 | . | timestamp_delta: 3 (1970-01-01 01:55:19) 0x944-0x945 (1) +0x0940| 00 | . | id_prefix_size: 0 0x945-0x946 (1) +0x0940| 01 | . | mode: "fingerprint" (1) 0x946-0x947 (1) +0x0940| 2d 79 5b bf 59 32 30 fb cc| -y[.Y20..| fingerprint: "2d795bbf593230fbccd2b996cc212a29" (raw bits) 0x947-0x957 (16) +0x0950|d2 b9 96 cc 21 2a 29 |....!*) | + | | | [90]{}: bound 0x957-0x96a (19) +0x0950| 04 | . | timestamp_delta: 3 (1970-01-01 01:55:21) 0x957-0x958 (1) +0x0950| 00 | . | id_prefix_size: 0 0x958-0x959 (1) +0x0950| 01 | . | mode: "fingerprint" (1) 0x959-0x95a (1) +0x0950| e1 dd 67 1b 24 ce| ..g.$.| fingerprint: "e1dd671b24ce46e438893589c8a9bd02" (raw bits) 0x95a-0x96a (16) +0x0960|46 e4 38 89 35 89 c8 a9 bd 02 |F.8.5..... | + | | | [91]{}: bound 0x96a-0x97d (19) +0x0960| 04 | . | timestamp_delta: 3 (1970-01-01 01:55:23) 0x96a-0x96b (1) +0x0960| 00 | . | id_prefix_size: 0 0x96b-0x96c (1) +0x0960| 01 | . | mode: "fingerprint" (1) 0x96c-0x96d (1) +0x0960| 81 5f 4c| ._L| fingerprint: "815f4c037984dbc47915d53f2879f494" (raw bits) 0x96d-0x97d (16) +0x0970|03 79 84 db c4 79 15 d5 3f 28 79 f4 94 |.y...y..?(y.. | + | | | [92]{}: bound 0x97d-0x990 (19) +0x0970| 04 | . | timestamp_delta: 3 (1970-01-01 01:55:25) 0x97d-0x97e (1) +0x0970| 00 | . | id_prefix_size: 0 0x97e-0x97f (1) +0x0970| 01| .| mode: "fingerprint" (1) 0x97f-0x980 (1) +0x0980|61 9a 1d 2f bb 6d 3a a8 de b4 7b ce 40 3c 68 0d|a../.m:...{.@g\: | + | | | [97]{}: bound 0x9dc-0x9ef (19) +0x09d0| 04 | . | timestamp_delta: 3 (1970-01-01 01:55:35) 0x9dc-0x9dd (1) +0x09d0| 00 | . | id_prefix_size: 0 0x9dd-0x9de (1) +0x09d0| 01 | . | mode: "fingerprint" (1) 0x9de-0x9df (1) +0x09d0| 84| .| fingerprint: "84b401a7c0ccd20e0a4a2fef0f8c37a3" (raw bits) 0x9df-0x9ef (16) +0x09e0|b4 01 a7 c0 cc d2 0e 0a 4a 2f ef 0f 8c 37 a3 |........J/...7. | + | | | [98]{}: bound 0x9ef-0xa02 (19) +0x09e0| 04| .| timestamp_delta: 3 (1970-01-01 01:55:37) 0x9ef-0x9f0 (1) +0x09f0|00 |. | id_prefix_size: 0 0x9f0-0x9f1 (1) +0x09f0| 01 | . | mode: "fingerprint" (1) 0x9f1-0x9f2 (1) +0x09f0| 9f 06 34 55 e5 ea 2e fe e8 c1 be 23 1a d9| ..4U.......#..| fingerprint: "9f063455e5ea2efee8c1be231ad9f123" (raw bits) 0x9f2-0xa02 (16) +0x0a00|f1 23 |.# | + | | | [99]{}: bound 0xa02-0xa15 (19) +0x0a00| 04 | . | timestamp_delta: 3 (1970-01-01 01:55:39) 0xa02-0xa03 (1) +0x0a00| 00 | . | id_prefix_size: 0 0xa03-0xa04 (1) +0x0a00| 01 | . | mode: "fingerprint" (1) 0xa04-0xa05 (1) +0x0a00| e9 00 b1 6c b4 d1 fa 4b 97 50 dd| ...l...K.P.| fingerprint: "e900b16cb4d1fa4b9750ddb9e41f45d3" (raw bits) 0xa05-0xa15 (16) +0x0a10|b9 e4 1f 45 d3 |...E. | + | | | [100]{}: bound 0xa15-0xa28 (19) +0x0a10| 04 | . | timestamp_delta: 3 (1970-01-01 01:55:41) 0xa15-0xa16 (1) +0x0a10| 00 | . | id_prefix_size: 0 0xa16-0xa17 (1) +0x0a10| 01 | . | mode: "fingerprint" (1) 0xa17-0xa18 (1) +0x0a10| 45 30 3f 44 99 cd 7f 73| E0?D...s| fingerprint: "45303f4499cd7f73b719df6084efb1d5" (raw bits) 0xa18-0xa28 (16) +0x0a20|b7 19 df 60 84 ef b1 d5 |...`.... | + | | | [101]{}: bound 0xa28-0xa3b (19) +0x0a20| 03 | . | timestamp_delta: 2 (1970-01-01 01:55:42) 0xa28-0xa29 (1) +0x0a20| 00 | . | id_prefix_size: 0 0xa29-0xa2a (1) +0x0a20| 01 | . | mode: "fingerprint" (1) 0xa2a-0xa2b (1) +0x0a20| 7b 82 a5 c5 21| {...!| fingerprint: "7b82a5c5210fb1186ad426fb489ff18d" (raw bits) 0xa2b-0xa3b (16) +0x0a30|0f b1 18 6a d4 26 fb 48 9f f1 8d |...j.&.H... | + | | | [102]{}: bound 0xa3b-0xa4e (19) +0x0a30| 03 | . | timestamp_delta: 2 (1970-01-01 01:55:43) 0xa3b-0xa3c (1) +0x0a30| 00 | . | id_prefix_size: 0 0xa3c-0xa3d (1) +0x0a30| 01 | . | mode: "fingerprint" (1) 0xa3d-0xa3e (1) +0x0a30| 5b a6| [.| fingerprint: "5ba61cfc1e741ddbd49d4f4ff67b307f" (raw bits) 0xa3e-0xa4e (16) +0x0a40|1c fc 1e 74 1d db d4 9d 4f 4f f6 7b 30 7f |...t....OO.{0. | + | | | [103]{}: bound 0xa4e-0xa52 (4) +0x0a40| 86 22| ."| timestamp_delta: 801 (1970-01-01 02:09:03) 0xa4e-0xa50 (2) +0x0a50|00 |. | id_prefix_size: 0 0xa50-0xa51 (1) +0x0a50| 00 | . | mode: "skip" (0) 0xa51-0xa52 (1) + | | | [104]{}: bound 0xa52-0xa65 (19) +0x0a50| 11 | . | timestamp_delta: 16 (1970-01-01 02:09:18) 0xa52-0xa53 (1) +0x0a50| 00 | . | id_prefix_size: 0 0xa53-0xa54 (1) +0x0a50| 01 | . | mode: "fingerprint" (1) 0xa54-0xa55 (1) +0x0a50| fb b8 f6 fa 42 b1 f2 68 34 0d bb| ....B..h4..| fingerprint: "fbb8f6fa42b1f268340dbbf2c7f09041" (raw bits) 0xa55-0xa65 (16) +0x0a60|f2 c7 f0 90 41 |....A | + | | | [105]{}: bound 0xa65-0xa78 (19) +0x0a60| 11 | . | timestamp_delta: 16 (1970-01-01 02:09:33) 0xa65-0xa66 (1) +0x0a60| 00 | . | id_prefix_size: 0 0xa66-0xa67 (1) +0x0a60| 01 | . | mode: "fingerprint" (1) 0xa67-0xa68 (1) +0x0a60| 4d b0 6a 05 e6 ca 6d f3| M.j...m.| fingerprint: "4db06a05e6ca6df33f485c5b93589a0d" (raw bits) 0xa68-0xa78 (16) +0x0a70|3f 48 5c 5b 93 58 9a 0d |?H\[.X.. | + | | | [106]{}: bound 0xa78-0xa8b (19) +0x0a70| 11 | . | timestamp_delta: 16 (1970-01-01 02:09:48) 0xa78-0xa79 (1) +0x0a70| 00 | . | id_prefix_size: 0 0xa79-0xa7a (1) +0x0a70| 01 | . | mode: "fingerprint" (1) 0xa7a-0xa7b (1) +0x0a70| 79 4f 02 89 f0| yO...| fingerprint: "794f0289f0416f4e787ec335e9dfde3f" (raw bits) 0xa7b-0xa8b (16) +0x0a80|41 6f 4e 78 7e c3 35 e9 df de 3f |AoNx~.5...? | + | | | [107]{}: bound 0xa8b-0xa9e (19) +0x0a80| 11 | . | timestamp_delta: 16 (1970-01-01 02:10:03) 0xa8b-0xa8c (1) +0x0a80| 00 | . | id_prefix_size: 0 0xa8c-0xa8d (1) +0x0a80| 01 | . | mode: "fingerprint" (1) 0xa8d-0xa8e (1) +0x0a80| 90 ec| ..| fingerprint: "90ec216d90ef07d10c73e437f8374654" (raw bits) 0xa8e-0xa9e (16) +0x0a90|21 6d 90 ef 07 d1 0c 73 e4 37 f8 37 46 54 |!m.....s.7.7FT | + | | | [108]{}: bound 0xa9e-0xab1 (19) +0x0a90| 11 | . | timestamp_delta: 16 (1970-01-01 02:10:18) 0xa9e-0xa9f (1) +0x0a90| 00| .| id_prefix_size: 0 0xa9f-0xaa0 (1) +0x0aa0|01 |. | mode: "fingerprint" (1) 0xaa0-0xaa1 (1) +0x0aa0| d2 b8 e0 6f 20 17 6e 21 de 8a 3b 58 cd ce 40| ...o .n!..;X..@| fingerprint: "d2b8e06f20176e21de8a3b58cdce4099" (raw bits) 0xaa1-0xab1 (16) +0x0ab0|99 |. | + | | | [109]{}: bound 0xab1-0xac4 (19) +0x0ab0| 11 | . | timestamp_delta: 16 (1970-01-01 02:10:33) 0xab1-0xab2 (1) +0x0ab0| 00 | . | id_prefix_size: 0 0xab2-0xab3 (1) +0x0ab0| 01 | . | mode: "fingerprint" (1) 0xab3-0xab4 (1) +0x0ab0| 3e 70 e1 d0 8b ed 7d 62 06 db e5 b9| >p....}b....| fingerprint: "3e70e1d08bed7d6206dbe5b9fe7e62ff" (raw bits) 0xab4-0xac4 (16) +0x0ac0|fe 7e 62 ff |.~b. | + | | | [110]{}: bound 0xac4-0xad7 (19) +0x0ac0| 11 | . | timestamp_delta: 16 (1970-01-01 02:10:48) 0xac4-0xac5 (1) +0x0ac0| 00 | . | id_prefix_size: 0 0xac5-0xac6 (1) +0x0ac0| 01 | . | mode: "fingerprint" (1) 0xac6-0xac7 (1) +0x0ac0| 58 2c 74 c6 24 0a f9 e9 ff| X,t.$....| fingerprint: "582c74c6240af9e9ff4626a42c7b2a05" (raw bits) 0xac7-0xad7 (16) +0x0ad0|46 26 a4 2c 7b 2a 05 |F&.,{*. | + | | | [111]{}: bound 0xad7-0xaea (19) +0x0ad0| 11 | . | timestamp_delta: 16 (1970-01-01 02:11:03) 0xad7-0xad8 (1) +0x0ad0| 00 | . | id_prefix_size: 0 0xad8-0xad9 (1) +0x0ad0| 01 | . | mode: "fingerprint" (1) 0xad9-0xada (1) +0x0ad0| 3c 21 a7 e0 02 82| | fingerprint: "8758c5cc2bc56d535fd0ab4e3e7c844a" (raw bits) 0xb73-0xb83 (16) +0x0b80|7c 84 4a ||.J | + | | | [120]{}: bound 0xb83-0xb88 (5) +0x0b80| 81 0b | .. | timestamp_delta: 138 (1970-01-01 02:49:15) 0xb83-0xb85 (2) +0x0b80| 00 | . | id_prefix_size: 0 0xb85-0xb86 (1) +0x0b80| 02 | . | mode: "idlist" (2) 0xb86-0xb87 (1) + | | | idlist{}: 0xb87-0xb88 (1) +0x0b80| 00 | . | num: 0 0xb87-0xb88 (1) + | | | ids[0:0]: 0xb88-0xb88 (0) + | | | [121]{}: bound 0xb88-0xb8d (5) +0x0b80| 81 0b | .. | timestamp_delta: 138 (1970-01-01 02:51:32) 0xb88-0xb8a (2) +0x0b80| 00 | . | id_prefix_size: 0 0xb8a-0xb8b (1) +0x0b80| 02 | . | mode: "idlist" (2) 0xb8b-0xb8c (1) + | | | idlist{}: 0xb8c-0xb8d (1) +0x0b80| 00 | . | num: 0 0xb8c-0xb8d (1) + | | | ids[0:0]: 0xb8d-0xb8d (0) + | | | [122]{}: bound 0xb8d-0xb92 (5) +0x0b80| 81 0b | .. | timestamp_delta: 138 (1970-01-01 02:53:49) 0xb8d-0xb8f (2) +0x0b80| 00| .| id_prefix_size: 0 0xb8f-0xb90 (1) +0x0b90|02 |. | mode: "idlist" (2) 0xb90-0xb91 (1) + | | | idlist{}: 0xb91-0xb92 (1) +0x0b90| 00 | . | num: 0 0xb91-0xb92 (1) + | | | ids[0:0]: 0xb92-0xb92 (0) + | | | [123]{}: bound 0xb92-0xb97 (5) +0x0b90| 81 0b | .. | timestamp_delta: 138 (1970-01-01 02:56:06) 0xb92-0xb94 (2) +0x0b90| 00 | . | id_prefix_size: 0 0xb94-0xb95 (1) +0x0b90| 02 | . | mode: "idlist" (2) 0xb95-0xb96 (1) + | | | idlist{}: 0xb96-0xb97 (1) +0x0b90| 00 | . | num: 0 0xb96-0xb97 (1) + | | | ids[0:0]: 0xb97-0xb97 (0) + | | | [124]{}: bound 0xb97-0xb9c (5) +0x0b90| 81 0b | .. | timestamp_delta: 138 (1970-01-01 02:58:23) 0xb97-0xb99 (2) +0x0b90| 00 | . | id_prefix_size: 0 0xb99-0xb9a (1) +0x0b90| 02 | . | mode: "idlist" (2) 0xb9a-0xb9b (1) + | | | idlist{}: 0xb9b-0xb9c (1) +0x0b90| 00 | . | num: 0 0xb9b-0xb9c (1) + | | | ids[0:0]: 0xb9c-0xb9c (0) + | | | [125]{}: bound 0xb9c-0xba1 (5) +0x0b90| 81 0b | .. | timestamp_delta: 138 (1970-01-01 03:00:40) 0xb9c-0xb9e (2) +0x0b90| 00 | . | id_prefix_size: 0 0xb9e-0xb9f (1) +0x0b90| 02| .| mode: "idlist" (2) 0xb9f-0xba0 (1) + | | | idlist{}: 0xba0-0xba1 (1) +0x0ba0|00 |. | num: 0 0xba0-0xba1 (1) + | | | ids[0:0]: 0xba1-0xba1 (0) + | | | [126]{}: bound 0xba1-0xba6 (5) +0x0ba0| 81 0b | .. | timestamp_delta: 138 (1970-01-01 03:02:57) 0xba1-0xba3 (2) +0x0ba0| 00 | . | id_prefix_size: 0 0xba3-0xba4 (1) +0x0ba0| 02 | . | mode: "idlist" (2) 0xba4-0xba5 (1) + | | | idlist{}: 0xba5-0xba6 (1) +0x0ba0| 00 | . | num: 0 0xba5-0xba6 (1) + | | | ids[0:0]: 0xba6-0xba6 (0) + | | | [127]{}: bound 0xba6-0xbab (5) +0x0ba0| 81 0b | .. | timestamp_delta: 138 (1970-01-01 03:05:14) 0xba6-0xba8 (2) +0x0ba0| 00 | . | id_prefix_size: 0 0xba8-0xba9 (1) +0x0ba0| 02 | . | mode: "idlist" (2) 0xba9-0xbaa (1) + | | | idlist{}: 0xbaa-0xbab (1) +0x0ba0| 00 | . | num: 0 0xbaa-0xbab (1) + | | | ids[0:0]: 0xbab-0xbab (0) + | | | [128]{}: bound 0xbab-0xbb0 (5) +0x0ba0| 81 0b | .. | timestamp_delta: 138 (1970-01-01 03:07:31) 0xbab-0xbad (2) +0x0ba0| 00 | . | id_prefix_size: 0 0xbad-0xbae (1) +0x0ba0| 02 | . | mode: "idlist" (2) 0xbae-0xbaf (1) + | | | idlist{}: 0xbaf-0xbb0 (1) +0x0ba0| 00| .| num: 0 0xbaf-0xbb0 (1) + | | | ids[0:0]: 0xbb0-0xbb0 (0) + | | | [129]{}: bound 0xbb0-0xbb5 (5) +0x0bb0|81 0a |.. | timestamp_delta: 137 (1970-01-01 03:09:47) 0xbb0-0xbb2 (2) +0x0bb0| 00 | . | id_prefix_size: 0 0xbb2-0xbb3 (1) +0x0bb0| 02 | . | mode: "idlist" (2) 0xbb3-0xbb4 (1) + | | | idlist{}: 0xbb4-0xbb5 (1) +0x0bb0| 00 | . | num: 0 0xbb4-0xbb5 (1) + | | | ids[0:0]: 0xbb5-0xbb5 (0) + | | | [130]{}: bound 0xbb5-0xbba (5) +0x0bb0| 81 0a | .. | timestamp_delta: 137 (1970-01-01 03:12:03) 0xbb5-0xbb7 (2) +0x0bb0| 00 | . | id_prefix_size: 0 0xbb7-0xbb8 (1) +0x0bb0| 02 | . | mode: "idlist" (2) 0xbb8-0xbb9 (1) + | | | idlist{}: 0xbb9-0xbba (1) +0x0bb0| 00 | . | num: 0 0xbb9-0xbba (1) + | | | ids[0:0]: 0xbba-0xbba (0) + | | | [131]{}: bound 0xbba-0xbbf (5) +0x0bb0| 81 0a | .. | timestamp_delta: 137 (1970-01-01 03:14:19) 0xbba-0xbbc (2) +0x0bb0| 00 | . | id_prefix_size: 0 0xbbc-0xbbd (1) +0x0bb0| 02 | . | mode: "idlist" (2) 0xbbd-0xbbe (1) + | | | idlist{}: 0xbbe-0xbbf (1) +0x0bb0| 00 | . | num: 0 0xbbe-0xbbf (1) + | | | ids[0:0]: 0xbbf-0xbbf (0) + | | | [132]{}: bound 0xbbf-0xbc4 (5) +0x0bb0| 81| .| timestamp_delta: 137 (1970-01-01 03:16:35) 0xbbf-0xbc1 (2) +0x0bc0|0a |. | +0x0bc0| 00 | . | id_prefix_size: 0 0xbc1-0xbc2 (1) +0x0bc0| 02 | . | mode: "idlist" (2) 0xbc2-0xbc3 (1) + | | | idlist{}: 0xbc3-0xbc4 (1) +0x0bc0| 00 | . | num: 0 0xbc3-0xbc4 (1) + | | | ids[0:0]: 0xbc4-0xbc4 (0) + | | | [133]{}: bound 0xbc4-0xbc9 (5) +0x0bc0| 81 0a | .. | timestamp_delta: 137 (1970-01-01 03:18:51) 0xbc4-0xbc6 (2) +0x0bc0| 00 | . | id_prefix_size: 0 0xbc6-0xbc7 (1) +0x0bc0| 02 | . | mode: "idlist" (2) 0xbc7-0xbc8 (1) + | | | idlist{}: 0xbc8-0xbc9 (1) +0x0bc0| 00 | . | num: 0 0xbc8-0xbc9 (1) + | | | ids[0:0]: 0xbc9-0xbc9 (0) + | | | [134]{}: bound 0xbc9-0xd8e (453) +0x0bc0| 8d 56 | .V | timestamp_delta: 1749 (1970-01-01 03:47:59) 0xbc9-0xbcb (2) +0x0bc0| 00 | . | id_prefix_size: 0 0xbcb-0xbcc (1) +0x0bc0| 02 | . | mode: "idlist" (2) 0xbcc-0xbcd (1) + | | | idlist{}: 0xbcd-0xd8e (449) +0x0bc0| 0e | . | num: 14 0xbcd-0xbce (1) + | | | ids[0:14]: 0xbce-0xd8e (448) +0x0bc0| 00 00| ..| [0]: "0000000000000000000000000000000000000000000000000000000000013800" (raw bits) id 0xbce-0xbee (32) +0x0bd0|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0be0|00 00 00 00 00 00 00 00 00 00 00 01 38 00 |............8. | +0x0be0| 00 00| ..| [1]: "0000000000000000000000000000000000000000000000000000000000013801" (raw bits) id 0xbee-0xc0e (32) +0x0bf0|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0c00|00 00 00 00 00 00 00 00 00 00 00 01 38 01 |............8. | +0x0c00| 00 00| ..| [2]: "0000000000000000000000000000000000000000000000000000000000013802" (raw bits) id 0xc0e-0xc2e (32) +0x0c10|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0c20|00 00 00 00 00 00 00 00 00 00 00 01 38 02 |............8. | +0x0c20| 00 00| ..| [3]: "0000000000000000000000000000000000000000000000000000000000013803" (raw bits) id 0xc2e-0xc4e (32) +0x0c30|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0c40|00 00 00 00 00 00 00 00 00 00 00 01 38 03 |............8. | +0x0c40| 00 00| ..| [4]: "0000000000000000000000000000000000000000000000000000000000013804" (raw bits) id 0xc4e-0xc6e (32) +0x0c50|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0c60|00 00 00 00 00 00 00 00 00 00 00 01 38 04 |............8. | +0x0c60| 00 00| ..| [5]: "0000000000000000000000000000000000000000000000000000000000013805" (raw bits) id 0xc6e-0xc8e (32) +0x0c70|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0c80|00 00 00 00 00 00 00 00 00 00 00 01 38 05 |............8. | +0x0c80| 00 00| ..| [6]: "0000000000000000000000000000000000000000000000000000000000013806" (raw bits) id 0xc8e-0xcae (32) +0x0c90|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0ca0|00 00 00 00 00 00 00 00 00 00 00 01 38 06 |............8. | +0x0ca0| 00 00| ..| [7]: "0000000000000000000000000000000000000000000000000000000000013807" (raw bits) id 0xcae-0xcce (32) +0x0cb0|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0cc0|00 00 00 00 00 00 00 00 00 00 00 01 38 07 |............8. | +0x0cc0| 00 00| ..| [8]: "0000000000000000000000000000000000000000000000000000000000013808" (raw bits) id 0xcce-0xcee (32) +0x0cd0|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0ce0|00 00 00 00 00 00 00 00 00 00 00 01 38 08 |............8. | +0x0ce0| 00 00| ..| [9]: "0000000000000000000000000000000000000000000000000000000000013809" (raw bits) id 0xcee-0xd0e (32) +0x0cf0|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0d00|00 00 00 00 00 00 00 00 00 00 00 01 38 09 |............8. | +0x0d00| 00 00| ..| [10]: "0000000000000000000000000000000000000000000000000000000000013810" (raw bits) id 0xd0e-0xd2e (32) +0x0d10|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0d20|00 00 00 00 00 00 00 00 00 00 00 01 38 10 |............8. | +0x0d20| 00 00| ..| [11]: "0000000000000000000000000000000000000000000000000000000000013811" (raw bits) id 0xd2e-0xd4e (32) +0x0d30|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0d40|00 00 00 00 00 00 00 00 00 00 00 01 38 11 |............8. | +0x0d40| 00 00| ..| [12]: "0000000000000000000000000000000000000000000000000000000000013812" (raw bits) id 0xd4e-0xd6e (32) +0x0d50|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0d60|00 00 00 00 00 00 00 00 00 00 00 01 38 12 |............8. | +0x0d60| 00 00| ..| [13]: "0000000000000000000000000000000000000000000000000000000000013813" (raw bits) id 0xd6e-0xd8e (32) +0x0d70|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| +0x0d80|00 00 00 00 00 00 00 00 00 00 00 01 38 13 |............8. | + | | | [135]{}: bound 0xd8e-0xd92 (4) +0x0d80| 86 23| .#| timestamp_delta: 802 (1970-01-01 04:01:20) 0xd8e-0xd90 (2) +0x0d90|00 |. | id_prefix_size: 0 0xd90-0xd91 (1) +0x0d90| 00 | . | mode: "skip" (0) 0xd91-0xd92 (1) + | | | [136]{}: bound 0xd92-0xda5 (19) +0x0d90| 0d | . | timestamp_delta: 12 (1970-01-01 04:01:31) 0xd92-0xd93 (1) +0x0d90| 00 | . | id_prefix_size: 0 0xd93-0xd94 (1) +0x0d90| 01 | . | mode: "fingerprint" (1) 0xd94-0xd95 (1) +0x0d90| 41 ab cc e3 60 bb f4 6a 99 83 9f| A...`..j...| fingerprint: "41abcce360bbf46a99839fcf848dc61e" (raw bits) 0xd95-0xda5 (16) +0x0da0|cf 84 8d c6 1e |..... | + | | | [137]{}: bound 0xda5-0xdb8 (19) +0x0da0| 0d | . | timestamp_delta: 12 (1970-01-01 04:01:42) 0xda5-0xda6 (1) +0x0da0| 00 | . | id_prefix_size: 0 0xda6-0xda7 (1) +0x0da0| 01 | . | mode: "fingerprint" (1) 0xda7-0xda8 (1) +0x0da0| 06 23 d9 e9 b2 15 07 e7| .#......| fingerprint: "0623d9e9b21507e7a846827fcc42c146" (raw bits) 0xda8-0xdb8 (16) +0x0db0|a8 46 82 7f cc 42 c1 46 |.F...B.F | + | | | [138]{}: bound 0xdb8-0xdcb (19) +0x0db0| 0d | . | timestamp_delta: 12 (1970-01-01 04:01:53) 0xdb8-0xdb9 (1) +0x0db0| 00 | . | id_prefix_size: 0 0xdb9-0xdba (1) +0x0db0| 01 | . | mode: "fingerprint" (1) 0xdba-0xdbb (1) +0x0db0| 89 c0 67 6f 62| ..gob| fingerprint: "89c0676f62f517b301988b8b34743ca6" (raw bits) 0xdbb-0xdcb (16) +0x0dc0|f5 17 b3 01 98 8b 8b 34 74 3c a6 |.......4t<. | + | | | [139]{}: bound 0xdcb-0xdde (19) +0x0dc0| 0d | . | timestamp_delta: 12 (1970-01-01 04:02:04) 0xdcb-0xdcc (1) +0x0dc0| 00 | . | id_prefix_size: 0 0xdcc-0xdcd (1) +0x0dc0| 01 | . | mode: "fingerprint" (1) 0xdcd-0xdce (1) +0x0dc0| 67 b1| g.| fingerprint: "67b1583666c90373946a2af4319da017" (raw bits) 0xdce-0xdde (16) +0x0dd0|58 36 66 c9 03 73 94 6a 2a f4 31 9d a0 17 |X6f..s.j*.1... | + | | | [140]{}: bound 0xdde-0xdf1 (19) +0x0dd0| 0d | . | timestamp_delta: 12 (1970-01-01 04:02:15) 0xdde-0xddf (1) +0x0dd0| 00| .| id_prefix_size: 0 0xddf-0xde0 (1) +0x0de0|01 |. | mode: "fingerprint" (1) 0xde0-0xde1 (1) +0x0de0| ff c8 32 dd 79 9c 4c b5 e1 6a 41 75 61 28 b9| ..2.y.L..jAua(.| fingerprint: "ffc832dd799c4cb5e16a41756128b9d3" (raw bits) 0xde1-0xdf1 (16) +0x0df0|d3 |. | + | | | [141]{}: bound 0xdf1-0xe04 (19) +0x0df0| 0d | . | timestamp_delta: 12 (1970-01-01 04:02:26) 0xdf1-0xdf2 (1) +0x0df0| 00 | . | id_prefix_size: 0 0xdf2-0xdf3 (1) +0x0df0| 01 | . | mode: "fingerprint" (1) 0xdf3-0xdf4 (1) +0x0df0| e5 b8 17 7c d2 d2 95 dc f5 fd ab b0| ...|........| fingerprint: "e5b8177cd2d295dcf5fdabb0dea332de" (raw bits) 0xdf4-0xe04 (16) +0x0e00|de a3 32 de |..2. | + | | | [142]{}: bound 0xe04-0xe17 (19) +0x0e00| 0d | . | timestamp_delta: 12 (1970-01-01 04:02:37) 0xe04-0xe05 (1) +0x0e00| 00 | . | id_prefix_size: 0 0xe05-0xe06 (1) +0x0e00| 01 | . | mode: "fingerprint" (1) 0xe06-0xe07 (1) +0x0e00| 0d ba 05 8d d1 77 7a 90 51| .....wz.Q| fingerprint: "0dba058dd1777a905107797494ecc78b" (raw bits) 0xe07-0xe17 (16) +0x0e10|07 79 74 94 ec c7 8b |.yt.... | + | | | [143]{}: bound 0xe17-0xe2a (19) +0x0e10| 0d | . | timestamp_delta: 12 (1970-01-01 04:02:48) 0xe17-0xe18 (1) +0x0e10| 00 | . | id_prefix_size: 0 0xe18-0xe19 (1) +0x0e10| 01 | . | mode: "fingerprint" (1) 0xe19-0xe1a (1) +0x0e10| ae db a4 01 c0 1a| ......| fingerprint: "aedba401c01a4880f07a25119e68dbd2" (raw bits) 0xe1a-0xe2a (16) +0x0e20|48 80 f0 7a 25 11 9e 68 db d2 |H..z%..h.. | + | | | [144]{}: bound 0xe2a-0xe3d (19) +0x0e20| 0d | . | timestamp_delta: 12 (1970-01-01 04:02:59) 0xe2a-0xe2b (1) +0x0e20| 00 | . | id_prefix_size: 0 0xe2b-0xe2c (1) +0x0e20| 01 | . | mode: "fingerprint" (1) 0xe2c-0xe2d (1) +0x0e20| be 9c d1| ...| fingerprint: "be9cd156ef07fd83428444240bd15af8" (raw bits) 0xe2d-0xe3d (16) +0x0e30|56 ef 07 fd 83 42 84 44 24 0b d1 5a f8 |V....B.D$..Z. | + | | | [145]{}: bound 0xe3d-0xe50 (19) +0x0e30| 0d | . | timestamp_delta: 12 (1970-01-01 04:03:10) 0xe3d-0xe3e (1) +0x0e30| 00 | . | id_prefix_size: 0 0xe3e-0xe3f (1) +0x0e30| 01| .| mode: "fingerprint" (1) 0xe3f-0xe40 (1) +0x0e40|23 e3 e5 d7 c6 b8 07 6e dc a2 46 1f dd 41 f7 0e|#......n..F..A..| fingerprint: "23e3e5d7c6b8076edca2461fdd41f70e" (raw bits) 0xe40-0xe50 (16) + | | | [146]{}: bound 0xe50-0xe63 (19) +0x0e50|0d |. | timestamp_delta: 12 (1970-01-01 04:03:21) 0xe50-0xe51 (1) +0x0e50| 00 | . | id_prefix_size: 0 0xe51-0xe52 (1) +0x0e50| 01 | . | mode: "fingerprint" (1) 0xe52-0xe53 (1) +0x0e50| cf 9c bd 4e ef 1b 28 21 ee db 25 2d 44| ...N..(!..%-D| fingerprint: "cf9cbd4eef1b2821eedb252d446b7a5d" (raw bits) 0xe53-0xe63 (16) +0x0e60|6b 7a 5d |kz] | + | | | [147]{}: bound 0xe63-0xe76 (19) +0x0e60| 0d | . | timestamp_delta: 12 (1970-01-01 04:03:32) 0xe63-0xe64 (1) +0x0e60| 00 | . | id_prefix_size: 0 0xe64-0xe65 (1) +0x0e60| 01 | . | mode: "fingerprint" (1) 0xe65-0xe66 (1) +0x0e60| b7 18 9e 59 9a d7 3c ae 48 28| ...Y..<.H(| fingerprint: "b7189e599ad73cae4828dd357755093c" (raw bits) 0xe66-0xe76 (16) +0x0e70|dd 35 77 55 09 3c |.5wU.< | + | | | [148]{}: bound 0xe76-0xe89 (19) +0x0e70| 0d | . | timestamp_delta: 12 (1970-01-01 04:03:43) 0xe76-0xe77 (1) +0x0e70| 00 | . | id_prefix_size: 0 0xe77-0xe78 (1) +0x0e70| 01 | . | mode: "fingerprint" (1) 0xe78-0xe79 (1) +0x0e70| 0a 35 31 9c fc 78 f1| .51..x.| fingerprint: "0a35319cfc78f177e622e9531c4535eb" (raw bits) 0xe79-0xe89 (16) +0x0e80|77 e6 22 e9 53 1c 45 35 eb |w.".S.E5. | + | | | [149]{}: bound 0xe89-0xe9c (19) +0x0e80| 0d | . | timestamp_delta: 12 (1970-01-01 04:03:54) 0xe89-0xe8a (1) +0x0e80| 00 | . | id_prefix_size: 0 0xe8a-0xe8b (1) +0x0e80| 01 | . | mode: "fingerprint" (1) 0xe8b-0xe8c (1) +0x0e80| d7 d4 9f 28| ...(| fingerprint: "d7d49f286c932cf0de6876e6f74f8874" (raw bits) 0xe8c-0xe9c (16) +0x0e90|6c 93 2c f0 de 68 76 e6 f7 4f 88 74 |l.,..hv..O.t | + | | | [150]{}: bound 0xe9c-0xeaf (19) +0x0e90| 0c | . | timestamp_delta: 11 (1970-01-01 04:04:04) 0xe9c-0xe9d (1) +0x0e90| 00 | . | id_prefix_size: 0 0xe9d-0xe9e (1) +0x0e90| 01 | . | mode: "fingerprint" (1) 0xe9e-0xe9f (1) +0x0e90| a8| .| fingerprint: "a8553fc21bc6f3315c2bc1bdc721cc07" (raw bits) 0xe9f-0xeaf (16) +0x0ea0|55 3f c2 1b c6 f3 31 5c 2b c1 bd c7 21 cc 07 |U?....1\+...!.. | + | | | [151]{}: bound 0xeaf-0xec2 (19) +0x0ea0| 0c| .| timestamp_delta: 11 (1970-01-01 04:04:14) 0xeaf-0xeb0 (1) +0x0eb0|00 |. | id_prefix_size: 0 0xeb0-0xeb1 (1) +0x0eb0| 01 | . | mode: "fingerprint" (1) 0xeb1-0xeb2 (1) +0x0eb0| e5 1e ac 79 3f ac 50 9c b7 af 15 b6 2c b3| ...y?.P.....,.| fingerprint: "e51eac793fac509cb7af15b62cb35be9" (raw bits) 0xeb2-0xec2 (16) +0x0ec0|5b e9 |[. | + | | | [152]{}: bound 0xec2-0xec5 (3) +0x0ec0| 4e | N | timestamp_delta: 77 (1970-01-01 04:05:30) 0xec2-0xec3 (1) +0x0ec0| 00 | . | id_prefix_size: 0 0xec3-0xec4 (1) +0x0ec0| 00 | . | mode: "skip" (0) 0xec4-0xec5 (1) + | | | [153]{}: bound 0xec5-0xed8 (19) +0x0ec0| 06 | . | timestamp_delta: 5 (1970-01-01 04:05:34) 0xec5-0xec6 (1) +0x0ec0| 00 | . | id_prefix_size: 0 0xec6-0xec7 (1) +0x0ec0| 01 | . | mode: "fingerprint" (1) 0xec7-0xec8 (1) +0x0ec0| c7 de 49 7a 3b 86 f7 a1| ..Iz;...| fingerprint: "c7de497a3b86f7a17552f4f9c2a8fd57" (raw bits) 0xec8-0xed8 (16) +0x0ed0|75 52 f4 f9 c2 a8 fd 57 |uR.....W | + | | | [154]{}: bound 0xed8-0xeeb (19) +0x0ed0| 06 | . | timestamp_delta: 5 (1970-01-01 04:05:38) 0xed8-0xed9 (1) +0x0ed0| 00 | . | id_prefix_size: 0 0xed9-0xeda (1) +0x0ed0| 01 | . | mode: "fingerprint" (1) 0xeda-0xedb (1) +0x0ed0| 5a 3d a8 56 3e| Z=.V>| fingerprint: "5a3da8563ebed6e54e129057e1663e5b" (raw bits) 0xedb-0xeeb (16) +0x0ee0|be d6 e5 4e 12 90 57 e1 66 3e 5b |...N..W.f>[ | + | | | [155]{}: bound 0xeeb-0xefe (19) +0x0ee0| 06 | . | timestamp_delta: 5 (1970-01-01 04:05:42) 0xeeb-0xeec (1) +0x0ee0| 00 | . | id_prefix_size: 0 0xeec-0xeed (1) +0x0ee0| 01 | . | mode: "fingerprint" (1) 0xeed-0xeee (1) +0x0ee0| 22 35| "5| fingerprint: "2235e61d2029900931046001a0d8d6be" (raw bits) 0xeee-0xefe (16) +0x0ef0|e6 1d 20 29 90 09 31 04 60 01 a0 d8 d6 be |.. )..1.`..... | + | | | [156]{}: bound 0xefe-0xf11 (19) +0x0ef0| 05 | . | timestamp_delta: 4 (1970-01-01 04:05:45) 0xefe-0xeff (1) +0x0ef0| 00| .| id_prefix_size: 0 0xeff-0xf00 (1) +0x0f00|01 |. | mode: "fingerprint" (1) 0xf00-0xf01 (1) +0x0f00| 21 62 e8 8e 7f fc c2 1a e1 ab 28 74 5e cf f8| !b........(t^..| fingerprint: "2162e88e7ffcc21ae1ab28745ecff8f7" (raw bits) 0xf01-0xf11 (16) +0x0f10|f7 |. | + | | | [157]{}: bound 0xf11-0xf24 (19) +0x0f10| 05 | . | timestamp_delta: 4 (1970-01-01 04:05:48) 0xf11-0xf12 (1) +0x0f10| 00 | . | id_prefix_size: 0 0xf12-0xf13 (1) +0x0f10| 01 | . | mode: "fingerprint" (1) 0xf13-0xf14 (1) +0x0f10| fe 9c 03 38 7b b4 c0 83 d8 c3 cb 74| ...8{......t| fingerprint: "fe9c03387bb4c083d8c3cb7418a400dc" (raw bits) 0xf14-0xf24 (16) +0x0f20|18 a4 00 dc |.... | + | | | [158]{}: bound 0xf24-0xf37 (19) +0x0f20| 05 | . | timestamp_delta: 4 (1970-01-01 04:05:51) 0xf24-0xf25 (1) +0x0f20| 00 | . | id_prefix_size: 0 0xf25-0xf26 (1) +0x0f20| 01 | . | mode: "fingerprint" (1) 0xf26-0xf27 (1) +0x0f20| f3 d4 3f 53 24 e7 0d 7e 83| ..?S$..~.| fingerprint: "f3d43f5324e70d7e834b2c9ee9820c7c" (raw bits) 0xf27-0xf37 (16) +0x0f30|4b 2c 9e e9 82 0c 7c |K,....| | + | | | [159]{}: bound 0xf37-0xf4a (19) +0x0f30| 05 | . | timestamp_delta: 4 (1970-01-01 04:05:54) 0xf37-0xf38 (1) +0x0f30| 00 | . | id_prefix_size: 0 0xf38-0xf39 (1) +0x0f30| 01 | . | mode: "fingerprint" (1) 0xf39-0xf3a (1) +0x0f30| 8d 61 36 0b 47 44| .a6.GD| fingerprint: "8d61360b4744f80e338fcd60d72540dd" (raw bits) 0xf3a-0xf4a (16) +0x0f40|f8 0e 33 8f cd 60 d7 25 40 dd |..3..`.%@. | + | | | [160]{}: bound 0xf4a-0xf5d (19) +0x0f40| 05 | . | timestamp_delta: 4 (1970-01-01 04:05:57) 0xf4a-0xf4b (1) +0x0f40| 00 | . | id_prefix_size: 0 0xf4b-0xf4c (1) +0x0f40| 01 | . | mode: "fingerprint" (1) 0xf4c-0xf4d (1) +0x0f40| 2a d3 8c| *..| fingerprint: "2ad38c14afad0516f6da33ec193273ab" (raw bits) 0xf4d-0xf5d (16) +0x0f50|14 af ad 05 16 f6 da 33 ec 19 32 73 ab |.......3..2s. | + | | | [161]{}: bound 0xf5d-0xf70 (19) +0x0f50| 05 | . | timestamp_delta: 4 (1970-01-01 04:06:00) 0xf5d-0xf5e (1) +0x0f50| 00 | . | id_prefix_size: 0 0xf5e-0xf5f (1) +0x0f50| 01| .| mode: "fingerprint" (1) 0xf5f-0xf60 (1) +0x0f60|df 54 20 6e 13 38 1e a7 4d 21 4a d9 7e bc e8 dd|.T n.8..M!J.~...| fingerprint: "df54206e13381ea74d214ad97ebce8dd" (raw bits) 0xf60-0xf70 (16) + | | | [162]{}: bound 0xf70-0xf83 (19) +0x0f70|05 |. | timestamp_delta: 4 (1970-01-01 04:06:03) 0xf70-0xf71 (1) +0x0f70| 00 | . | id_prefix_size: 0 0xf71-0xf72 (1) +0x0f70| 01 | . | mode: "fingerprint" (1) 0xf72-0xf73 (1) +0x0f70| 26 87 bb 36 24 66 92 5e da 27 2d ff 52| &..6$f.^.'-.R| fingerprint: "2687bb362466925eda272dff52b6986c" (raw bits) 0xf73-0xf83 (16) +0x0f80|b6 98 6c |..l | + | | | [163]{}: bound 0xf83-0xf96 (19) +0x0f80| 05 | . | timestamp_delta: 4 (1970-01-01 04:06:06) 0xf83-0xf84 (1) +0x0f80| 00 | . | id_prefix_size: 0 0xf84-0xf85 (1) +0x0f80| 01 | . | mode: "fingerprint" (1) 0xf85-0xf86 (1) +0x0f80| 22 a0 0c ce 35 34 6c 58 7b 64| "...54lX{d| fingerprint: "22a00cce35346c587b6425eb95762c87" (raw bits) 0xf86-0xf96 (16) +0x0f90|25 eb 95 76 2c 87 |%..v,. | + | | | [164]{}: bound 0xf96-0xfa9 (19) +0x0f90| 05 | . | timestamp_delta: 4 (1970-01-01 04:06:09) 0xf96-0xf97 (1) +0x0f90| 00 | . | id_prefix_size: 0 0xf97-0xf98 (1) +0x0f90| 01 | . | mode: "fingerprint" (1) 0xf98-0xf99 (1) +0x0f90| d0 55 8f 92 f8 73 9b| .U...s.| fingerprint: "d0558f92f8739b2f9f1de8db7fb8d8ce" (raw bits) 0xf99-0xfa9 (16) +0x0fa0|2f 9f 1d e8 db 7f b8 d8 ce |/........ | + | | | [165]{}: bound 0xfa9-0xfbc (19) +0x0fa0| 05 | . | timestamp_delta: 4 (1970-01-01 04:06:12) 0xfa9-0xfaa (1) +0x0fa0| 00 | . | id_prefix_size: 0 0xfaa-0xfab (1) +0x0fa0| 01 | . | mode: "fingerprint" (1) 0xfab-0xfac (1) +0x0fa0| b7 09 1c 7c| ...|| fingerprint: "b7091c7cc745843fec61e5920b94c744" (raw bits) 0xfac-0xfbc (16) +0x0fb0|c7 45 84 3f ec 61 e5 92 0b 94 c7 44 |.E.?.a.....D | + | | | [166]{}: bound 0xfbc-0xfcf (19) +0x0fb0| 05 | . | timestamp_delta: 4 (1970-01-01 04:06:15) 0xfbc-0xfbd (1) +0x0fb0| 00 | . | id_prefix_size: 0 0xfbd-0xfbe (1) +0x0fb0| 01 | . | mode: "fingerprint" (1) 0xfbe-0xfbf (1) +0x0fb0| 2a| *| fingerprint: "2a71cdb44346157791ee924e07ddd816" (raw bits) 0xfbf-0xfcf (16) +0x0fc0|71 cd b4 43 46 15 77 91 ee 92 4e 07 dd d8 16 |q..CF.w...N.... | + | | | [167]{}: bound 0xfcf-0xfe2 (19) +0x0fc0| 05| .| timestamp_delta: 4 (1970-01-01 04:06:18) 0xfcf-0xfd0 (1) +0x0fd0|00 |. | id_prefix_size: 0 0xfd0-0xfd1 (1) +0x0fd0| 01 | . | mode: "fingerprint" (1) 0xfd1-0xfd2 (1) +0x0fd0| fe 9c 03 38 7b b4 c0 83 d8 c3 cb 74 18 a4| ...8{......t..| fingerprint: "fe9c03387bb4c083d8c3cb7418a400dc" (raw bits) 0xfd2-0xfe2 (16) +0x0fe0|00 dc |.. | + | | | [168]{}: bound 0xfe2-0xff6 (20) +0x0fe0| 81 7c | .| | timestamp_delta: 251 (1970-01-01 04:10:28) 0xfe2-0xfe4 (2) +0x0fe0| 00 | . | id_prefix_size: 0 0xfe4-0xfe5 (1) +0x0fe0| 01 | . | mode: "fingerprint" (1) 0xfe5-0xfe6 (1) +0x0fe0| f3 d4 3f 53 24 e7 0d 7e 83 4b| ..?S$..~.K| fingerprint: "f3d43f5324e70d7e834b2c9ee9820c7c" (raw bits) 0xfe6-0xff6 (16) +0x0ff0|2c 9e e9 82 0c 7c |,....| | + | | | [169]{}: bound 0xff6-0xffb (5) +0x0ff0| 82 3b | .; | timestamp_delta: 314 (1970-01-01 04:15:41) 0xff6-0xff8 (2) +0x0ff0| 00 | . | id_prefix_size: 0 0xff8-0xff9 (1) +0x0ff0| 02 | . | mode: "idlist" (2) 0xff9-0xffa (1) + | | | idlist{}: 0xffa-0xffb (1) +0x0ff0| 00 | . | num: 0 0xffa-0xffb (1) + | | | ids[0:0]: 0xffb-0xffb (0) + | | | [170]{}: bound 0xffb-0x1000 (5) +0x0ff0| 82 3b | .; | timestamp_delta: 314 (1970-01-01 04:20:54) 0xffb-0xffd (2) +0x0ff0| 00 | . | id_prefix_size: 0 0xffd-0xffe (1) +0x0ff0| 02 | . | mode: "idlist" (2) 0xffe-0xfff (1) + | | | idlist{}: 0xfff-0x1000 (1) +0x0ff0| 00| .| num: 0 0xfff-0x1000 (1) + | | | ids[0:0]: 0x1000-0x1000 (0) + | | | [171]{}: bound 0x1000-0x1005 (5) +0x1000|82 3b |.; | timestamp_delta: 314 (1970-01-01 04:26:07) 0x1000-0x1002 (2) +0x1000| 00 | . | id_prefix_size: 0 0x1002-0x1003 (1) +0x1000| 02 | . | mode: "idlist" (2) 0x1003-0x1004 (1) + | | | idlist{}: 0x1004-0x1005 (1) +0x1000| 00 | . | num: 0 0x1004-0x1005 (1) + | | | ids[0:0]: 0x1005-0x1005 (0) + | | | [172]{}: bound 0x1005-0x100a (5) +0x1000| 82 3b | .; | timestamp_delta: 314 (1970-01-01 04:31:20) 0x1005-0x1007 (2) +0x1000| 00 | . | id_prefix_size: 0 0x1007-0x1008 (1) +0x1000| 02 | . | mode: "idlist" (2) 0x1008-0x1009 (1) + | | | idlist{}: 0x1009-0x100a (1) +0x1000| 00 | . | num: 0 0x1009-0x100a (1) + | | | ids[0:0]: 0x100a-0x100a (0) + | | | [173]{}: bound 0x100a-0x100f (5) +0x1000| 82 3b | .; | timestamp_delta: 314 (1970-01-01 04:36:33) 0x100a-0x100c (2) +0x1000| 00 | . | id_prefix_size: 0 0x100c-0x100d (1) +0x1000| 02 | . | mode: "idlist" (2) 0x100d-0x100e (1) + | | | idlist{}: 0x100e-0x100f (1) +0x1000| 00 | . | num: 0 0x100e-0x100f (1) + | | | ids[0:0]: 0x100f-0x100f (0) + | | | [174]{}: bound 0x100f-0x1014 (5) +0x1000| 82| .| timestamp_delta: 314 (1970-01-01 04:41:46) 0x100f-0x1011 (2) +0x1010|3b |; | +0x1010| 00 | . | id_prefix_size: 0 0x1011-0x1012 (1) +0x1010| 02 | . | mode: "idlist" (2) 0x1012-0x1013 (1) + | | | idlist{}: 0x1013-0x1014 (1) +0x1010| 00 | . | num: 0 0x1013-0x1014 (1) + | | | ids[0:0]: 0x1014-0x1014 (0) + | | | [175]{}: bound 0x1014-0x1019 (5) +0x1010| 82 3b | .; | timestamp_delta: 314 (1970-01-01 04:46:59) 0x1014-0x1016 (2) +0x1010| 00 | . | id_prefix_size: 0 0x1016-0x1017 (1) +0x1010| 02 | . | mode: "idlist" (2) 0x1017-0x1018 (1) + | | | idlist{}: 0x1018-0x1019 (1) +0x1010| 00 | . | num: 0 0x1018-0x1019 (1) + | | | ids[0:0]: 0x1019-0x1019 (0) + | | | [176]{}: bound 0x1019-0x101e (5) +0x1010| 82 3b | .; | timestamp_delta: 314 (1970-01-01 04:52:12) 0x1019-0x101b (2) +0x1010| 00 | . | id_prefix_size: 0 0x101b-0x101c (1) +0x1010| 02 | . | mode: "idlist" (2) 0x101c-0x101d (1) + | | | idlist{}: 0x101d-0x101e (1) +0x1010| 00 | . | num: 0 0x101d-0x101e (1) + | | | ids[0:0]: 0x101e-0x101e (0) + | | | [177]{}: bound 0x101e-0x1023 (5) +0x1010| 82 3a| .:| timestamp_delta: 313 (1970-01-01 04:57:24) 0x101e-0x1020 (2) +0x1020|00 |. | id_prefix_size: 0 0x1020-0x1021 (1) +0x1020| 02 | . | mode: "idlist" (2) 0x1021-0x1022 (1) + | | | idlist{}: 0x1022-0x1023 (1) +0x1020| 00 | . | num: 0 0x1022-0x1023 (1) + | | | ids[0:0]: 0x1023-0x1023 (0) + | | | [178]{}: bound 0x1023-0x1028 (5) +0x1020| 82 3a | .: | timestamp_delta: 313 (1970-01-01 05:02:36) 0x1023-0x1025 (2) +0x1020| 00 | . | id_prefix_size: 0 0x1025-0x1026 (1) +0x1020| 02 | . | mode: "idlist" (2) 0x1026-0x1027 (1) + | | | idlist{}: 0x1027-0x1028 (1) +0x1020| 00 | . | num: 0 0x1027-0x1028 (1) + | | | ids[0:0]: 0x1028-0x1028 (0) + | | | [179]{}: bound 0x1028-0x102d (5) +0x1020| 82 3a | .: | timestamp_delta: 313 (1970-01-01 05:07:48) 0x1028-0x102a (2) +0x1020| 00 | . | id_prefix_size: 0 0x102a-0x102b (1) +0x1020| 02 | . | mode: "idlist" (2) 0x102b-0x102c (1) + | | | idlist{}: 0x102c-0x102d (1) +0x1020| 00 | . | num: 0 0x102c-0x102d (1) + | | | ids[0:0]: 0x102d-0x102d (0) + | | | [180]{}: bound 0x102d-0x1032 (5) +0x1020| 82 3a | .: | timestamp_delta: 313 (1970-01-01 05:13:00) 0x102d-0x102f (2) +0x1020| 00| .| id_prefix_size: 0 0x102f-0x1030 (1) +0x1030|02 |. | mode: "idlist" (2) 0x1030-0x1031 (1) + | | | idlist{}: 0x1031-0x1032 (1) +0x1030| 00 | . | num: 0 0x1031-0x1032 (1) + | | | ids[0:0]: 0x1032-0x1032 (0) + | | | [181]{}: bound 0x1032-0x1037 (5) +0x1030| 82 3a | .: | timestamp_delta: 313 (1970-01-01 05:18:12) 0x1032-0x1034 (2) +0x1030| 00 | . | id_prefix_size: 0 0x1034-0x1035 (1) +0x1030| 02 | . | mode: "idlist" (2) 0x1035-0x1036 (1) + | | | idlist{}: 0x1036-0x1037 (1) +0x1030| 00 | . | num: 0 0x1036-0x1037 (1) + | | | ids[0:0]: 0x1037-0x1037 (0) + | | | [182]{}: bound 0x1037-0x103c (5) +0x1030| 82 3a | .: | timestamp_delta: 313 (1970-01-01 05:23:24) 0x1037-0x1039 (2) +0x1030| 00 | . | id_prefix_size: 0 0x1039-0x103a (1) +0x1030| 02 | . | mode: "idlist" (2) 0x103a-0x103b (1) + | | | idlist{}: 0x103b-0x103c (1) +0x1030| 00 | . | num: 0 0x103b-0x103c (1) + | | | ids[0:0]: 0x103c-0x103c (0) + | | | [183]{}: bound 0x103c-0x1050 (20) +0x1030| 81 63 | .c | timestamp_delta: 226 (1970-01-01 05:27:09) 0x103c-0x103e (2) +0x1030| 00 | . | id_prefix_size: 0 0x103e-0x103f (1) +0x1030| 01| .| mode: "fingerprint" (1) 0x103f-0x1040 (1) +0x1040|44 82 bb 2d 0b 69 db c7 1e e9 26 61 c3 78 77 9f|D..-.i....&a.xw.| fingerprint: "4482bb2d0b69dbc71ee92661c378779f" (raw bits) 0x1040-0x1050 (16) + | | | [184]{}: bound 0x1050-0x1063 (19) +0x1050|0e |. | timestamp_delta: 13 (1970-01-01 05:27:21) 0x1050-0x1051 (1) +0x1050| 00 | . | id_prefix_size: 0 0x1051-0x1052 (1) +0x1050| 01 | . | mode: "fingerprint" (1) 0x1052-0x1053 (1) +0x1050| a2 c6 aa 65 92 32 9c fa 91 06 41 45 13| ...e.2....AE.| fingerprint: "a2c6aa6592329cfa9106414513a3c79e" (raw bits) 0x1053-0x1063 (16) +0x1060|a3 c7 9e |... | + | | | [185]{}: bound 0x1063-0x1076 (19) +0x1060| 0e | . | timestamp_delta: 13 (1970-01-01 05:27:33) 0x1063-0x1064 (1) +0x1060| 00 | . | id_prefix_size: 0 0x1064-0x1065 (1) +0x1060| 01 | . | mode: "fingerprint" (1) 0x1065-0x1066 (1) +0x1060| d1 5f 5e c1 4a e0 26 48 c4 eb| ._^.J.&H..| fingerprint: "d15f5ec14ae02648c4eb20f82bfa9022" (raw bits) 0x1066-0x1076 (16) +0x1070|20 f8 2b fa 90 22 | .+.." | + | | | [186]{}: bound 0x1076-0x1089 (19) +0x1070| 0e | . | timestamp_delta: 13 (1970-01-01 05:27:45) 0x1076-0x1077 (1) +0x1070| 00 | . | id_prefix_size: 0 0x1077-0x1078 (1) +0x1070| 01 | . | mode: "fingerprint" (1) 0x1078-0x1079 (1) +0x1070| ee 00 03 19 ca 9e 28| ......(| fingerprint: "ee000319ca9e2894cfd9ee1587379343" (raw bits) 0x1079-0x1089 (16) +0x1080|94 cf d9 ee 15 87 37 93 43 |......7.C | + | | | [187]{}: bound 0x1089-0x109c (19) +0x1080| 0e | . | timestamp_delta: 13 (1970-01-01 05:27:57) 0x1089-0x108a (1) +0x1080| 00 | . | id_prefix_size: 0 0x108a-0x108b (1) +0x1080| 01 | . | mode: "fingerprint" (1) 0x108b-0x108c (1) +0x1080| b7 27 3e a6| .'>.| fingerprint: "b7273ea681c69473bd5d78920bf8c4cc" (raw bits) 0x108c-0x109c (16) +0x1090|81 c6 94 73 bd 5d 78 92 0b f8 c4 cc |...s.]x..... | + | | | [188]{}: bound 0x109c-0x10af (19) +0x1090| 0e | . | timestamp_delta: 13 (1970-01-01 05:28:09) 0x109c-0x109d (1) +0x1090| 00 | . | id_prefix_size: 0 0x109d-0x109e (1) +0x1090| 01 | . | mode: "fingerprint" (1) 0x109e-0x109f (1) +0x1090| ba| .| fingerprint: "bab1306933cc16d8327b53a2eebeead6" (raw bits) 0x109f-0x10af (16) +0x10a0|b1 30 69 33 cc 16 d8 32 7b 53 a2 ee be ea d6 |.0i3...2{S..... | + | | | [189]{}: bound 0x10af-0x10c2 (19) +0x10a0| 0e| .| timestamp_delta: 13 (1970-01-01 05:28:21) 0x10af-0x10b0 (1) +0x10b0|00 |. | id_prefix_size: 0 0x10b0-0x10b1 (1) +0x10b0| 01 | . | mode: "fingerprint" (1) 0x10b1-0x10b2 (1) +0x10b0| bb 23 2a 83 40 8f 53 d7 86 85 18 99 74 66| .#*.@.S.....tf| fingerprint: "bb232a83408f53d7868518997466a49e" (raw bits) 0x10b2-0x10c2 (16) +0x10c0|a4 9e |.. | + | | | [190]{}: bound 0x10c2-0x10d5 (19) +0x10c0| 0e | . | timestamp_delta: 13 (1970-01-01 05:28:33) 0x10c2-0x10c3 (1) +0x10c0| 00 | . | id_prefix_size: 0 0x10c3-0x10c4 (1) +0x10c0| 01 | . | mode: "fingerprint" (1) 0x10c4-0x10c5 (1) +0x10c0| 9c 9c 24 8d 0f fe ed d7 a7 d3 b1| ..$........| fingerprint: "9c9c248d0ffeedd7a7d3b197a86b95b3" (raw bits) 0x10c5-0x10d5 (16) +0x10d0|97 a8 6b 95 b3 |..k.. | + | | | [191]{}: bound 0x10d5-0x10e8 (19) +0x10d0| 0d | . | timestamp_delta: 12 (1970-01-01 05:28:44) 0x10d5-0x10d6 (1) +0x10d0| 00 | . | id_prefix_size: 0 0x10d6-0x10d7 (1) +0x10d0| 01 | . | mode: "fingerprint" (1) 0x10d7-0x10d8 (1) +0x10d0| 91 d2 bb 33 5e 31 6f f5| ...3^1o.| fingerprint: "91d2bb335e316ff52319f72c60591d6d" (raw bits) 0x10d8-0x10e8 (16) +0x10e0|23 19 f7 2c 60 59 1d 6d |#..,`Y.m | + | | | [192]{}: bound 0x10e8-0x10fb (19) +0x10e0| 0d | . | timestamp_delta: 12 (1970-01-01 05:28:55) 0x10e8-0x10e9 (1) +0x10e0| 00 | . | id_prefix_size: 0 0x10e9-0x10ea (1) +0x10e0| 01 | . | mode: "fingerprint" (1) 0x10ea-0x10eb (1) +0x10e0| 9b ed 93 40 b8| ...@.| fingerprint: "9bed9340b806197bc5aaa1ccd21cc019" (raw bits) 0x10eb-0x10fb (16) +0x10f0|06 19 7b c5 aa a1 cc d2 1c c0 19 |..{........ | + | | | [193]{}: bound 0x10fb-0x110e (19) +0x10f0| 0d | . | timestamp_delta: 12 (1970-01-01 05:29:06) 0x10fb-0x10fc (1) +0x10f0| 00 | . | id_prefix_size: 0 0x10fc-0x10fd (1) +0x10f0| 01 | . | mode: "fingerprint" (1) 0x10fd-0x10fe (1) +0x10f0| 80 ed| ..| fingerprint: "80ed383eb295422af66b4d7905f5f862" (raw bits) 0x10fe-0x110e (16) +0x1100|38 3e b2 95 42 2a f6 6b 4d 79 05 f5 f8 62 |8>..B*.kMy...b | + | | | [194]{}: bound 0x110e-0x1121 (19) +0x1100| 0d | . | timestamp_delta: 12 (1970-01-01 05:29:17) 0x110e-0x110f (1) +0x1100| 00| .| id_prefix_size: 0 0x110f-0x1110 (1) +0x1110|01 |. | mode: "fingerprint" (1) 0x1110-0x1111 (1) +0x1110| bd 82 0c d0 b9 b5 c1 5a 30 9b ec 6f a7 ae 53| .......Z0..o..S| fingerprint: "bd820cd0b9b5c15a309bec6fa7ae530a" (raw bits) 0x1111-0x1121 (16) +0x1120|0a |. | + | | | [195]{}: bound 0x1121-0x1134 (19) +0x1120| 0d | . | timestamp_delta: 12 (1970-01-01 05:29:28) 0x1121-0x1122 (1) +0x1120| 00 | . | id_prefix_size: 0 0x1122-0x1123 (1) +0x1120| 01 | . | mode: "fingerprint" (1) 0x1123-0x1124 (1) +0x1120| 2b 91 a0 10 5f 4c a6 90 3d 3b a1 d6| +..._L..=;..| fingerprint: "2b91a0105f4ca6903d3ba1d615e52216" (raw bits) 0x1124-0x1134 (16) +0x1130|15 e5 22 16 |..". | + | | | [196]{}: bound 0x1134-0x1147 (19) +0x1130| 0d | . | timestamp_delta: 12 (1970-01-01 05:29:39) 0x1134-0x1135 (1) +0x1130| 00 | . | id_prefix_size: 0 0x1135-0x1136 (1) +0x1130| 01 | . | mode: "fingerprint" (1) 0x1136-0x1137 (1) +0x1130| 18 37 44 10 7b c1 b3 06 6a| .7D.{...j| fingerprint: "183744107bc1b3066a12c22d0dabe511" (raw bits) 0x1137-0x1147 (16) +0x1140|12 c2 2d 0d ab e5 11 |..-.... | + | | | [197]{}: bound 0x1147-0x115a (19) +0x1140| 0d | . | timestamp_delta: 12 (1970-01-01 05:29:50) 0x1147-0x1148 (1) +0x1140| 00 | . | id_prefix_size: 0 0x1148-0x1149 (1) +0x1140| 01 | . | mode: "fingerprint" (1) 0x1149-0x114a (1) +0x1140| f1 4b a3 a9 3a 86| .K..:.| fingerprint: "f14ba3a93a86e8559cdad080bf03b632" (raw bits) 0x114a-0x115a (16) +0x1150|e8 55 9c da d0 80 bf 03 b6 32 |.U.......2 | + | | | [198]{}: bound 0x115a-0x116d (19) +0x1150| 00 | . | timestamp_delta: -1 (infinity) 0x115a-0x115b (1) +0x1150| 00 | . | id_prefix_size: 0 0x115b-0x115c (1) +0x1150| 01 | . | mode: "fingerprint" (1) 0x115c-0x115d (1) +0x1150| a9 79 ff| .y.| fingerprint: "a979ff1bf1e404a68bc3339f18a16dea" (raw bits) 0x115d-0x116d (16) +0x1160|1b f1 e4 04 a6 8b c3 33 9f 18 a1 6d ea| |.......3...m.| | diff --git a/format/negentropy/testdata/smalljustfingerprints b/format/negentropy/testdata/smalljustfingerprints new file mode 100644 index 0000000000000000000000000000000000000000..fff074d48b0a725bf09f070f4890115625939640 GIT binary patch literal 320 zcmV-G0l)rXhPSJHC4^;wnlpTC00Ek4<9io+P_wRaWX#4WxncqV z6akzQfhZiFI7!v})fBh8Wvu}L<^lWnMIT)v=lV9TK9LTeQWXLLR{=^JCWSr*>BBCx z8y)odt1toq<^dQ$;&aGLu{2K|P8HdzXOaQ{0dErSBS46TQ}GK9!qhmdp8)}c0anu2 zmh|871gkcio6n@!9s&V}0Y4i&iUF7a)pkxT=DqzVg#rN-0eq_PthL|bNvaQjbR+^6 ziU9$G0q3~H-pd}YMO>wELV@EXQvv~c0YIE0V`~X>V&4*7-}`NpLjnO?0rN5-i|&G~ z`0bJ?Q|?p+e*ypj{610ru(>H_..| fingerprint: "fbf7451f5d22e7fa36ae3e910e9f5215" (raw bits) 0x43-0x53 (16) +0x050|9f 52 15 |.R. | + | | | [4]{}: bound 0x53-0x67 (20) +0x050| 02 | . | timestamp_delta: 1 (2024-09-18 13:51:31) 0x53-0x54 (1) +0x050| 01 | . | id_prefix_size: 1 0x54-0x55 (1) +0x050| 57 | W | id_prefix: "57" (raw bits) 0x55-0x56 (1) +0x050| 01 | . | mode: "fingerprint" (1) 0x56-0x57 (1) +0x050| 4a 1b 26 85 3e 06 e9 c3 2e| J.&.>....| fingerprint: "4a1b26853e06e9c32eb41b1df4f9ab30" (raw bits) 0x57-0x67 (16) +0x060|b4 1b 1d f4 f9 ab 30 |......0 | + | | | [5]{}: bound 0x67-0x7b (20) +0x060| 02 | . | timestamp_delta: 1 (2024-09-18 13:51:31) 0x67-0x68 (1) +0x060| 01 | . | id_prefix_size: 1 0x68-0x69 (1) +0x060| e6 | . | id_prefix: "e6" (raw bits) 0x69-0x6a (1) +0x060| 01 | . | mode: "fingerprint" (1) 0x6a-0x6b (1) +0x060| 18 40 e2 73 c8| .@.s.| fingerprint: "1840e273c84bb1344f1d4e15d9aa6792" (raw bits) 0x6b-0x7b (16) +0x070|4b b1 34 4f 1d 4e 15 d9 aa 67 92 |K.4O.N...g. | + | | | [6]{}: bound 0x7b-0x8e (19) +0x070| 02 | . | timestamp_delta: 1 (2024-09-18 13:51:31) 0x7b-0x7c (1) +0x070| 00 | . | id_prefix_size: 0 0x7c-0x7d (1) +0x070| 01 | . | mode: "fingerprint" (1) 0x7d-0x7e (1) +0x070| 6f 12| o.| fingerprint: "6f12ee2340888653f10b0ec2d438ac9f" (raw bits) 0x7e-0x8e (16) +0x080|ee 23 40 88 86 53 f1 0b 0e c2 d4 38 ac 9f |.#@..S.....8.. | + | | | [7]{}: bound 0x8e-0xa2 (20) +0x080| 01 | . | timestamp_delta: 0 (2024-09-18 13:51:30) 0x8e-0x8f (1) +0x080| 01| .| id_prefix_size: 1 0x8f-0x90 (1) +0x090|84 |. | id_prefix: "84" (raw bits) 0x90-0x91 (1) +0x090| 01 | . | mode: "fingerprint" (1) 0x91-0x92 (1) +0x090| 56 d2 d7 96 f4 df f0 04 ab 36 9b 9b cf a4| V........6....| fingerprint: "56d2d796f4dff004ab369b9bcfa4d81e" (raw bits) 0x92-0xa2 (16) +0x0a0|d8 1e |.. | + | | | [8]{}: bound 0xa2-0xb6 (20) +0x0a0| 02 | . | timestamp_delta: 1 (2024-09-18 13:51:30) 0xa2-0xa3 (1) +0x0a0| 01 | . | id_prefix_size: 1 0xa3-0xa4 (1) +0x0a0| 87 | . | id_prefix: "87" (raw bits) 0xa4-0xa5 (1) +0x0a0| 01 | . | mode: "fingerprint" (1) 0xa5-0xa6 (1) +0x0a0| 3f 1b 3c 8a 01 98 00 d5 76 4e| ?.<.....vN| fingerprint: "3f1b3c8a019800d5764e2de6bdfd2785" (raw bits) 0xa6-0xb6 (16) +0x0b0|2d e6 bd fd 27 85 |-...'. | + | | | [9]{}: bound 0xb6-0xca (20) +0x0b0| 02 | . | timestamp_delta: 1 (2024-09-18 13:51:30) 0xb6-0xb7 (1) +0x0b0| 01 | . | id_prefix_size: 1 0xb7-0xb8 (1) +0x0b0| 14 | . | id_prefix: "14" (raw bits) 0xb8-0xb9 (1) +0x0b0| 01 | . | mode: "fingerprint" (1) 0xb9-0xba (1) +0x0b0| 7c aa f0 ac b5 df| |.....| fingerprint: "7caaf0acb5dfe249aa0f7f742402168a" (raw bits) 0xba-0xca (16) +0x0c0|e2 49 aa 0f 7f 74 24 02 16 8a |.I...t$... | + | | | [10]{}: bound 0xca-0xde (20) +0x0c0| 01 | . | timestamp_delta: 0 (2024-09-18 13:51:29) 0xca-0xcb (1) +0x0c0| 01 | . | id_prefix_size: 1 0xcb-0xcc (1) +0x0c0| 83 | . | id_prefix: "83" (raw bits) 0xcc-0xcd (1) +0x0c0| 01 | . | mode: "fingerprint" (1) 0xcd-0xce (1) +0x0c0| e7 b8| ..| fingerprint: "e7b8c4decb1eae455ca5714281e32453" (raw bits) 0xce-0xde (16) +0x0d0|c4 de cb 1e ae 45 5c a5 71 42 81 e3 24 53 |.....E\.qB..$S | + | | | [11]{}: bound 0xde-0xf2 (20) +0x0d0| 02 | . | timestamp_delta: 1 (2024-09-18 13:51:29) 0xde-0xdf (1) +0x0d0| 01| .| id_prefix_size: 1 0xdf-0xe0 (1) +0x0e0|7a |z | id_prefix: "7a" (raw bits) 0xe0-0xe1 (1) +0x0e0| 01 | . | mode: "fingerprint" (1) 0xe1-0xe2 (1) +0x0e0| 40 9c 22 63 6b 09 73 62 df 12 5d df fb 6d| @."ck.sb..]..m| fingerprint: "409c22636b097362df125ddffb6d9443" (raw bits) 0xe2-0xf2 (16) +0x0f0|94 43 |.C | + | | | [12]{}: bound 0xf2-0x106 (20) +0x0f0| 02 | . | timestamp_delta: 1 (2024-09-18 13:51:29) 0xf2-0xf3 (1) +0x0f0| 01 | . | id_prefix_size: 1 0xf3-0xf4 (1) +0x0f0| 5b | [ | id_prefix: "5b" (raw bits) 0xf4-0xf5 (1) +0x0f0| 01 | . | mode: "fingerprint" (1) 0xf5-0xf6 (1) +0x0f0| f3 32 20 8b ee 82 ac f8 ed 92| .2 .......| fingerprint: "f332208bee82acf8ed922853ee54057f" (raw bits) 0xf6-0x106 (16) +0x100|28 53 ee 54 05 7f |(S.T.. | + | | | [13]{}: bound 0x106-0x119 (19) +0x100| 02 | . | timestamp_delta: 1 (2024-09-18 13:51:29) 0x106-0x107 (1) +0x100| 00 | . | id_prefix_size: 0 0x107-0x108 (1) +0x100| 01 | . | mode: "fingerprint" (1) 0x108-0x109 (1) +0x100| fc 3e 51 fd b0 b9 29| .>Q...)| fingerprint: "fc3e51fdb0b92966e38017f795990385" (raw bits) 0x109-0x119 (16) +0x110|66 e3 80 17 f7 95 99 03 85 |f........ | + | | | [14]{}: bound 0x119-0x12d (20) +0x110| 01 | . | timestamp_delta: 0 (2024-09-18 13:51:28) 0x119-0x11a (1) +0x110| 01 | . | id_prefix_size: 1 0x11a-0x11b (1) +0x110| cc | . | id_prefix: "cc" (raw bits) 0x11b-0x11c (1) +0x110| 01 | . | mode: "fingerprint" (1) 0x11c-0x11d (1) +0x110| 42 8c e0| B..| fingerprint: "428ce0c96d49f15b50143e4fb228cb93" (raw bits) 0x11d-0x12d (16) +0x120|c9 6d 49 f1 5b 50 14 3e 4f b2 28 cb 93 |.mI.[P.>O.(.. | + | | | [15]{}: bound 0x12d-0x140 (19) +0x120| 00 | . | timestamp_delta: -1 (infinity) 0x12d-0x12e (1) +0x120| 00 | . | id_prefix_size: 0 0x12e-0x12f (1) +0x120| 01| .| mode: "fingerprint" (1) 0x12f-0x130 (1) +0x130|31 71 2d 30 e5 29 6a 7a 45 d0 7b ba 45 2d 61 cd|1q-0.)jzE.{.E-a.| fingerprint: "31712d30e5296a7a45d07bba452d61cd" (raw bits) 0x130-0x140 (16) From 8f9a005776cd24ee67086cccaf751b453bca40dd Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Wed, 18 Sep 2024 23:33:05 -0300 Subject: [PATCH 2/4] negentropy: timestamp description as UTC. --- format/negentropy/negentropy.go | 8 +- .../testdata/bigmessagewitheverything.fqtest | 398 +++++++++--------- .../testdata/smalljustfingerprints.fqtest | 32 +- 3 files changed, 218 insertions(+), 220 deletions(-) diff --git a/format/negentropy/negentropy.go b/format/negentropy/negentropy.go index 62d47694f..721d7f66b 100644 --- a/format/negentropy/negentropy.go +++ b/format/negentropy/negentropy.go @@ -43,15 +43,13 @@ type timestampTranslator struct{ last time.Time } func (tt *timestampTranslator) MapSint(s scalar.Sint) (scalar.Sint, error) { if s.Actual == 0 { s.Description = "infinity" - s.Actual = -1 tt.last = time.Unix(math.MaxInt64, 0) return s, nil } else { - s.Actual-- - timestamp := tt.last.Add(time.Second * time.Duration(s.Actual-1)) + s.Description = timestamp.UTC().Format(time.DateTime + " UTC") + s.Sym = timestamp.Unix() tt.last = timestamp - s.Description = timestamp.Format(time.DateTime) return s, nil } } @@ -67,7 +65,7 @@ func decodeNegentropyMessage(d *decode.D) any { } d.FieldStructArrayLoop("bounds", "bound", d.NotEnd, func(d *decode.D) { - d.FieldSintFn("timestamp_delta", decodeVarInt, tt) + d.FieldSintFn("timestamp", decodeVarInt, tt) size := d.FieldSintFn("id_prefix_size", decodeVarInt) if size > 32 { diff --git a/format/negentropy/testdata/bigmessagewitheverything.fqtest b/format/negentropy/testdata/bigmessagewitheverything.fqtest index 0f8738881..238f1a78e 100644 --- a/format/negentropy/testdata/bigmessagewitheverything.fqtest +++ b/format/negentropy/testdata/bigmessagewitheverything.fqtest @@ -3,281 +3,281 @@ $ fq -d negentropy dv bigmessagewitheverything 0x0000|61 |a | version: 97 0x0-0x1 (1) | | | bounds[0:199]: 0x1-0x116d (4460) | | | [0]{}: bound 0x1-0x14 (19) -0x0000| 1b | . | timestamp_delta: 26 (1970-01-01 00:00:25) 0x1-0x2 (1) +0x0000| 1b | . | timestamp: 26 (27) (1970-01-01 00:00:26 UTC) 0x1-0x2 (1) 0x0000| 00 | . | id_prefix_size: 0 0x2-0x3 (1) 0x0000| 01 | . | mode: "fingerprint" (1) 0x3-0x4 (1) 0x0000| dd a1 66 e3 d0 b3 93 ef 35 0e 43 25| ..f.....5.C%| fingerprint: "dda166e3d0b393ef350e432523408dd7" (raw bits) 0x4-0x14 (16) 0x0010|23 40 8d d7 |#@.. | | | | [1]{}: bound 0x14-0x27 (19) -0x0010| 07 | . | timestamp_delta: 6 (1970-01-01 00:00:30) 0x14-0x15 (1) +0x0010| 07 | . | timestamp: 32 (7) (1970-01-01 00:00:32 UTC) 0x14-0x15 (1) 0x0010| 00 | . | id_prefix_size: 0 0x15-0x16 (1) 0x0010| 01 | . | mode: "fingerprint" (1) 0x16-0x17 (1) 0x0010| 76 61 14 8b 50 48 13 21 9f| va..PH.!.| fingerprint: "7661148b504813219fb62a1b531651de" (raw bits) 0x17-0x27 (16) 0x0020|b6 2a 1b 53 16 51 de |.*.S.Q. | | | | [2]{}: bound 0x27-0x3a (19) -0x0020| 07 | . | timestamp_delta: 6 (1970-01-01 00:00:35) 0x27-0x28 (1) +0x0020| 07 | . | timestamp: 38 (7) (1970-01-01 00:00:38 UTC) 0x27-0x28 (1) 0x0020| 00 | . | id_prefix_size: 0 0x28-0x29 (1) 0x0020| 01 | . | mode: "fingerprint" (1) 0x29-0x2a (1) 0x0020| a1 cd 37 c2 d0 25| ..7..%| fingerprint: "a1cd37c2d0257af4de61ac6dc837988e" (raw bits) 0x2a-0x3a (16) 0x0030|7a f4 de 61 ac 6d c8 37 98 8e |z..a.m.7.. | | | | [3]{}: bound 0x3a-0x4d (19) -0x0030| 07 | . | timestamp_delta: 6 (1970-01-01 00:00:40) 0x3a-0x3b (1) +0x0030| 07 | . | timestamp: 44 (7) (1970-01-01 00:00:44 UTC) 0x3a-0x3b (1) 0x0030| 00 | . | id_prefix_size: 0 0x3b-0x3c (1) 0x0030| 01 | . | mode: "fingerprint" (1) 0x3c-0x3d (1) 0x0030| 4c 27 c4| L'.| fingerprint: "4c27c4f6d04f4dd806673352ea068722" (raw bits) 0x3d-0x4d (16) 0x0040|f6 d0 4f 4d d8 06 67 33 52 ea 06 87 22 |..OM..g3R..." | | | | [4]{}: bound 0x4d-0x60 (19) -0x0040| 07 | . | timestamp_delta: 6 (1970-01-01 00:00:45) 0x4d-0x4e (1) +0x0040| 07 | . | timestamp: 50 (7) (1970-01-01 00:00:50 UTC) 0x4d-0x4e (1) 0x0040| 00 | . | id_prefix_size: 0 0x4e-0x4f (1) 0x0040| 01| .| mode: "fingerprint" (1) 0x4f-0x50 (1) 0x0050|13 7c 18 d1 42 bd ce 9b cc 57 4b c3 91 8b 4a c0|.|..B....WK...J.| fingerprint: "137c18d142bdce9bcc574bc3918b4ac0" (raw bits) 0x50-0x60 (16) | | | [5]{}: bound 0x60-0x73 (19) -0x0060|07 |. | timestamp_delta: 6 (1970-01-01 00:00:50) 0x60-0x61 (1) +0x0060|07 |. | timestamp: 56 (7) (1970-01-01 00:00:56 UTC) 0x60-0x61 (1) 0x0060| 00 | . | id_prefix_size: 0 0x61-0x62 (1) 0x0060| 01 | . | mode: "fingerprint" (1) 0x62-0x63 (1) 0x0060| 63 bb f5 7c 1d 3c 63 92 71 ff 3c bb 0a| c..|..G| fingerprint: "4da3b9235e3a2edb6cfa4b3eeb47d771" (raw bits) 0xc2-0xd2 (16) 0x00d0|d7 71 |.q | | | | [11]{}: bound 0xd2-0xe5 (19) -0x00d0| 07 | . | timestamp_delta: 6 (1970-01-01 00:01:20) 0xd2-0xd3 (1) +0x00d0| 07 | . | timestamp: 92 (7) (1970-01-01 00:01:32 UTC) 0xd2-0xd3 (1) 0x00d0| 00 | . | id_prefix_size: 0 0xd3-0xd4 (1) 0x00d0| 01 | . | mode: "fingerprint" (1) 0xd4-0xd5 (1) 0x00d0| 1d 24 5c ef 39 f5 3c 5d 21 82 cc| .$\.9.<]!..| fingerprint: "1d245cef39f53c5d2182cc14e78455b1" (raw bits) 0xd5-0xe5 (16) 0x00e0|14 e7 84 55 b1 |...U. | | | | [12]{}: bound 0xe5-0xf8 (19) -0x00e0| 07 | . | timestamp_delta: 6 (1970-01-01 00:01:25) 0xe5-0xe6 (1) +0x00e0| 07 | . | timestamp: 98 (7) (1970-01-01 00:01:38 UTC) 0xe5-0xe6 (1) 0x00e0| 00 | . | id_prefix_size: 0 0xe6-0xe7 (1) 0x00e0| 01 | . | mode: "fingerprint" (1) 0xe7-0xe8 (1) 0x00e0| 0b f5 b1 49 8f e8 6f 20| ...I..o | fingerprint: "0bf5b1498fe86f205b98362e29583e43" (raw bits) 0xe8-0xf8 (16) 0x00f0|5b 98 36 2e 29 58 3e 43 |[.6.)X>C | | | | [13]{}: bound 0xf8-0x10b (19) -0x00f0| 07 | . | timestamp_delta: 6 (1970-01-01 00:01:30) 0xf8-0xf9 (1) +0x00f0| 07 | . | timestamp: 104 (7) (1970-01-01 00:01:44 UTC) 0xf8-0xf9 (1) 0x00f0| 00 | . | id_prefix_size: 0 0xf9-0xfa (1) 0x00f0| 01 | . | mode: "fingerprint" (1) 0xfa-0xfb (1) 0x00f0| b9 d4 28 1a 9f| ..(..| fingerprint: "b9d4281a9f6cad1e6129b20c1553121a" (raw bits) 0xfb-0x10b (16) 0x0100|6c ad 1e 61 29 b2 0c 15 53 12 1a |l..a)...S.. | | | | [14]{}: bound 0x10b-0x11e (19) -0x0100| 07 | . | timestamp_delta: 6 (1970-01-01 00:01:35) 0x10b-0x10c (1) +0x0100| 07 | . | timestamp: 110 (7) (1970-01-01 00:01:50 UTC) 0x10b-0x10c (1) 0x0100| 00 | . | id_prefix_size: 0 0x10c-0x10d (1) 0x0100| 01 | . | mode: "fingerprint" (1) 0x10d-0x10e (1) 0x0100| ad ec| ..| fingerprint: "adecbf548009aba5ee81d3736d6ea44f" (raw bits) 0x10e-0x11e (16) 0x0110|bf 54 80 09 ab a5 ee 81 d3 73 6d 6e a4 4f |.T.......smn.O | | | | [15]{}: bound 0x11e-0x131 (19) -0x0110| 06 | . | timestamp_delta: 5 (1970-01-01 00:01:39) 0x11e-0x11f (1) +0x0110| 06 | . | timestamp: 115 (6) (1970-01-01 00:01:55 UTC) 0x11e-0x11f (1) 0x0110| 00| .| id_prefix_size: 0 0x11f-0x120 (1) 0x0120|01 |. | mode: "fingerprint" (1) 0x120-0x121 (1) 0x0120| ce 07 d4 b3 d3 45 34 21 ee 9d f0 60 06 c1 b0| .....E4!...`...| fingerprint: "ce07d4b3d3453421ee9df06006c1b068" (raw bits) 0x121-0x131 (16) 0x0130|68 |h | | | | [16]{}: bound 0x131-0x144 (19) -0x0130| 04 | . | timestamp_delta: 3 (1970-01-01 00:01:41) 0x131-0x132 (1) +0x0130| 04 | . | timestamp: 118 (4) (1970-01-01 00:01:58 UTC) 0x131-0x132 (1) 0x0130| 00 | . | id_prefix_size: 0 0x132-0x133 (1) 0x0130| 01 | . | mode: "fingerprint" (1) 0x133-0x134 (1) 0x0130| 71 73 c7 b7 04 e9 da fe c9 79 de 32| qs.......y.2| fingerprint: "7173c7b704e9dafec979de325b5c0407" (raw bits) 0x134-0x144 (16) 0x0140|5b 5c 04 07 |[\.. | | | | [17]{}: bound 0x144-0x157 (19) -0x0140| 04 | . | timestamp_delta: 3 (1970-01-01 00:01:43) 0x144-0x145 (1) +0x0140| 04 | . | timestamp: 121 (4) (1970-01-01 00:02:01 UTC) 0x144-0x145 (1) 0x0140| 00 | . | id_prefix_size: 0 0x145-0x146 (1) 0x0140| 01 | . | mode: "fingerprint" (1) 0x146-0x147 (1) 0x0140| 20 79 7b db 19 37 76 0c d5| y{..7v..| fingerprint: "20797bdb1937760cd51c471fda41d7d1" (raw bits) 0x147-0x157 (16) 0x0150|1c 47 1f da 41 d7 d1 |.G..A.. | | | | [18]{}: bound 0x157-0x16a (19) -0x0150| 04 | . | timestamp_delta: 3 (1970-01-01 00:01:45) 0x157-0x158 (1) +0x0150| 04 | . | timestamp: 124 (4) (1970-01-01 00:02:04 UTC) 0x157-0x158 (1) 0x0150| 00 | . | id_prefix_size: 0 0x158-0x159 (1) 0x0150| 01 | . | mode: "fingerprint" (1) 0x159-0x15a (1) 0x0150| 90 e4 5e 9b 6c 6c| ..^.ll| fingerprint: "90e45e9b6c6c871130a41ff4ba83a91f" (raw bits) 0x15a-0x16a (16) 0x0160|87 11 30 a4 1f f4 ba 83 a9 1f |..0....... | | | | [19]{}: bound 0x16a-0x17d (19) -0x0160| 03 | . | timestamp_delta: 2 (1970-01-01 00:01:46) 0x16a-0x16b (1) +0x0160| 03 | . | timestamp: 126 (3) (1970-01-01 00:02:06 UTC) 0x16a-0x16b (1) 0x0160| 00 | . | id_prefix_size: 0 0x16b-0x16c (1) 0x0160| 01 | . | mode: "fingerprint" (1) 0x16c-0x16d (1) 0x0160| 4e af 16| N..| fingerprint: "4eaf1631a94803214b707e3410498846" (raw bits) 0x16d-0x17d (16) 0x0170|31 a9 48 03 21 4b 70 7e 34 10 49 88 46 |1.H.!Kp~4.I.F | | | | [20]{}: bound 0x17d-0x190 (19) -0x0170| 03 | . | timestamp_delta: 2 (1970-01-01 00:01:47) 0x17d-0x17e (1) +0x0170| 03 | . | timestamp: 128 (3) (1970-01-01 00:02:08 UTC) 0x17d-0x17e (1) 0x0170| 00 | . | id_prefix_size: 0 0x17e-0x17f (1) 0x0170| 01| .| mode: "fingerprint" (1) 0x17f-0x180 (1) 0x0180|d5 78 d2 97 2d 05 36 f4 0b e9 1b 74 c2 61 ec ee|.x..-.6....t.a..| fingerprint: "d578d2972d0536f40be91b74c261ecee" (raw bits) 0x180-0x190 (16) | | | [21]{}: bound 0x190-0x1a3 (19) -0x0190|03 |. | timestamp_delta: 2 (1970-01-01 00:01:48) 0x190-0x191 (1) +0x0190|03 |. | timestamp: 130 (3) (1970-01-01 00:02:10 UTC) 0x190-0x191 (1) 0x0190| 00 | . | id_prefix_size: 0 0x191-0x192 (1) 0x0190| 01 | . | mode: "fingerprint" (1) 0x192-0x193 (1) 0x0190| 0e bf d7 96 24 d2 89 2c 7d 40 71 91 72| ....$..,}@q.r| fingerprint: "0ebfd79624d2892c7d40719172794e51" (raw bits) 0x193-0x1a3 (16) 0x01a0|79 4e 51 |yNQ | | | | [22]{}: bound 0x1a3-0x1b6 (19) -0x01a0| 03 | . | timestamp_delta: 2 (1970-01-01 00:01:49) 0x1a3-0x1a4 (1) +0x01a0| 03 | . | timestamp: 132 (3) (1970-01-01 00:02:12 UTC) 0x1a3-0x1a4 (1) 0x01a0| 00 | . | id_prefix_size: 0 0x1a4-0x1a5 (1) 0x01a0| 01 | . | mode: "fingerprint" (1) 0x1a5-0x1a6 (1) 0x01a0| e4 c0 74 f8 03 8a 21 80 76 ef| ..t...!.v.| fingerprint: "e4c074f8038a218076ef742fbbd72e38" (raw bits) 0x1a6-0x1b6 (16) 0x01b0|74 2f bb d7 2e 38 |t/...8 | | | | [23]{}: bound 0x1b6-0x1c9 (19) -0x01b0| 03 | . | timestamp_delta: 2 (1970-01-01 00:01:50) 0x1b6-0x1b7 (1) +0x01b0| 03 | . | timestamp: 134 (3) (1970-01-01 00:02:14 UTC) 0x1b6-0x1b7 (1) 0x01b0| 00 | . | id_prefix_size: 0 0x1b7-0x1b8 (1) 0x01b0| 01 | . | mode: "fingerprint" (1) 0x1b8-0x1b9 (1) 0x01b0| db 3f fa 62 12 e2 4c| .?.b..L| fingerprint: "db3ffa6212e24ca93ee910017aa18677" (raw bits) 0x1b9-0x1c9 (16) 0x01c0|a9 3e e9 10 01 7a a1 86 77 |.>...z..w | | | | [24]{}: bound 0x1c9-0x1dc (19) -0x01c0| 03 | . | timestamp_delta: 2 (1970-01-01 00:01:51) 0x1c9-0x1ca (1) +0x01c0| 03 | . | timestamp: 136 (3) (1970-01-01 00:02:16 UTC) 0x1c9-0x1ca (1) 0x01c0| 00 | . | id_prefix_size: 0 0x1ca-0x1cb (1) 0x01c0| 01 | . | mode: "fingerprint" (1) 0x1cb-0x1cc (1) 0x01c0| 4d d0 45 1e| M.E.| fingerprint: "4dd0451e95f25f3d38aa9e383777588f" (raw bits) 0x1cc-0x1dc (16) 0x01d0|95 f2 5f 3d 38 aa 9e 38 37 77 58 8f |.._=8..87wX. | | | | [25]{}: bound 0x1dc-0x1ef (19) -0x01d0| 03 | . | timestamp_delta: 2 (1970-01-01 00:01:52) 0x1dc-0x1dd (1) +0x01d0| 03 | . | timestamp: 138 (3) (1970-01-01 00:02:18 UTC) 0x1dc-0x1dd (1) 0x01d0| 00 | . | id_prefix_size: 0 0x1dd-0x1de (1) 0x01d0| 01 | . | mode: "fingerprint" (1) 0x1de-0x1df (1) 0x01d0| 10| .| fingerprint: "107640bce20a5f11b2be649ab54e13ce" (raw bits) 0x1df-0x1ef (16) 0x01e0|76 40 bc e2 0a 5f 11 b2 be 64 9a b5 4e 13 ce |v@..._...d..N.. | | | | [26]{}: bound 0x1ef-0x202 (19) -0x01e0| 03| .| timestamp_delta: 2 (1970-01-01 00:01:53) 0x1ef-0x1f0 (1) +0x01e0| 03| .| timestamp: 140 (3) (1970-01-01 00:02:20 UTC) 0x1ef-0x1f0 (1) 0x01f0|00 |. | id_prefix_size: 0 0x1f0-0x1f1 (1) 0x01f0| 01 | . | mode: "fingerprint" (1) 0x1f1-0x1f2 (1) 0x01f0| 66 95 38 80 3d be e5 14 bb 42 b9 6f 74 78| f.8.=....B.otx| fingerprint: "669538803dbee514bb42b96f74788b47" (raw bits) 0x1f2-0x202 (16) 0x0200|8b 47 |.G | | | | [27]{}: bound 0x202-0x215 (19) -0x0200| 03 | . | timestamp_delta: 2 (1970-01-01 00:01:54) 0x202-0x203 (1) +0x0200| 03 | . | timestamp: 142 (3) (1970-01-01 00:02:22 UTC) 0x202-0x203 (1) 0x0200| 00 | . | id_prefix_size: 0 0x203-0x204 (1) 0x0200| 01 | . | mode: "fingerprint" (1) 0x204-0x205 (1) 0x0200| 61 69 2b 52 ae 14 4a 89 d9 18 ab| ai+R..J....| fingerprint: "61692b52ae144a89d918abf929386a71" (raw bits) 0x205-0x215 (16) 0x0210|f9 29 38 6a 71 |.)8jq | | | | [28]{}: bound 0x215-0x228 (19) -0x0210| 03 | . | timestamp_delta: 2 (1970-01-01 00:01:55) 0x215-0x216 (1) +0x0210| 03 | . | timestamp: 144 (3) (1970-01-01 00:02:24 UTC) 0x215-0x216 (1) 0x0210| 00 | . | id_prefix_size: 0 0x216-0x217 (1) 0x0210| 01 | . | mode: "fingerprint" (1) 0x217-0x218 (1) 0x0210| c3 5a 9e f8 8e 95 3f 27| .Z....?'| fingerprint: "c35a9ef88e953f27b8268024902bd509" (raw bits) 0x218-0x228 (16) 0x0220|b8 26 80 24 90 2b d5 09 |.&.$.+.. | | | | [29]{}: bound 0x228-0x23b (19) -0x0220| 03 | . | timestamp_delta: 2 (1970-01-01 00:01:56) 0x228-0x229 (1) +0x0220| 03 | . | timestamp: 146 (3) (1970-01-01 00:02:26 UTC) 0x228-0x229 (1) 0x0220| 00 | . | id_prefix_size: 0 0x229-0x22a (1) 0x0220| 01 | . | mode: "fingerprint" (1) 0x22a-0x22b (1) 0x0220| 91 c4 c3 18 10| .....| fingerprint: "91c4c31810092287d3707d0f7458bfdd" (raw bits) 0x22b-0x23b (16) 0x0230|09 22 87 d3 70 7d 0f 74 58 bf dd |."..p}.tX.. | | | | [30]{}: bound 0x23b-0x24e (19) -0x0230| 03 | . | timestamp_delta: 2 (1970-01-01 00:01:57) 0x23b-0x23c (1) +0x0230| 03 | . | timestamp: 148 (3) (1970-01-01 00:02:28 UTC) 0x23b-0x23c (1) 0x0230| 00 | . | id_prefix_size: 0 0x23c-0x23d (1) 0x0230| 01 | . | mode: "fingerprint" (1) 0x23d-0x23e (1) 0x0230| 47 29| G)| fingerprint: "4729532d64e675374a94511824050d05" (raw bits) 0x23e-0x24e (16) 0x0240|53 2d 64 e6 75 37 4a 94 51 18 24 05 0d 05 |S-d.u7J.Q.$... | | | | [31]{}: bound 0x24e-0x261 (19) -0x0240| 53 | S | timestamp_delta: 82 (1970-01-01 00:03:18) 0x24e-0x24f (1) +0x0240| 53 | S | timestamp: 230 (83) (1970-01-01 00:03:50 UTC) 0x24e-0x24f (1) 0x0240| 00| .| id_prefix_size: 0 0x24f-0x250 (1) 0x0250|01 |. | mode: "fingerprint" (1) 0x250-0x251 (1) 0x0250| e2 78 eb 49 90 c5 ef 5b 15 66 87 14 c2 cc 09| .x.I...[.f.....| fingerprint: "e278eb4990c5ef5b15668714c2cc0918" (raw bits) 0x251-0x261 (16) 0x0260|18 |. | | | | [32]{}: bound 0x261-0x265 (4) -0x0260| 74 | t | timestamp_delta: 115 (1970-01-01 00:05:12) 0x261-0x262 (1) +0x0260| 74 | t | timestamp: 345 (116) (1970-01-01 00:05:45 UTC) 0x261-0x262 (1) 0x0260| 00 | . | id_prefix_size: 0 0x262-0x263 (1) 0x0260| 02 | . | mode: "idlist" (2) 0x263-0x264 (1) | | | idlist{}: 0x264-0x265 (1) 0x0260| 00 | . | num: 0 0x264-0x265 (1) | | | ids[0:0]: 0x265-0x265 (0) | | | [33]{}: bound 0x265-0x269 (4) -0x0260| 74 | t | timestamp_delta: 115 (1970-01-01 00:07:06) 0x265-0x266 (1) +0x0260| 74 | t | timestamp: 460 (116) (1970-01-01 00:07:40 UTC) 0x265-0x266 (1) 0x0260| 00 | . | id_prefix_size: 0 0x266-0x267 (1) 0x0260| 02 | . | mode: "idlist" (2) 0x267-0x268 (1) | | | idlist{}: 0x268-0x269 (1) 0x0260| 00 | . | num: 0 0x268-0x269 (1) | | | ids[0:0]: 0x269-0x269 (0) | | | [34]{}: bound 0x269-0x26d (4) -0x0260| 74 | t | timestamp_delta: 115 (1970-01-01 00:09:00) 0x269-0x26a (1) +0x0260| 74 | t | timestamp: 575 (116) (1970-01-01 00:09:35 UTC) 0x269-0x26a (1) 0x0260| 00 | . | id_prefix_size: 0 0x26a-0x26b (1) 0x0260| 02 | . | mode: "idlist" (2) 0x26b-0x26c (1) | | | idlist{}: 0x26c-0x26d (1) 0x0260| 00 | . | num: 0 0x26c-0x26d (1) | | | ids[0:0]: 0x26d-0x26d (0) | | | [35]{}: bound 0x26d-0x271 (4) -0x0260| 74 | t | timestamp_delta: 115 (1970-01-01 00:10:54) 0x26d-0x26e (1) +0x0260| 74 | t | timestamp: 690 (116) (1970-01-01 00:11:30 UTC) 0x26d-0x26e (1) 0x0260| 00 | . | id_prefix_size: 0 0x26e-0x26f (1) 0x0260| 02| .| mode: "idlist" (2) 0x26f-0x270 (1) | | | idlist{}: 0x270-0x271 (1) 0x0270|00 |. | num: 0 0x270-0x271 (1) | | | ids[0:0]: 0x271-0x271 (0) | | | [36]{}: bound 0x271-0x275 (4) -0x0270| 74 | t | timestamp_delta: 115 (1970-01-01 00:12:48) 0x271-0x272 (1) +0x0270| 74 | t | timestamp: 805 (116) (1970-01-01 00:13:25 UTC) 0x271-0x272 (1) 0x0270| 00 | . | id_prefix_size: 0 0x272-0x273 (1) 0x0270| 02 | . | mode: "idlist" (2) 0x273-0x274 (1) | | | idlist{}: 0x274-0x275 (1) 0x0270| 00 | . | num: 0 0x274-0x275 (1) | | | ids[0:0]: 0x275-0x275 (0) | | | [37]{}: bound 0x275-0x279 (4) -0x0270| 74 | t | timestamp_delta: 115 (1970-01-01 00:14:42) 0x275-0x276 (1) +0x0270| 74 | t | timestamp: 920 (116) (1970-01-01 00:15:20 UTC) 0x275-0x276 (1) 0x0270| 00 | . | id_prefix_size: 0 0x276-0x277 (1) 0x0270| 02 | . | mode: "idlist" (2) 0x277-0x278 (1) | | | idlist{}: 0x278-0x279 (1) 0x0270| 00 | . | num: 0 0x278-0x279 (1) | | | ids[0:0]: 0x279-0x279 (0) | | | [38]{}: bound 0x279-0x27d (4) -0x0270| 74 | t | timestamp_delta: 115 (1970-01-01 00:16:36) 0x279-0x27a (1) +0x0270| 74 | t | timestamp: 1035 (116) (1970-01-01 00:17:15 UTC) 0x279-0x27a (1) 0x0270| 00 | . | id_prefix_size: 0 0x27a-0x27b (1) 0x0270| 02 | . | mode: "idlist" (2) 0x27b-0x27c (1) | | | idlist{}: 0x27c-0x27d (1) 0x0270| 00 | . | num: 0 0x27c-0x27d (1) | | | ids[0:0]: 0x27d-0x27d (0) | | | [39]{}: bound 0x27d-0x281 (4) -0x0270| 74 | t | timestamp_delta: 115 (1970-01-01 00:18:30) 0x27d-0x27e (1) +0x0270| 74 | t | timestamp: 1150 (116) (1970-01-01 00:19:10 UTC) 0x27d-0x27e (1) 0x0270| 00 | . | id_prefix_size: 0 0x27e-0x27f (1) 0x0270| 02| .| mode: "idlist" (2) 0x27f-0x280 (1) | | | idlist{}: 0x280-0x281 (1) 0x0280|00 |. | num: 0 0x280-0x281 (1) | | | ids[0:0]: 0x281-0x281 (0) | | | [40]{}: bound 0x281-0x285 (4) -0x0280| 74 | t | timestamp_delta: 115 (1970-01-01 00:20:24) 0x281-0x282 (1) +0x0280| 74 | t | timestamp: 1265 (116) (1970-01-01 00:21:05 UTC) 0x281-0x282 (1) 0x0280| 00 | . | id_prefix_size: 0 0x282-0x283 (1) 0x0280| 02 | . | mode: "idlist" (2) 0x283-0x284 (1) | | | idlist{}: 0x284-0x285 (1) 0x0280| 00 | . | num: 0 0x284-0x285 (1) | | | ids[0:0]: 0x285-0x285 (0) | | | [41]{}: bound 0x285-0x289 (4) -0x0280| 74 | t | timestamp_delta: 115 (1970-01-01 00:22:18) 0x285-0x286 (1) +0x0280| 74 | t | timestamp: 1380 (116) (1970-01-01 00:23:00 UTC) 0x285-0x286 (1) 0x0280| 00 | . | id_prefix_size: 0 0x286-0x287 (1) 0x0280| 02 | . | mode: "idlist" (2) 0x287-0x288 (1) | | | idlist{}: 0x288-0x289 (1) 0x0280| 00 | . | num: 0 0x288-0x289 (1) | | | ids[0:0]: 0x289-0x289 (0) | | | [42]{}: bound 0x289-0x28d (4) -0x0280| 74 | t | timestamp_delta: 115 (1970-01-01 00:24:12) 0x289-0x28a (1) +0x0280| 74 | t | timestamp: 1495 (116) (1970-01-01 00:24:55 UTC) 0x289-0x28a (1) 0x0280| 00 | . | id_prefix_size: 0 0x28a-0x28b (1) 0x0280| 02 | . | mode: "idlist" (2) 0x28b-0x28c (1) | | | idlist{}: 0x28c-0x28d (1) 0x0280| 00 | . | num: 0 0x28c-0x28d (1) | | | ids[0:0]: 0x28d-0x28d (0) | | | [43]{}: bound 0x28d-0x291 (4) -0x0280| 74 | t | timestamp_delta: 115 (1970-01-01 00:26:06) 0x28d-0x28e (1) +0x0280| 74 | t | timestamp: 1610 (116) (1970-01-01 00:26:50 UTC) 0x28d-0x28e (1) 0x0280| 00 | . | id_prefix_size: 0 0x28e-0x28f (1) 0x0280| 02| .| mode: "idlist" (2) 0x28f-0x290 (1) | | | idlist{}: 0x290-0x291 (1) 0x0290|00 |. | num: 0 0x290-0x291 (1) | | | ids[0:0]: 0x291-0x291 (0) | | | [44]{}: bound 0x291-0x595 (772) -0x0290| 73 | s | timestamp_delta: 114 (1970-01-01 00:27:59) 0x291-0x292 (1) +0x0290| 73 | s | timestamp: 1724 (115) (1970-01-01 00:28:44 UTC) 0x291-0x292 (1) 0x0290| 00 | . | id_prefix_size: 0 0x292-0x293 (1) 0x0290| 02 | . | mode: "idlist" (2) 0x293-0x294 (1) | | | idlist{}: 0x294-0x595 (769) @@ -356,209 +356,209 @@ $ fq -d negentropy dv bigmessagewitheverything 0x0580|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| 0x0590|00 00 00 17 23 |....# | | | | [45]{}: bound 0x595-0x599 (4) -0x0590| 82 0b | .. | timestamp_delta: 266 (1970-01-01 00:32:24) 0x595-0x597 (2) +0x0590| 82 0b | .. | timestamp: 1990 (267) (1970-01-01 00:33:10 UTC) 0x595-0x597 (2) 0x0590| 00 | . | id_prefix_size: 0 0x597-0x598 (1) 0x0590| 00 | . | mode: "skip" (0) 0x598-0x599 (1) | | | [46]{}: bound 0x599-0x5ac (19) -0x0590| 09 | . | timestamp_delta: 8 (1970-01-01 00:32:31) 0x599-0x59a (1) +0x0590| 09 | . | timestamp: 1998 (9) (1970-01-01 00:33:18 UTC) 0x599-0x59a (1) 0x0590| 00 | . | id_prefix_size: 0 0x59a-0x59b (1) 0x0590| 01 | . | mode: "fingerprint" (1) 0x59b-0x59c (1) 0x0590| d9 ab d7 92| ....| fingerprint: "d9abd792cabed05dfc78ebaaf733a351" (raw bits) 0x59c-0x5ac (16) 0x05a0|ca be d0 5d fc 78 eb aa f7 33 a3 51 |...].x...3.Q | | | | [47]{}: bound 0x5ac-0x5bf (19) -0x05a0| 09 | . | timestamp_delta: 8 (1970-01-01 00:32:38) 0x5ac-0x5ad (1) +0x05a0| 09 | . | timestamp: 2006 (9) (1970-01-01 00:33:26 UTC) 0x5ac-0x5ad (1) 0x05a0| 00 | . | id_prefix_size: 0 0x5ad-0x5ae (1) 0x05a0| 01 | . | mode: "fingerprint" (1) 0x5ae-0x5af (1) 0x05a0| 65| e| fingerprint: "653646a92fd16e578a7e022fa5e69d82" (raw bits) 0x5af-0x5bf (16) 0x05b0|36 46 a9 2f d1 6e 57 8a 7e 02 2f a5 e6 9d 82 |6F./.nW.~./.... | | | | [48]{}: bound 0x5bf-0x5d2 (19) -0x05b0| 09| .| timestamp_delta: 8 (1970-01-01 00:32:45) 0x5bf-0x5c0 (1) +0x05b0| 09| .| timestamp: 2014 (9) (1970-01-01 00:33:34 UTC) 0x5bf-0x5c0 (1) 0x05c0|00 |. | id_prefix_size: 0 0x5c0-0x5c1 (1) 0x05c0| 01 | . | mode: "fingerprint" (1) 0x5c1-0x5c2 (1) 0x05c0| 3f e6 2c 26 96 e4 f1 f7 64 de 7f ff c4 17| ?.,&....d.....| fingerprint: "3fe62c2696e4f1f764de7fffc417b9ab" (raw bits) 0x5c2-0x5d2 (16) 0x05d0|b9 ab |.. | | | | [49]{}: bound 0x5d2-0x5e5 (19) -0x05d0| 09 | . | timestamp_delta: 8 (1970-01-01 00:32:52) 0x5d2-0x5d3 (1) +0x05d0| 09 | . | timestamp: 2022 (9) (1970-01-01 00:33:42 UTC) 0x5d2-0x5d3 (1) 0x05d0| 00 | . | id_prefix_size: 0 0x5d3-0x5d4 (1) 0x05d0| 01 | . | mode: "fingerprint" (1) 0x5d4-0x5d5 (1) 0x05d0| 1d 0f 67 d2 3b 92 16 73 e5 3f ad| ..g.;..s.?.| fingerprint: "1d0f67d23b921673e53fade4f0eba84c" (raw bits) 0x5d5-0x5e5 (16) 0x05e0|e4 f0 eb a8 4c |....L | | | | [50]{}: bound 0x5e5-0x5f8 (19) -0x05e0| 08 | . | timestamp_delta: 7 (1970-01-01 00:32:58) 0x5e5-0x5e6 (1) +0x05e0| 08 | . | timestamp: 2029 (8) (1970-01-01 00:33:49 UTC) 0x5e5-0x5e6 (1) 0x05e0| 00 | . | id_prefix_size: 0 0x5e6-0x5e7 (1) 0x05e0| 01 | . | mode: "fingerprint" (1) 0x5e7-0x5e8 (1) 0x05e0| d9 7d a8 15 19 ff 2f ad| .}..../.| fingerprint: "d97da81519ff2fad37ca7a875699ecd7" (raw bits) 0x5e8-0x5f8 (16) 0x05f0|37 ca 7a 87 56 99 ec d7 |7.z.V... | | | | [51]{}: bound 0x5f8-0x60b (19) -0x05f0| 08 | . | timestamp_delta: 7 (1970-01-01 00:33:04) 0x5f8-0x5f9 (1) +0x05f0| 08 | . | timestamp: 2036 (8) (1970-01-01 00:33:56 UTC) 0x5f8-0x5f9 (1) 0x05f0| 00 | . | id_prefix_size: 0 0x5f9-0x5fa (1) 0x05f0| 01 | . | mode: "fingerprint" (1) 0x5fa-0x5fb (1) 0x05f0| ad 13 64 45 06| ..dE.| fingerprint: "ad1364450644680e3057ee3ba3cce43f" (raw bits) 0x5fb-0x60b (16) 0x0600|44 68 0e 30 57 ee 3b a3 cc e4 3f |Dh.0W.;...? | | | | [52]{}: bound 0x60b-0x61e (19) -0x0600| 08 | . | timestamp_delta: 7 (1970-01-01 00:33:10) 0x60b-0x60c (1) +0x0600| 08 | . | timestamp: 2043 (8) (1970-01-01 00:34:03 UTC) 0x60b-0x60c (1) 0x0600| 00 | . | id_prefix_size: 0 0x60c-0x60d (1) 0x0600| 01 | . | mode: "fingerprint" (1) 0x60d-0x60e (1) 0x0600| b5 66| .f| fingerprint: "b566b73ff10c6c36c9c6e1a4a937fa16" (raw bits) 0x60e-0x61e (16) 0x0610|b7 3f f1 0c 6c 36 c9 c6 e1 a4 a9 37 fa 16 |.?..l6.....7.. | | | | [53]{}: bound 0x61e-0x631 (19) -0x0610| 08 | . | timestamp_delta: 7 (1970-01-01 00:33:16) 0x61e-0x61f (1) +0x0610| 08 | . | timestamp: 2050 (8) (1970-01-01 00:34:10 UTC) 0x61e-0x61f (1) 0x0610| 00| .| id_prefix_size: 0 0x61f-0x620 (1) 0x0620|01 |. | mode: "fingerprint" (1) 0x620-0x621 (1) 0x0620| 18 01 9b f5 1b 81 b4 c1 55 a3 06 98 24 7d 3b| ........U...$};| fingerprint: "18019bf51b81b4c155a30698247d3bda" (raw bits) 0x621-0x631 (16) 0x0630|da |. | | | | [54]{}: bound 0x631-0x644 (19) -0x0630| 08 | . | timestamp_delta: 7 (1970-01-01 00:33:22) 0x631-0x632 (1) +0x0630| 08 | . | timestamp: 2057 (8) (1970-01-01 00:34:17 UTC) 0x631-0x632 (1) 0x0630| 00 | . | id_prefix_size: 0 0x632-0x633 (1) 0x0630| 01 | . | mode: "fingerprint" (1) 0x633-0x634 (1) 0x0630| c2 54 3a dc de c6 1f 5c a5 77 47 a9| .T:....\.wG.| fingerprint: "c2543adcdec61f5ca57747a95f2757a3" (raw bits) 0x634-0x644 (16) 0x0640|5f 27 57 a3 |_'W. | | | | [55]{}: bound 0x644-0x657 (19) -0x0640| 08 | . | timestamp_delta: 7 (1970-01-01 00:33:28) 0x644-0x645 (1) +0x0640| 08 | . | timestamp: 2064 (8) (1970-01-01 00:34:24 UTC) 0x644-0x645 (1) 0x0640| 00 | . | id_prefix_size: 0 0x645-0x646 (1) 0x0640| 01 | . | mode: "fingerprint" (1) 0x646-0x647 (1) 0x0640| 59 33 54 e4 fc eb 61 ce f2| Y3T...a..| fingerprint: "593354e4fceb61cef2dd34a3a4a95519" (raw bits) 0x647-0x657 (16) 0x0650|dd 34 a3 a4 a9 55 19 |.4...U. | | | | [56]{}: bound 0x657-0x66a (19) -0x0650| 08 | . | timestamp_delta: 7 (1970-01-01 00:33:34) 0x657-0x658 (1) +0x0650| 08 | . | timestamp: 2071 (8) (1970-01-01 00:34:31 UTC) 0x657-0x658 (1) 0x0650| 00 | . | id_prefix_size: 0 0x658-0x659 (1) 0x0650| 01 | . | mode: "fingerprint" (1) 0x659-0x65a (1) 0x0650| 49 f7 f8 8a 9c bf| I.....| fingerprint: "49f7f88a9cbff628b5f3633ee281b220" (raw bits) 0x65a-0x66a (16) 0x0660|f6 28 b5 f3 63 3e e2 81 b2 20 |.(..c>... | | | | [57]{}: bound 0x66a-0x67d (19) -0x0660| 08 | . | timestamp_delta: 7 (1970-01-01 00:33:40) 0x66a-0x66b (1) +0x0660| 08 | . | timestamp: 2078 (8) (1970-01-01 00:34:38 UTC) 0x66a-0x66b (1) 0x0660| 00 | . | id_prefix_size: 0 0x66b-0x66c (1) 0x0660| 01 | . | mode: "fingerprint" (1) 0x66c-0x66d (1) 0x0660| c5 ee 00| ...| fingerprint: "c5ee0031090734fb4047b1e148ca59ad" (raw bits) 0x66d-0x67d (16) 0x0670|31 09 07 34 fb 40 47 b1 e1 48 ca 59 ad |1..4.@G..H.Y. | | | | [58]{}: bound 0x67d-0x690 (19) -0x0670| 08 | . | timestamp_delta: 7 (1970-01-01 00:33:46) 0x67d-0x67e (1) +0x0670| 08 | . | timestamp: 2085 (8) (1970-01-01 00:34:45 UTC) 0x67d-0x67e (1) 0x0670| 00 | . | id_prefix_size: 0 0x67e-0x67f (1) 0x0670| 01| .| mode: "fingerprint" (1) 0x67f-0x680 (1) 0x0680|29 ad e2 61 b2 4b 5c eb 02 26 eb 04 af 8d 92 5a|)..a.K\..&.....Z| fingerprint: "29ade261b24b5ceb0226eb04af8d925a" (raw bits) 0x680-0x690 (16) | | | [59]{}: bound 0x690-0x6a3 (19) -0x0690|08 |. | timestamp_delta: 7 (1970-01-01 00:33:52) 0x690-0x691 (1) +0x0690|08 |. | timestamp: 2092 (8) (1970-01-01 00:34:52 UTC) 0x690-0x691 (1) 0x0690| 00 | . | id_prefix_size: 0 0x691-0x692 (1) 0x0690| 01 | . | mode: "fingerprint" (1) 0x692-0x693 (1) 0x0690| f3 53 24 69 0f 7d d9 a7 89 e6 41 f5 96| .S$i.}....A..| fingerprint: "f35324690f7dd9a789e641f5960a631b" (raw bits) 0x693-0x6a3 (16) 0x06a0|0a 63 1b |.c. | | | | [60]{}: bound 0x6a3-0x6b6 (19) -0x06a0| 08 | . | timestamp_delta: 7 (1970-01-01 00:33:58) 0x6a3-0x6a4 (1) +0x06a0| 08 | . | timestamp: 2099 (8) (1970-01-01 00:34:59 UTC) 0x6a3-0x6a4 (1) 0x06a0| 00 | . | id_prefix_size: 0 0x6a4-0x6a5 (1) 0x06a0| 01 | . | mode: "fingerprint" (1) 0x6a5-0x6a6 (1) 0x06a0| 40 5f a9 00 fb a5 5d 41 2f 4a| @_....]A/J| fingerprint: "405fa900fba55d412f4a7ca29475ea50" (raw bits) 0x6a6-0x6b6 (16) 0x06b0|7c a2 94 75 ea 50 ||..u.P | | | | [61]{}: bound 0x6b6-0x6c9 (19) -0x06b0| 08 | . | timestamp_delta: 7 (1970-01-01 00:34:04) 0x6b6-0x6b7 (1) +0x06b0| 08 | . | timestamp: 2106 (8) (1970-01-01 00:35:06 UTC) 0x6b6-0x6b7 (1) 0x06b0| 00 | . | id_prefix_size: 0 0x6b7-0x6b8 (1) 0x06b0| 01 | . | mode: "fingerprint" (1) 0x6b8-0x6b9 (1) 0x06b0| 12 4f a3 97 02 a9 9c| .O.....| fingerprint: "124fa39702a99ce518ff02b45be6df9d" (raw bits) 0x6b9-0x6c9 (16) 0x06c0|e5 18 ff 02 b4 5b e6 df 9d |.....[... | | | | [62]{}: bound 0x6c9-0x6cd (4) -0x06c0| 86 25 | .% | timestamp_delta: 804 (1970-01-01 00:47:27) 0x6c9-0x6cb (2) +0x06c0| 86 25 | .% | timestamp: 2910 (805) (1970-01-01 00:48:30 UTC) 0x6c9-0x6cb (2) 0x06c0| 00 | . | id_prefix_size: 0 0x6cb-0x6cc (1) 0x06c0| 00 | . | mode: "skip" (0) 0x6cc-0x6cd (1) | | | [63]{}: bound 0x6cd-0x6e0 (19) -0x06c0| 08 | . | timestamp_delta: 7 (1970-01-01 00:47:33) 0x6cd-0x6ce (1) +0x06c0| 08 | . | timestamp: 2917 (8) (1970-01-01 00:48:37 UTC) 0x6cd-0x6ce (1) 0x06c0| 00 | . | id_prefix_size: 0 0x6ce-0x6cf (1) 0x06c0| 01| .| mode: "fingerprint" (1) 0x6cf-0x6d0 (1) 0x06d0|c9 28 15 e7 0a 04 ca f4 61 10 33 d0 78 c3 de b4|.(......a.3.x...| fingerprint: "c92815e70a04caf4611033d078c3deb4" (raw bits) 0x6d0-0x6e0 (16) | | | [64]{}: bound 0x6e0-0x6f3 (19) -0x06e0|08 |. | timestamp_delta: 7 (1970-01-01 00:47:39) 0x6e0-0x6e1 (1) +0x06e0|08 |. | timestamp: 2924 (8) (1970-01-01 00:48:44 UTC) 0x6e0-0x6e1 (1) 0x06e0| 00 | . | id_prefix_size: 0 0x6e1-0x6e2 (1) 0x06e0| 01 | . | mode: "fingerprint" (1) 0x6e2-0x6e3 (1) 0x06e0| 36 31 05 0a cc 18 b6 55 52 56 34 03 f9| 61.....URV4..| fingerprint: "3631050acc18b65552563403f963d1df" (raw bits) 0x6e3-0x6f3 (16) 0x06f0|63 d1 df |c.. | | | | [65]{}: bound 0x6f3-0x706 (19) -0x06f0| 08 | . | timestamp_delta: 7 (1970-01-01 00:47:45) 0x6f3-0x6f4 (1) +0x06f0| 08 | . | timestamp: 2931 (8) (1970-01-01 00:48:51 UTC) 0x6f3-0x6f4 (1) 0x06f0| 00 | . | id_prefix_size: 0 0x6f4-0x6f5 (1) 0x06f0| 01 | . | mode: "fingerprint" (1) 0x6f5-0x6f6 (1) 0x06f0| fe 40 73 ec 4d 7b 18 eb a1 76| .@s.M{...v| fingerprint: "fe4073ec4d7b18eba176efbec0315f3d" (raw bits) 0x6f6-0x706 (16) 0x0700|ef be c0 31 5f 3d |...1_= | | | | [66]{}: bound 0x706-0x719 (19) -0x0700| 08 | . | timestamp_delta: 7 (1970-01-01 00:47:51) 0x706-0x707 (1) +0x0700| 08 | . | timestamp: 2938 (8) (1970-01-01 00:48:58 UTC) 0x706-0x707 (1) 0x0700| 00 | . | id_prefix_size: 0 0x707-0x708 (1) 0x0700| 01 | . | mode: "fingerprint" (1) 0x708-0x709 (1) 0x0700| 43 11 5d 3e b6 5c f8| C.]>.\.| fingerprint: "43115d3eb65cf8e4cd6ee0cb8e91e9c9" (raw bits) 0x709-0x719 (16) 0x0710|e4 cd 6e e0 cb 8e 91 e9 c9 |..n...... | | | | [67]{}: bound 0x719-0x72c (19) -0x0710| 08 | . | timestamp_delta: 7 (1970-01-01 00:47:57) 0x719-0x71a (1) +0x0710| 08 | . | timestamp: 2945 (8) (1970-01-01 00:49:05 UTC) 0x719-0x71a (1) 0x0710| 00 | . | id_prefix_size: 0 0x71a-0x71b (1) 0x0710| 01 | . | mode: "fingerprint" (1) 0x71b-0x71c (1) 0x0710| aa 64 17 96| .d..| fingerprint: "aa641796d50d854bb2dc36170b644368" (raw bits) 0x71c-0x72c (16) 0x0720|d5 0d 85 4b b2 dc 36 17 0b 64 43 68 |...K..6..dCh | | | | [68]{}: bound 0x72c-0x73f (19) -0x0720| 08 | . | timestamp_delta: 7 (1970-01-01 00:48:03) 0x72c-0x72d (1) +0x0720| 08 | . | timestamp: 2952 (8) (1970-01-01 00:49:12 UTC) 0x72c-0x72d (1) 0x0720| 00 | . | id_prefix_size: 0 0x72d-0x72e (1) 0x0720| 01 | . | mode: "fingerprint" (1) 0x72e-0x72f (1) 0x0720| 8d| .| fingerprint: "8d9d1e412e225581ce2075fd20d965fd" (raw bits) 0x72f-0x73f (16) 0x0730|9d 1e 41 2e 22 55 81 ce 20 75 fd 20 d9 65 fd |..A."U.. u. .e. | | | | [69]{}: bound 0x73f-0x752 (19) -0x0730| 07| .| timestamp_delta: 6 (1970-01-01 00:48:08) 0x73f-0x740 (1) +0x0730| 07| .| timestamp: 2958 (7) (1970-01-01 00:49:18 UTC) 0x73f-0x740 (1) 0x0740|00 |. | id_prefix_size: 0 0x740-0x741 (1) 0x0740| 01 | . | mode: "fingerprint" (1) 0x741-0x742 (1) 0x0740| e7 1b 7d 18 e5 ee 03 bb bb 23 cc 1a 4b 94| ..}......#..K.| fingerprint: "e71b7d18e5ee03bbbb23cc1a4b943251" (raw bits) 0x742-0x752 (16) 0x0750|32 51 |2Q | | | | [70]{}: bound 0x752-0x765 (19) -0x0750| 07 | . | timestamp_delta: 6 (1970-01-01 00:48:13) 0x752-0x753 (1) +0x0750| 07 | . | timestamp: 2964 (7) (1970-01-01 00:49:24 UTC) 0x752-0x753 (1) 0x0750| 00 | . | id_prefix_size: 0 0x753-0x754 (1) 0x0750| 01 | . | mode: "fingerprint" (1) 0x754-0x755 (1) 0x0750| 44 0b 2b 50 12 9a eb 72 94 d2 fd| D.+P...r...| fingerprint: "440b2b50129aeb7294d2fd19c884e7cd" (raw bits) 0x755-0x765 (16) 0x0760|19 c8 84 e7 cd |..... | | | | [71]{}: bound 0x765-0x778 (19) -0x0760| 07 | . | timestamp_delta: 6 (1970-01-01 00:48:18) 0x765-0x766 (1) +0x0760| 07 | . | timestamp: 2970 (7) (1970-01-01 00:49:30 UTC) 0x765-0x766 (1) 0x0760| 00 | . | id_prefix_size: 0 0x766-0x767 (1) 0x0760| 01 | . | mode: "fingerprint" (1) 0x767-0x768 (1) 0x0760| b8 9b 03 c6 da 8a ff bc| ........| fingerprint: "b89b03c6da8affbca1f90541ac77a85d" (raw bits) 0x768-0x778 (16) 0x0770|a1 f9 05 41 ac 77 a8 5d |...A.w.] | | | | [72]{}: bound 0x778-0x78b (19) -0x0770| 07 | . | timestamp_delta: 6 (1970-01-01 00:48:23) 0x778-0x779 (1) +0x0770| 07 | . | timestamp: 2976 (7) (1970-01-01 00:49:36 UTC) 0x778-0x779 (1) 0x0770| 00 | . | id_prefix_size: 0 0x779-0x77a (1) 0x0770| 01 | . | mode: "fingerprint" (1) 0x77a-0x77b (1) 0x0770| e6 4f aa 52 c8| .O.R.| fingerprint: "e64faa52c87f2d7167139de6a66e067c" (raw bits) 0x77b-0x78b (16) 0x0780|7f 2d 71 67 13 9d e6 a6 6e 06 7c |.-qg....n.| | | | | [73]{}: bound 0x78b-0x79e (19) -0x0780| 07 | . | timestamp_delta: 6 (1970-01-01 00:48:28) 0x78b-0x78c (1) +0x0780| 07 | . | timestamp: 2982 (7) (1970-01-01 00:49:42 UTC) 0x78b-0x78c (1) 0x0780| 00 | . | id_prefix_size: 0 0x78c-0x78d (1) 0x0780| 01 | . | mode: "fingerprint" (1) 0x78d-0x78e (1) 0x0780| e6 80| ..| fingerprint: "e68007eaa2035fb01d505f580287e9a1" (raw bits) 0x78e-0x79e (16) 0x0790|07 ea a2 03 5f b0 1d 50 5f 58 02 87 e9 a1 |...._..P_X.... | | | | [74]{}: bound 0x79e-0x7b1 (19) -0x0790| 07 | . | timestamp_delta: 6 (1970-01-01 00:48:33) 0x79e-0x79f (1) +0x0790| 07 | . | timestamp: 2988 (7) (1970-01-01 00:49:48 UTC) 0x79e-0x79f (1) 0x0790| 00| .| id_prefix_size: 0 0x79f-0x7a0 (1) 0x07a0|01 |. | mode: "fingerprint" (1) 0x7a0-0x7a1 (1) 0x07a0| 15 96 1f 8e 6b ba 20 86 c2 98 90 b4 97 63 85| ....k. ......c.| fingerprint: "15961f8e6bba2086c29890b49763859a" (raw bits) 0x7a1-0x7b1 (16) 0x07b0|9a |. | | | | [75]{}: bound 0x7b1-0x7c4 (19) -0x07b0| 07 | . | timestamp_delta: 6 (1970-01-01 00:48:38) 0x7b1-0x7b2 (1) +0x07b0| 07 | . | timestamp: 2994 (7) (1970-01-01 00:49:54 UTC) 0x7b1-0x7b2 (1) 0x07b0| 00 | . | id_prefix_size: 0 0x7b2-0x7b3 (1) 0x07b0| 01 | . | mode: "fingerprint" (1) 0x7b3-0x7b4 (1) 0x07b0| bc 68 dc 5b 90 17 0b 80 34 81 dd cd| .h.[....4...| fingerprint: "bc68dc5b90170b803481ddcda0651634" (raw bits) 0x7b4-0x7c4 (16) 0x07c0|a0 65 16 34 |.e.4 | | | | [76]{}: bound 0x7c4-0x7d7 (19) -0x07c0| 07 | . | timestamp_delta: 6 (1970-01-01 00:48:43) 0x7c4-0x7c5 (1) +0x07c0| 07 | . | timestamp: 3000 (7) (1970-01-01 00:50:00 UTC) 0x7c4-0x7c5 (1) 0x07c0| 00 | . | id_prefix_size: 0 0x7c5-0x7c6 (1) 0x07c0| 01 | . | mode: "fingerprint" (1) 0x7c6-0x7c7 (1) 0x07c0| de 49 c3 e4 25 1e a2 e9 fb| .I..%....| fingerprint: "de49c3e4251ea2e9fb97357d90074b7a" (raw bits) 0x7c7-0x7d7 (16) 0x07d0|97 35 7d 90 07 4b 7a |.5}..Kz | | | | [77]{}: bound 0x7d7-0x7ea (19) -0x07d0| 07 | . | timestamp_delta: 6 (1970-01-01 00:48:48) 0x7d7-0x7d8 (1) +0x07d0| 07 | . | timestamp: 3006 (7) (1970-01-01 00:50:06 UTC) 0x7d7-0x7d8 (1) 0x07d0| 00 | . | id_prefix_size: 0 0x7d8-0x7d9 (1) 0x07d0| 01 | . | mode: "fingerprint" (1) 0x7d9-0x7da (1) 0x07d0| 2a cb 89 81 38 09| *...8.| fingerprint: "2acb8981380911f8a58d5051e5ca299b" (raw bits) 0x7da-0x7ea (16) 0x07e0|11 f8 a5 8d 50 51 e5 ca 29 9b |....PQ..). | | | | [78]{}: bound 0x7ea-0x7fd (19) -0x07e0| 07 | . | timestamp_delta: 6 (1970-01-01 00:48:53) 0x7ea-0x7eb (1) +0x07e0| 07 | . | timestamp: 3012 (7) (1970-01-01 00:50:12 UTC) 0x7ea-0x7eb (1) 0x07e0| 00 | . | id_prefix_size: 0 0x7eb-0x7ec (1) 0x07e0| 01 | . | mode: "fingerprint" (1) 0x7ec-0x7ed (1) 0x07e0| 64 e8 d4| d..| fingerprint: "64e8d4d0c2e8312d007832fa6fa9b5fa" (raw bits) 0x7ed-0x7fd (16) 0x07f0|d0 c2 e8 31 2d 00 78 32 fa 6f a9 b5 fa |...1-.x2.o... | | | | [79]{}: bound 0x7fd-0x801 (4) -0x07f0| 82 7d | .} | timestamp_delta: 380 (1970-01-01 00:55:12) 0x7fd-0x7ff (2) +0x07f0| 82 7d | .} | timestamp: 3392 (381) (1970-01-01 00:56:32 UTC) 0x7fd-0x7ff (2) 0x07f0| 00| .| id_prefix_size: 0 0x7ff-0x800 (1) 0x0800|00 |. | mode: "skip" (0) 0x800-0x801 (1) | | | [80]{}: bound 0x801-0x905 (260) -0x0800| 1b | . | timestamp_delta: 26 (1970-01-01 00:55:37) 0x801-0x802 (1) +0x0800| 1b | . | timestamp: 3418 (27) (1970-01-01 00:56:58 UTC) 0x801-0x802 (1) 0x0800| 00 | . | id_prefix_size: 0 0x802-0x803 (1) 0x0800| 02 | . | mode: "idlist" (2) 0x803-0x804 (1) | | | idlist{}: 0x804-0x905 (257) @@ -589,328 +589,328 @@ $ fq -d negentropy dv bigmessagewitheverything 0x08f0|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| 0x0900|00 00 00 33 99 |...3. | | | | [81]{}: bound 0x905-0x909 (4) -0x0900| 1b | . | timestamp_delta: 26 (1970-01-01 00:56:02) 0x905-0x906 (1) +0x0900| 1b | . | timestamp: 3444 (27) (1970-01-01 00:57:24 UTC) 0x905-0x906 (1) 0x0900| 00 | . | id_prefix_size: 0 0x906-0x907 (1) 0x0900| 02 | . | mode: "idlist" (2) 0x907-0x908 (1) | | | idlist{}: 0x908-0x909 (1) 0x0900| 00 | . | num: 0 0x908-0x909 (1) | | | ids[0:0]: 0x909-0x909 (0) | | | [82]{}: bound 0x909-0x90d (4) -0x0900| 1b | . | timestamp_delta: 26 (1970-01-01 00:56:27) 0x909-0x90a (1) +0x0900| 1b | . | timestamp: 3470 (27) (1970-01-01 00:57:50 UTC) 0x909-0x90a (1) 0x0900| 00 | . | id_prefix_size: 0 0x90a-0x90b (1) 0x0900| 02 | . | mode: "idlist" (2) 0x90b-0x90c (1) | | | idlist{}: 0x90c-0x90d (1) 0x0900| 00 | . | num: 0 0x90c-0x90d (1) | | | ids[0:0]: 0x90d-0x90d (0) | | | [83]{}: bound 0x90d-0x911 (4) -0x0900| 1b | . | timestamp_delta: 26 (1970-01-01 00:56:52) 0x90d-0x90e (1) +0x0900| 1b | . | timestamp: 3496 (27) (1970-01-01 00:58:16 UTC) 0x90d-0x90e (1) 0x0900| 00 | . | id_prefix_size: 0 0x90e-0x90f (1) 0x0900| 02| .| mode: "idlist" (2) 0x90f-0x910 (1) | | | idlist{}: 0x910-0x911 (1) 0x0910|00 |. | num: 0 0x910-0x911 (1) | | | ids[0:0]: 0x911-0x911 (0) | | | [84]{}: bound 0x911-0x915 (4) -0x0910| 1b | . | timestamp_delta: 26 (1970-01-01 00:57:17) 0x911-0x912 (1) +0x0910| 1b | . | timestamp: 3522 (27) (1970-01-01 00:58:42 UTC) 0x911-0x912 (1) 0x0910| 00 | . | id_prefix_size: 0 0x912-0x913 (1) 0x0910| 02 | . | mode: "idlist" (2) 0x913-0x914 (1) | | | idlist{}: 0x914-0x915 (1) 0x0910| 00 | . | num: 0 0x914-0x915 (1) | | | ids[0:0]: 0x915-0x915 (0) | | | [85]{}: bound 0x915-0x919 (4) -0x0910| 1b | . | timestamp_delta: 26 (1970-01-01 00:57:42) 0x915-0x916 (1) +0x0910| 1b | . | timestamp: 3548 (27) (1970-01-01 00:59:08 UTC) 0x915-0x916 (1) 0x0910| 00 | . | id_prefix_size: 0 0x916-0x917 (1) 0x0910| 02 | . | mode: "idlist" (2) 0x917-0x918 (1) | | | idlist{}: 0x918-0x919 (1) 0x0910| 00 | . | num: 0 0x918-0x919 (1) | | | ids[0:0]: 0x919-0x919 (0) | | | [86]{}: bound 0x919-0x91d (4) -0x0910| 1b | . | timestamp_delta: 26 (1970-01-01 00:58:07) 0x919-0x91a (1) +0x0910| 1b | . | timestamp: 3574 (27) (1970-01-01 00:59:34 UTC) 0x919-0x91a (1) 0x0910| 00 | . | id_prefix_size: 0 0x91a-0x91b (1) 0x0910| 02 | . | mode: "idlist" (2) 0x91b-0x91c (1) | | | idlist{}: 0x91c-0x91d (1) 0x0910| 00 | . | num: 0 0x91c-0x91d (1) | | | ids[0:0]: 0x91d-0x91d (0) | | | [87]{}: bound 0x91d-0x931 (20) -0x0910| 9a 66 | .f | timestamp_delta: 3429 (1970-01-01 01:55:15) 0x91d-0x91f (2) +0x0910| 9a 66 | .f | timestamp: 7003 (3430) (1970-01-01 01:56:43 UTC) 0x91d-0x91f (2) 0x0910| 00| .| id_prefix_size: 0 0x91f-0x920 (1) 0x0920|01 |. | mode: "fingerprint" (1) 0x920-0x921 (1) 0x0920| b6 31 63 d6 ab b8 79 9d d9 9d 61 3d f4 5b bb| .1c...y...a=.[.| fingerprint: "b63163d6abb8799dd99d613df45bbb92" (raw bits) 0x921-0x931 (16) 0x0930|92 |. | | | | [88]{}: bound 0x931-0x944 (19) -0x0930| 04 | . | timestamp_delta: 3 (1970-01-01 01:55:17) 0x931-0x932 (1) +0x0930| 04 | . | timestamp: 7006 (4) (1970-01-01 01:56:46 UTC) 0x931-0x932 (1) 0x0930| 00 | . | id_prefix_size: 0 0x932-0x933 (1) 0x0930| 01 | . | mode: "fingerprint" (1) 0x933-0x934 (1) 0x0930| d1 30 76 e1 57 40 30 68 6e 62 f5 e8| .0v.W@0hnb..| fingerprint: "d13076e1574030686e62f5e8e3f5c022" (raw bits) 0x934-0x944 (16) 0x0940|e3 f5 c0 22 |..." | | | | [89]{}: bound 0x944-0x957 (19) -0x0940| 04 | . | timestamp_delta: 3 (1970-01-01 01:55:19) 0x944-0x945 (1) +0x0940| 04 | . | timestamp: 7009 (4) (1970-01-01 01:56:49 UTC) 0x944-0x945 (1) 0x0940| 00 | . | id_prefix_size: 0 0x945-0x946 (1) 0x0940| 01 | . | mode: "fingerprint" (1) 0x946-0x947 (1) 0x0940| 2d 79 5b bf 59 32 30 fb cc| -y[.Y20..| fingerprint: "2d795bbf593230fbccd2b996cc212a29" (raw bits) 0x947-0x957 (16) 0x0950|d2 b9 96 cc 21 2a 29 |....!*) | | | | [90]{}: bound 0x957-0x96a (19) -0x0950| 04 | . | timestamp_delta: 3 (1970-01-01 01:55:21) 0x957-0x958 (1) +0x0950| 04 | . | timestamp: 7012 (4) (1970-01-01 01:56:52 UTC) 0x957-0x958 (1) 0x0950| 00 | . | id_prefix_size: 0 0x958-0x959 (1) 0x0950| 01 | . | mode: "fingerprint" (1) 0x959-0x95a (1) 0x0950| e1 dd 67 1b 24 ce| ..g.$.| fingerprint: "e1dd671b24ce46e438893589c8a9bd02" (raw bits) 0x95a-0x96a (16) 0x0960|46 e4 38 89 35 89 c8 a9 bd 02 |F.8.5..... | | | | [91]{}: bound 0x96a-0x97d (19) -0x0960| 04 | . | timestamp_delta: 3 (1970-01-01 01:55:23) 0x96a-0x96b (1) +0x0960| 04 | . | timestamp: 7015 (4) (1970-01-01 01:56:55 UTC) 0x96a-0x96b (1) 0x0960| 00 | . | id_prefix_size: 0 0x96b-0x96c (1) 0x0960| 01 | . | mode: "fingerprint" (1) 0x96c-0x96d (1) 0x0960| 81 5f 4c| ._L| fingerprint: "815f4c037984dbc47915d53f2879f494" (raw bits) 0x96d-0x97d (16) 0x0970|03 79 84 db c4 79 15 d5 3f 28 79 f4 94 |.y...y..?(y.. | | | | [92]{}: bound 0x97d-0x990 (19) -0x0970| 04 | . | timestamp_delta: 3 (1970-01-01 01:55:25) 0x97d-0x97e (1) +0x0970| 04 | . | timestamp: 7018 (4) (1970-01-01 01:56:58 UTC) 0x97d-0x97e (1) 0x0970| 00 | . | id_prefix_size: 0 0x97e-0x97f (1) 0x0970| 01| .| mode: "fingerprint" (1) 0x97f-0x980 (1) 0x0980|61 9a 1d 2f bb 6d 3a a8 de b4 7b ce 40 3c 68 0d|a../.m:...{.@g\: | | | | [97]{}: bound 0x9dc-0x9ef (19) -0x09d0| 04 | . | timestamp_delta: 3 (1970-01-01 01:55:35) 0x9dc-0x9dd (1) +0x09d0| 04 | . | timestamp: 7033 (4) (1970-01-01 01:57:13 UTC) 0x9dc-0x9dd (1) 0x09d0| 00 | . | id_prefix_size: 0 0x9dd-0x9de (1) 0x09d0| 01 | . | mode: "fingerprint" (1) 0x9de-0x9df (1) 0x09d0| 84| .| fingerprint: "84b401a7c0ccd20e0a4a2fef0f8c37a3" (raw bits) 0x9df-0x9ef (16) 0x09e0|b4 01 a7 c0 cc d2 0e 0a 4a 2f ef 0f 8c 37 a3 |........J/...7. | | | | [98]{}: bound 0x9ef-0xa02 (19) -0x09e0| 04| .| timestamp_delta: 3 (1970-01-01 01:55:37) 0x9ef-0x9f0 (1) +0x09e0| 04| .| timestamp: 7036 (4) (1970-01-01 01:57:16 UTC) 0x9ef-0x9f0 (1) 0x09f0|00 |. | id_prefix_size: 0 0x9f0-0x9f1 (1) 0x09f0| 01 | . | mode: "fingerprint" (1) 0x9f1-0x9f2 (1) 0x09f0| 9f 06 34 55 e5 ea 2e fe e8 c1 be 23 1a d9| ..4U.......#..| fingerprint: "9f063455e5ea2efee8c1be231ad9f123" (raw bits) 0x9f2-0xa02 (16) 0x0a00|f1 23 |.# | | | | [99]{}: bound 0xa02-0xa15 (19) -0x0a00| 04 | . | timestamp_delta: 3 (1970-01-01 01:55:39) 0xa02-0xa03 (1) +0x0a00| 04 | . | timestamp: 7039 (4) (1970-01-01 01:57:19 UTC) 0xa02-0xa03 (1) 0x0a00| 00 | . | id_prefix_size: 0 0xa03-0xa04 (1) 0x0a00| 01 | . | mode: "fingerprint" (1) 0xa04-0xa05 (1) 0x0a00| e9 00 b1 6c b4 d1 fa 4b 97 50 dd| ...l...K.P.| fingerprint: "e900b16cb4d1fa4b9750ddb9e41f45d3" (raw bits) 0xa05-0xa15 (16) 0x0a10|b9 e4 1f 45 d3 |...E. | | | | [100]{}: bound 0xa15-0xa28 (19) -0x0a10| 04 | . | timestamp_delta: 3 (1970-01-01 01:55:41) 0xa15-0xa16 (1) +0x0a10| 04 | . | timestamp: 7042 (4) (1970-01-01 01:57:22 UTC) 0xa15-0xa16 (1) 0x0a10| 00 | . | id_prefix_size: 0 0xa16-0xa17 (1) 0x0a10| 01 | . | mode: "fingerprint" (1) 0xa17-0xa18 (1) 0x0a10| 45 30 3f 44 99 cd 7f 73| E0?D...s| fingerprint: "45303f4499cd7f73b719df6084efb1d5" (raw bits) 0xa18-0xa28 (16) 0x0a20|b7 19 df 60 84 ef b1 d5 |...`.... | | | | [101]{}: bound 0xa28-0xa3b (19) -0x0a20| 03 | . | timestamp_delta: 2 (1970-01-01 01:55:42) 0xa28-0xa29 (1) +0x0a20| 03 | . | timestamp: 7044 (3) (1970-01-01 01:57:24 UTC) 0xa28-0xa29 (1) 0x0a20| 00 | . | id_prefix_size: 0 0xa29-0xa2a (1) 0x0a20| 01 | . | mode: "fingerprint" (1) 0xa2a-0xa2b (1) 0x0a20| 7b 82 a5 c5 21| {...!| fingerprint: "7b82a5c5210fb1186ad426fb489ff18d" (raw bits) 0xa2b-0xa3b (16) 0x0a30|0f b1 18 6a d4 26 fb 48 9f f1 8d |...j.&.H... | | | | [102]{}: bound 0xa3b-0xa4e (19) -0x0a30| 03 | . | timestamp_delta: 2 (1970-01-01 01:55:43) 0xa3b-0xa3c (1) +0x0a30| 03 | . | timestamp: 7046 (3) (1970-01-01 01:57:26 UTC) 0xa3b-0xa3c (1) 0x0a30| 00 | . | id_prefix_size: 0 0xa3c-0xa3d (1) 0x0a30| 01 | . | mode: "fingerprint" (1) 0xa3d-0xa3e (1) 0x0a30| 5b a6| [.| fingerprint: "5ba61cfc1e741ddbd49d4f4ff67b307f" (raw bits) 0xa3e-0xa4e (16) 0x0a40|1c fc 1e 74 1d db d4 9d 4f 4f f6 7b 30 7f |...t....OO.{0. | | | | [103]{}: bound 0xa4e-0xa52 (4) -0x0a40| 86 22| ."| timestamp_delta: 801 (1970-01-01 02:09:03) 0xa4e-0xa50 (2) +0x0a40| 86 22| ."| timestamp: 7847 (802) (1970-01-01 02:10:47 UTC) 0xa4e-0xa50 (2) 0x0a50|00 |. | id_prefix_size: 0 0xa50-0xa51 (1) 0x0a50| 00 | . | mode: "skip" (0) 0xa51-0xa52 (1) | | | [104]{}: bound 0xa52-0xa65 (19) -0x0a50| 11 | . | timestamp_delta: 16 (1970-01-01 02:09:18) 0xa52-0xa53 (1) +0x0a50| 11 | . | timestamp: 7863 (17) (1970-01-01 02:11:03 UTC) 0xa52-0xa53 (1) 0x0a50| 00 | . | id_prefix_size: 0 0xa53-0xa54 (1) 0x0a50| 01 | . | mode: "fingerprint" (1) 0xa54-0xa55 (1) 0x0a50| fb b8 f6 fa 42 b1 f2 68 34 0d bb| ....B..h4..| fingerprint: "fbb8f6fa42b1f268340dbbf2c7f09041" (raw bits) 0xa55-0xa65 (16) 0x0a60|f2 c7 f0 90 41 |....A | | | | [105]{}: bound 0xa65-0xa78 (19) -0x0a60| 11 | . | timestamp_delta: 16 (1970-01-01 02:09:33) 0xa65-0xa66 (1) +0x0a60| 11 | . | timestamp: 7879 (17) (1970-01-01 02:11:19 UTC) 0xa65-0xa66 (1) 0x0a60| 00 | . | id_prefix_size: 0 0xa66-0xa67 (1) 0x0a60| 01 | . | mode: "fingerprint" (1) 0xa67-0xa68 (1) 0x0a60| 4d b0 6a 05 e6 ca 6d f3| M.j...m.| fingerprint: "4db06a05e6ca6df33f485c5b93589a0d" (raw bits) 0xa68-0xa78 (16) 0x0a70|3f 48 5c 5b 93 58 9a 0d |?H\[.X.. | | | | [106]{}: bound 0xa78-0xa8b (19) -0x0a70| 11 | . | timestamp_delta: 16 (1970-01-01 02:09:48) 0xa78-0xa79 (1) +0x0a70| 11 | . | timestamp: 7895 (17) (1970-01-01 02:11:35 UTC) 0xa78-0xa79 (1) 0x0a70| 00 | . | id_prefix_size: 0 0xa79-0xa7a (1) 0x0a70| 01 | . | mode: "fingerprint" (1) 0xa7a-0xa7b (1) 0x0a70| 79 4f 02 89 f0| yO...| fingerprint: "794f0289f0416f4e787ec335e9dfde3f" (raw bits) 0xa7b-0xa8b (16) 0x0a80|41 6f 4e 78 7e c3 35 e9 df de 3f |AoNx~.5...? | | | | [107]{}: bound 0xa8b-0xa9e (19) -0x0a80| 11 | . | timestamp_delta: 16 (1970-01-01 02:10:03) 0xa8b-0xa8c (1) +0x0a80| 11 | . | timestamp: 7911 (17) (1970-01-01 02:11:51 UTC) 0xa8b-0xa8c (1) 0x0a80| 00 | . | id_prefix_size: 0 0xa8c-0xa8d (1) 0x0a80| 01 | . | mode: "fingerprint" (1) 0xa8d-0xa8e (1) 0x0a80| 90 ec| ..| fingerprint: "90ec216d90ef07d10c73e437f8374654" (raw bits) 0xa8e-0xa9e (16) 0x0a90|21 6d 90 ef 07 d1 0c 73 e4 37 f8 37 46 54 |!m.....s.7.7FT | | | | [108]{}: bound 0xa9e-0xab1 (19) -0x0a90| 11 | . | timestamp_delta: 16 (1970-01-01 02:10:18) 0xa9e-0xa9f (1) +0x0a90| 11 | . | timestamp: 7927 (17) (1970-01-01 02:12:07 UTC) 0xa9e-0xa9f (1) 0x0a90| 00| .| id_prefix_size: 0 0xa9f-0xaa0 (1) 0x0aa0|01 |. | mode: "fingerprint" (1) 0xaa0-0xaa1 (1) 0x0aa0| d2 b8 e0 6f 20 17 6e 21 de 8a 3b 58 cd ce 40| ...o .n!..;X..@| fingerprint: "d2b8e06f20176e21de8a3b58cdce4099" (raw bits) 0xaa1-0xab1 (16) 0x0ab0|99 |. | | | | [109]{}: bound 0xab1-0xac4 (19) -0x0ab0| 11 | . | timestamp_delta: 16 (1970-01-01 02:10:33) 0xab1-0xab2 (1) +0x0ab0| 11 | . | timestamp: 7943 (17) (1970-01-01 02:12:23 UTC) 0xab1-0xab2 (1) 0x0ab0| 00 | . | id_prefix_size: 0 0xab2-0xab3 (1) 0x0ab0| 01 | . | mode: "fingerprint" (1) 0xab3-0xab4 (1) 0x0ab0| 3e 70 e1 d0 8b ed 7d 62 06 db e5 b9| >p....}b....| fingerprint: "3e70e1d08bed7d6206dbe5b9fe7e62ff" (raw bits) 0xab4-0xac4 (16) 0x0ac0|fe 7e 62 ff |.~b. | | | | [110]{}: bound 0xac4-0xad7 (19) -0x0ac0| 11 | . | timestamp_delta: 16 (1970-01-01 02:10:48) 0xac4-0xac5 (1) +0x0ac0| 11 | . | timestamp: 7959 (17) (1970-01-01 02:12:39 UTC) 0xac4-0xac5 (1) 0x0ac0| 00 | . | id_prefix_size: 0 0xac5-0xac6 (1) 0x0ac0| 01 | . | mode: "fingerprint" (1) 0xac6-0xac7 (1) 0x0ac0| 58 2c 74 c6 24 0a f9 e9 ff| X,t.$....| fingerprint: "582c74c6240af9e9ff4626a42c7b2a05" (raw bits) 0xac7-0xad7 (16) 0x0ad0|46 26 a4 2c 7b 2a 05 |F&.,{*. | | | | [111]{}: bound 0xad7-0xaea (19) -0x0ad0| 11 | . | timestamp_delta: 16 (1970-01-01 02:11:03) 0xad7-0xad8 (1) +0x0ad0| 11 | . | timestamp: 7975 (17) (1970-01-01 02:12:55 UTC) 0xad7-0xad8 (1) 0x0ad0| 00 | . | id_prefix_size: 0 0xad8-0xad9 (1) 0x0ad0| 01 | . | mode: "fingerprint" (1) 0xad9-0xada (1) 0x0ad0| 3c 21 a7 e0 02 82| | fingerprint: "8758c5cc2bc56d535fd0ab4e3e7c844a" (raw bits) 0xb73-0xb83 (16) 0x0b80|7c 84 4a ||.J | | | | [120]{}: bound 0xb83-0xb88 (5) -0x0b80| 81 0b | .. | timestamp_delta: 138 (1970-01-01 02:49:15) 0xb83-0xb85 (2) +0x0b80| 81 0b | .. | timestamp: 10276 (139) (1970-01-01 02:51:16 UTC) 0xb83-0xb85 (2) 0x0b80| 00 | . | id_prefix_size: 0 0xb85-0xb86 (1) 0x0b80| 02 | . | mode: "idlist" (2) 0xb86-0xb87 (1) | | | idlist{}: 0xb87-0xb88 (1) 0x0b80| 00 | . | num: 0 0xb87-0xb88 (1) | | | ids[0:0]: 0xb88-0xb88 (0) | | | [121]{}: bound 0xb88-0xb8d (5) -0x0b80| 81 0b | .. | timestamp_delta: 138 (1970-01-01 02:51:32) 0xb88-0xb8a (2) +0x0b80| 81 0b | .. | timestamp: 10414 (139) (1970-01-01 02:53:34 UTC) 0xb88-0xb8a (2) 0x0b80| 00 | . | id_prefix_size: 0 0xb8a-0xb8b (1) 0x0b80| 02 | . | mode: "idlist" (2) 0xb8b-0xb8c (1) | | | idlist{}: 0xb8c-0xb8d (1) 0x0b80| 00 | . | num: 0 0xb8c-0xb8d (1) | | | ids[0:0]: 0xb8d-0xb8d (0) | | | [122]{}: bound 0xb8d-0xb92 (5) -0x0b80| 81 0b | .. | timestamp_delta: 138 (1970-01-01 02:53:49) 0xb8d-0xb8f (2) +0x0b80| 81 0b | .. | timestamp: 10552 (139) (1970-01-01 02:55:52 UTC) 0xb8d-0xb8f (2) 0x0b80| 00| .| id_prefix_size: 0 0xb8f-0xb90 (1) 0x0b90|02 |. | mode: "idlist" (2) 0xb90-0xb91 (1) | | | idlist{}: 0xb91-0xb92 (1) 0x0b90| 00 | . | num: 0 0xb91-0xb92 (1) | | | ids[0:0]: 0xb92-0xb92 (0) | | | [123]{}: bound 0xb92-0xb97 (5) -0x0b90| 81 0b | .. | timestamp_delta: 138 (1970-01-01 02:56:06) 0xb92-0xb94 (2) +0x0b90| 81 0b | .. | timestamp: 10690 (139) (1970-01-01 02:58:10 UTC) 0xb92-0xb94 (2) 0x0b90| 00 | . | id_prefix_size: 0 0xb94-0xb95 (1) 0x0b90| 02 | . | mode: "idlist" (2) 0xb95-0xb96 (1) | | | idlist{}: 0xb96-0xb97 (1) 0x0b90| 00 | . | num: 0 0xb96-0xb97 (1) | | | ids[0:0]: 0xb97-0xb97 (0) | | | [124]{}: bound 0xb97-0xb9c (5) -0x0b90| 81 0b | .. | timestamp_delta: 138 (1970-01-01 02:58:23) 0xb97-0xb99 (2) +0x0b90| 81 0b | .. | timestamp: 10828 (139) (1970-01-01 03:00:28 UTC) 0xb97-0xb99 (2) 0x0b90| 00 | . | id_prefix_size: 0 0xb99-0xb9a (1) 0x0b90| 02 | . | mode: "idlist" (2) 0xb9a-0xb9b (1) | | | idlist{}: 0xb9b-0xb9c (1) 0x0b90| 00 | . | num: 0 0xb9b-0xb9c (1) | | | ids[0:0]: 0xb9c-0xb9c (0) | | | [125]{}: bound 0xb9c-0xba1 (5) -0x0b90| 81 0b | .. | timestamp_delta: 138 (1970-01-01 03:00:40) 0xb9c-0xb9e (2) +0x0b90| 81 0b | .. | timestamp: 10966 (139) (1970-01-01 03:02:46 UTC) 0xb9c-0xb9e (2) 0x0b90| 00 | . | id_prefix_size: 0 0xb9e-0xb9f (1) 0x0b90| 02| .| mode: "idlist" (2) 0xb9f-0xba0 (1) | | | idlist{}: 0xba0-0xba1 (1) 0x0ba0|00 |. | num: 0 0xba0-0xba1 (1) | | | ids[0:0]: 0xba1-0xba1 (0) | | | [126]{}: bound 0xba1-0xba6 (5) -0x0ba0| 81 0b | .. | timestamp_delta: 138 (1970-01-01 03:02:57) 0xba1-0xba3 (2) +0x0ba0| 81 0b | .. | timestamp: 11104 (139) (1970-01-01 03:05:04 UTC) 0xba1-0xba3 (2) 0x0ba0| 00 | . | id_prefix_size: 0 0xba3-0xba4 (1) 0x0ba0| 02 | . | mode: "idlist" (2) 0xba4-0xba5 (1) | | | idlist{}: 0xba5-0xba6 (1) 0x0ba0| 00 | . | num: 0 0xba5-0xba6 (1) | | | ids[0:0]: 0xba6-0xba6 (0) | | | [127]{}: bound 0xba6-0xbab (5) -0x0ba0| 81 0b | .. | timestamp_delta: 138 (1970-01-01 03:05:14) 0xba6-0xba8 (2) +0x0ba0| 81 0b | .. | timestamp: 11242 (139) (1970-01-01 03:07:22 UTC) 0xba6-0xba8 (2) 0x0ba0| 00 | . | id_prefix_size: 0 0xba8-0xba9 (1) 0x0ba0| 02 | . | mode: "idlist" (2) 0xba9-0xbaa (1) | | | idlist{}: 0xbaa-0xbab (1) 0x0ba0| 00 | . | num: 0 0xbaa-0xbab (1) | | | ids[0:0]: 0xbab-0xbab (0) | | | [128]{}: bound 0xbab-0xbb0 (5) -0x0ba0| 81 0b | .. | timestamp_delta: 138 (1970-01-01 03:07:31) 0xbab-0xbad (2) +0x0ba0| 81 0b | .. | timestamp: 11380 (139) (1970-01-01 03:09:40 UTC) 0xbab-0xbad (2) 0x0ba0| 00 | . | id_prefix_size: 0 0xbad-0xbae (1) 0x0ba0| 02 | . | mode: "idlist" (2) 0xbae-0xbaf (1) | | | idlist{}: 0xbaf-0xbb0 (1) 0x0ba0| 00| .| num: 0 0xbaf-0xbb0 (1) | | | ids[0:0]: 0xbb0-0xbb0 (0) | | | [129]{}: bound 0xbb0-0xbb5 (5) -0x0bb0|81 0a |.. | timestamp_delta: 137 (1970-01-01 03:09:47) 0xbb0-0xbb2 (2) +0x0bb0|81 0a |.. | timestamp: 11517 (138) (1970-01-01 03:11:57 UTC) 0xbb0-0xbb2 (2) 0x0bb0| 00 | . | id_prefix_size: 0 0xbb2-0xbb3 (1) 0x0bb0| 02 | . | mode: "idlist" (2) 0xbb3-0xbb4 (1) | | | idlist{}: 0xbb4-0xbb5 (1) 0x0bb0| 00 | . | num: 0 0xbb4-0xbb5 (1) | | | ids[0:0]: 0xbb5-0xbb5 (0) | | | [130]{}: bound 0xbb5-0xbba (5) -0x0bb0| 81 0a | .. | timestamp_delta: 137 (1970-01-01 03:12:03) 0xbb5-0xbb7 (2) +0x0bb0| 81 0a | .. | timestamp: 11654 (138) (1970-01-01 03:14:14 UTC) 0xbb5-0xbb7 (2) 0x0bb0| 00 | . | id_prefix_size: 0 0xbb7-0xbb8 (1) 0x0bb0| 02 | . | mode: "idlist" (2) 0xbb8-0xbb9 (1) | | | idlist{}: 0xbb9-0xbba (1) 0x0bb0| 00 | . | num: 0 0xbb9-0xbba (1) | | | ids[0:0]: 0xbba-0xbba (0) | | | [131]{}: bound 0xbba-0xbbf (5) -0x0bb0| 81 0a | .. | timestamp_delta: 137 (1970-01-01 03:14:19) 0xbba-0xbbc (2) +0x0bb0| 81 0a | .. | timestamp: 11791 (138) (1970-01-01 03:16:31 UTC) 0xbba-0xbbc (2) 0x0bb0| 00 | . | id_prefix_size: 0 0xbbc-0xbbd (1) 0x0bb0| 02 | . | mode: "idlist" (2) 0xbbd-0xbbe (1) | | | idlist{}: 0xbbe-0xbbf (1) 0x0bb0| 00 | . | num: 0 0xbbe-0xbbf (1) | | | ids[0:0]: 0xbbf-0xbbf (0) | | | [132]{}: bound 0xbbf-0xbc4 (5) -0x0bb0| 81| .| timestamp_delta: 137 (1970-01-01 03:16:35) 0xbbf-0xbc1 (2) +0x0bb0| 81| .| timestamp: 11928 (138) (1970-01-01 03:18:48 UTC) 0xbbf-0xbc1 (2) 0x0bc0|0a |. | 0x0bc0| 00 | . | id_prefix_size: 0 0xbc1-0xbc2 (1) 0x0bc0| 02 | . | mode: "idlist" (2) 0xbc2-0xbc3 (1) @@ -918,14 +918,14 @@ $ fq -d negentropy dv bigmessagewitheverything 0x0bc0| 00 | . | num: 0 0xbc3-0xbc4 (1) | | | ids[0:0]: 0xbc4-0xbc4 (0) | | | [133]{}: bound 0xbc4-0xbc9 (5) -0x0bc0| 81 0a | .. | timestamp_delta: 137 (1970-01-01 03:18:51) 0xbc4-0xbc6 (2) +0x0bc0| 81 0a | .. | timestamp: 12065 (138) (1970-01-01 03:21:05 UTC) 0xbc4-0xbc6 (2) 0x0bc0| 00 | . | id_prefix_size: 0 0xbc6-0xbc7 (1) 0x0bc0| 02 | . | mode: "idlist" (2) 0xbc7-0xbc8 (1) | | | idlist{}: 0xbc8-0xbc9 (1) 0x0bc0| 00 | . | num: 0 0xbc8-0xbc9 (1) | | | ids[0:0]: 0xbc9-0xbc9 (0) | | | [134]{}: bound 0xbc9-0xd8e (453) -0x0bc0| 8d 56 | .V | timestamp_delta: 1749 (1970-01-01 03:47:59) 0xbc9-0xbcb (2) +0x0bc0| 8d 56 | .V | timestamp: 13814 (1750) (1970-01-01 03:50:14 UTC) 0xbc9-0xbcb (2) 0x0bc0| 00 | . | id_prefix_size: 0 0xbcb-0xbcc (1) 0x0bc0| 02 | . | mode: "idlist" (2) 0xbcc-0xbcd (1) | | | idlist{}: 0xbcd-0xd8e (449) @@ -974,240 +974,240 @@ $ fq -d negentropy dv bigmessagewitheverything 0x0d70|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| 0x0d80|00 00 00 00 00 00 00 00 00 00 00 01 38 13 |............8. | | | | [135]{}: bound 0xd8e-0xd92 (4) -0x0d80| 86 23| .#| timestamp_delta: 802 (1970-01-01 04:01:20) 0xd8e-0xd90 (2) +0x0d80| 86 23| .#| timestamp: 14616 (803) (1970-01-01 04:03:36 UTC) 0xd8e-0xd90 (2) 0x0d90|00 |. | id_prefix_size: 0 0xd90-0xd91 (1) 0x0d90| 00 | . | mode: "skip" (0) 0xd91-0xd92 (1) | | | [136]{}: bound 0xd92-0xda5 (19) -0x0d90| 0d | . | timestamp_delta: 12 (1970-01-01 04:01:31) 0xd92-0xd93 (1) +0x0d90| 0d | . | timestamp: 14628 (13) (1970-01-01 04:03:48 UTC) 0xd92-0xd93 (1) 0x0d90| 00 | . | id_prefix_size: 0 0xd93-0xd94 (1) 0x0d90| 01 | . | mode: "fingerprint" (1) 0xd94-0xd95 (1) 0x0d90| 41 ab cc e3 60 bb f4 6a 99 83 9f| A...`..j...| fingerprint: "41abcce360bbf46a99839fcf848dc61e" (raw bits) 0xd95-0xda5 (16) 0x0da0|cf 84 8d c6 1e |..... | | | | [137]{}: bound 0xda5-0xdb8 (19) -0x0da0| 0d | . | timestamp_delta: 12 (1970-01-01 04:01:42) 0xda5-0xda6 (1) +0x0da0| 0d | . | timestamp: 14640 (13) (1970-01-01 04:04:00 UTC) 0xda5-0xda6 (1) 0x0da0| 00 | . | id_prefix_size: 0 0xda6-0xda7 (1) 0x0da0| 01 | . | mode: "fingerprint" (1) 0xda7-0xda8 (1) 0x0da0| 06 23 d9 e9 b2 15 07 e7| .#......| fingerprint: "0623d9e9b21507e7a846827fcc42c146" (raw bits) 0xda8-0xdb8 (16) 0x0db0|a8 46 82 7f cc 42 c1 46 |.F...B.F | | | | [138]{}: bound 0xdb8-0xdcb (19) -0x0db0| 0d | . | timestamp_delta: 12 (1970-01-01 04:01:53) 0xdb8-0xdb9 (1) +0x0db0| 0d | . | timestamp: 14652 (13) (1970-01-01 04:04:12 UTC) 0xdb8-0xdb9 (1) 0x0db0| 00 | . | id_prefix_size: 0 0xdb9-0xdba (1) 0x0db0| 01 | . | mode: "fingerprint" (1) 0xdba-0xdbb (1) 0x0db0| 89 c0 67 6f 62| ..gob| fingerprint: "89c0676f62f517b301988b8b34743ca6" (raw bits) 0xdbb-0xdcb (16) 0x0dc0|f5 17 b3 01 98 8b 8b 34 74 3c a6 |.......4t<. | | | | [139]{}: bound 0xdcb-0xdde (19) -0x0dc0| 0d | . | timestamp_delta: 12 (1970-01-01 04:02:04) 0xdcb-0xdcc (1) +0x0dc0| 0d | . | timestamp: 14664 (13) (1970-01-01 04:04:24 UTC) 0xdcb-0xdcc (1) 0x0dc0| 00 | . | id_prefix_size: 0 0xdcc-0xdcd (1) 0x0dc0| 01 | . | mode: "fingerprint" (1) 0xdcd-0xdce (1) 0x0dc0| 67 b1| g.| fingerprint: "67b1583666c90373946a2af4319da017" (raw bits) 0xdce-0xdde (16) 0x0dd0|58 36 66 c9 03 73 94 6a 2a f4 31 9d a0 17 |X6f..s.j*.1... | | | | [140]{}: bound 0xdde-0xdf1 (19) -0x0dd0| 0d | . | timestamp_delta: 12 (1970-01-01 04:02:15) 0xdde-0xddf (1) +0x0dd0| 0d | . | timestamp: 14676 (13) (1970-01-01 04:04:36 UTC) 0xdde-0xddf (1) 0x0dd0| 00| .| id_prefix_size: 0 0xddf-0xde0 (1) 0x0de0|01 |. | mode: "fingerprint" (1) 0xde0-0xde1 (1) 0x0de0| ff c8 32 dd 79 9c 4c b5 e1 6a 41 75 61 28 b9| ..2.y.L..jAua(.| fingerprint: "ffc832dd799c4cb5e16a41756128b9d3" (raw bits) 0xde1-0xdf1 (16) 0x0df0|d3 |. | | | | [141]{}: bound 0xdf1-0xe04 (19) -0x0df0| 0d | . | timestamp_delta: 12 (1970-01-01 04:02:26) 0xdf1-0xdf2 (1) +0x0df0| 0d | . | timestamp: 14688 (13) (1970-01-01 04:04:48 UTC) 0xdf1-0xdf2 (1) 0x0df0| 00 | . | id_prefix_size: 0 0xdf2-0xdf3 (1) 0x0df0| 01 | . | mode: "fingerprint" (1) 0xdf3-0xdf4 (1) 0x0df0| e5 b8 17 7c d2 d2 95 dc f5 fd ab b0| ...|........| fingerprint: "e5b8177cd2d295dcf5fdabb0dea332de" (raw bits) 0xdf4-0xe04 (16) 0x0e00|de a3 32 de |..2. | | | | [142]{}: bound 0xe04-0xe17 (19) -0x0e00| 0d | . | timestamp_delta: 12 (1970-01-01 04:02:37) 0xe04-0xe05 (1) +0x0e00| 0d | . | timestamp: 14700 (13) (1970-01-01 04:05:00 UTC) 0xe04-0xe05 (1) 0x0e00| 00 | . | id_prefix_size: 0 0xe05-0xe06 (1) 0x0e00| 01 | . | mode: "fingerprint" (1) 0xe06-0xe07 (1) 0x0e00| 0d ba 05 8d d1 77 7a 90 51| .....wz.Q| fingerprint: "0dba058dd1777a905107797494ecc78b" (raw bits) 0xe07-0xe17 (16) 0x0e10|07 79 74 94 ec c7 8b |.yt.... | | | | [143]{}: bound 0xe17-0xe2a (19) -0x0e10| 0d | . | timestamp_delta: 12 (1970-01-01 04:02:48) 0xe17-0xe18 (1) +0x0e10| 0d | . | timestamp: 14712 (13) (1970-01-01 04:05:12 UTC) 0xe17-0xe18 (1) 0x0e10| 00 | . | id_prefix_size: 0 0xe18-0xe19 (1) 0x0e10| 01 | . | mode: "fingerprint" (1) 0xe19-0xe1a (1) 0x0e10| ae db a4 01 c0 1a| ......| fingerprint: "aedba401c01a4880f07a25119e68dbd2" (raw bits) 0xe1a-0xe2a (16) 0x0e20|48 80 f0 7a 25 11 9e 68 db d2 |H..z%..h.. | | | | [144]{}: bound 0xe2a-0xe3d (19) -0x0e20| 0d | . | timestamp_delta: 12 (1970-01-01 04:02:59) 0xe2a-0xe2b (1) +0x0e20| 0d | . | timestamp: 14724 (13) (1970-01-01 04:05:24 UTC) 0xe2a-0xe2b (1) 0x0e20| 00 | . | id_prefix_size: 0 0xe2b-0xe2c (1) 0x0e20| 01 | . | mode: "fingerprint" (1) 0xe2c-0xe2d (1) 0x0e20| be 9c d1| ...| fingerprint: "be9cd156ef07fd83428444240bd15af8" (raw bits) 0xe2d-0xe3d (16) 0x0e30|56 ef 07 fd 83 42 84 44 24 0b d1 5a f8 |V....B.D$..Z. | | | | [145]{}: bound 0xe3d-0xe50 (19) -0x0e30| 0d | . | timestamp_delta: 12 (1970-01-01 04:03:10) 0xe3d-0xe3e (1) +0x0e30| 0d | . | timestamp: 14736 (13) (1970-01-01 04:05:36 UTC) 0xe3d-0xe3e (1) 0x0e30| 00 | . | id_prefix_size: 0 0xe3e-0xe3f (1) 0x0e30| 01| .| mode: "fingerprint" (1) 0xe3f-0xe40 (1) 0x0e40|23 e3 e5 d7 c6 b8 07 6e dc a2 46 1f dd 41 f7 0e|#......n..F..A..| fingerprint: "23e3e5d7c6b8076edca2461fdd41f70e" (raw bits) 0xe40-0xe50 (16) | | | [146]{}: bound 0xe50-0xe63 (19) -0x0e50|0d |. | timestamp_delta: 12 (1970-01-01 04:03:21) 0xe50-0xe51 (1) +0x0e50|0d |. | timestamp: 14748 (13) (1970-01-01 04:05:48 UTC) 0xe50-0xe51 (1) 0x0e50| 00 | . | id_prefix_size: 0 0xe51-0xe52 (1) 0x0e50| 01 | . | mode: "fingerprint" (1) 0xe52-0xe53 (1) 0x0e50| cf 9c bd 4e ef 1b 28 21 ee db 25 2d 44| ...N..(!..%-D| fingerprint: "cf9cbd4eef1b2821eedb252d446b7a5d" (raw bits) 0xe53-0xe63 (16) 0x0e60|6b 7a 5d |kz] | | | | [147]{}: bound 0xe63-0xe76 (19) -0x0e60| 0d | . | timestamp_delta: 12 (1970-01-01 04:03:32) 0xe63-0xe64 (1) +0x0e60| 0d | . | timestamp: 14760 (13) (1970-01-01 04:06:00 UTC) 0xe63-0xe64 (1) 0x0e60| 00 | . | id_prefix_size: 0 0xe64-0xe65 (1) 0x0e60| 01 | . | mode: "fingerprint" (1) 0xe65-0xe66 (1) 0x0e60| b7 18 9e 59 9a d7 3c ae 48 28| ...Y..<.H(| fingerprint: "b7189e599ad73cae4828dd357755093c" (raw bits) 0xe66-0xe76 (16) 0x0e70|dd 35 77 55 09 3c |.5wU.< | | | | [148]{}: bound 0xe76-0xe89 (19) -0x0e70| 0d | . | timestamp_delta: 12 (1970-01-01 04:03:43) 0xe76-0xe77 (1) +0x0e70| 0d | . | timestamp: 14772 (13) (1970-01-01 04:06:12 UTC) 0xe76-0xe77 (1) 0x0e70| 00 | . | id_prefix_size: 0 0xe77-0xe78 (1) 0x0e70| 01 | . | mode: "fingerprint" (1) 0xe78-0xe79 (1) 0x0e70| 0a 35 31 9c fc 78 f1| .51..x.| fingerprint: "0a35319cfc78f177e622e9531c4535eb" (raw bits) 0xe79-0xe89 (16) 0x0e80|77 e6 22 e9 53 1c 45 35 eb |w.".S.E5. | | | | [149]{}: bound 0xe89-0xe9c (19) -0x0e80| 0d | . | timestamp_delta: 12 (1970-01-01 04:03:54) 0xe89-0xe8a (1) +0x0e80| 0d | . | timestamp: 14784 (13) (1970-01-01 04:06:24 UTC) 0xe89-0xe8a (1) 0x0e80| 00 | . | id_prefix_size: 0 0xe8a-0xe8b (1) 0x0e80| 01 | . | mode: "fingerprint" (1) 0xe8b-0xe8c (1) 0x0e80| d7 d4 9f 28| ...(| fingerprint: "d7d49f286c932cf0de6876e6f74f8874" (raw bits) 0xe8c-0xe9c (16) 0x0e90|6c 93 2c f0 de 68 76 e6 f7 4f 88 74 |l.,..hv..O.t | | | | [150]{}: bound 0xe9c-0xeaf (19) -0x0e90| 0c | . | timestamp_delta: 11 (1970-01-01 04:04:04) 0xe9c-0xe9d (1) +0x0e90| 0c | . | timestamp: 14795 (12) (1970-01-01 04:06:35 UTC) 0xe9c-0xe9d (1) 0x0e90| 00 | . | id_prefix_size: 0 0xe9d-0xe9e (1) 0x0e90| 01 | . | mode: "fingerprint" (1) 0xe9e-0xe9f (1) 0x0e90| a8| .| fingerprint: "a8553fc21bc6f3315c2bc1bdc721cc07" (raw bits) 0xe9f-0xeaf (16) 0x0ea0|55 3f c2 1b c6 f3 31 5c 2b c1 bd c7 21 cc 07 |U?....1\+...!.. | | | | [151]{}: bound 0xeaf-0xec2 (19) -0x0ea0| 0c| .| timestamp_delta: 11 (1970-01-01 04:04:14) 0xeaf-0xeb0 (1) +0x0ea0| 0c| .| timestamp: 14806 (12) (1970-01-01 04:06:46 UTC) 0xeaf-0xeb0 (1) 0x0eb0|00 |. | id_prefix_size: 0 0xeb0-0xeb1 (1) 0x0eb0| 01 | . | mode: "fingerprint" (1) 0xeb1-0xeb2 (1) 0x0eb0| e5 1e ac 79 3f ac 50 9c b7 af 15 b6 2c b3| ...y?.P.....,.| fingerprint: "e51eac793fac509cb7af15b62cb35be9" (raw bits) 0xeb2-0xec2 (16) 0x0ec0|5b e9 |[. | | | | [152]{}: bound 0xec2-0xec5 (3) -0x0ec0| 4e | N | timestamp_delta: 77 (1970-01-01 04:05:30) 0xec2-0xec3 (1) +0x0ec0| 4e | N | timestamp: 14883 (78) (1970-01-01 04:08:03 UTC) 0xec2-0xec3 (1) 0x0ec0| 00 | . | id_prefix_size: 0 0xec3-0xec4 (1) 0x0ec0| 00 | . | mode: "skip" (0) 0xec4-0xec5 (1) | | | [153]{}: bound 0xec5-0xed8 (19) -0x0ec0| 06 | . | timestamp_delta: 5 (1970-01-01 04:05:34) 0xec5-0xec6 (1) +0x0ec0| 06 | . | timestamp: 14888 (6) (1970-01-01 04:08:08 UTC) 0xec5-0xec6 (1) 0x0ec0| 00 | . | id_prefix_size: 0 0xec6-0xec7 (1) 0x0ec0| 01 | . | mode: "fingerprint" (1) 0xec7-0xec8 (1) 0x0ec0| c7 de 49 7a 3b 86 f7 a1| ..Iz;...| fingerprint: "c7de497a3b86f7a17552f4f9c2a8fd57" (raw bits) 0xec8-0xed8 (16) 0x0ed0|75 52 f4 f9 c2 a8 fd 57 |uR.....W | | | | [154]{}: bound 0xed8-0xeeb (19) -0x0ed0| 06 | . | timestamp_delta: 5 (1970-01-01 04:05:38) 0xed8-0xed9 (1) +0x0ed0| 06 | . | timestamp: 14893 (6) (1970-01-01 04:08:13 UTC) 0xed8-0xed9 (1) 0x0ed0| 00 | . | id_prefix_size: 0 0xed9-0xeda (1) 0x0ed0| 01 | . | mode: "fingerprint" (1) 0xeda-0xedb (1) 0x0ed0| 5a 3d a8 56 3e| Z=.V>| fingerprint: "5a3da8563ebed6e54e129057e1663e5b" (raw bits) 0xedb-0xeeb (16) 0x0ee0|be d6 e5 4e 12 90 57 e1 66 3e 5b |...N..W.f>[ | | | | [155]{}: bound 0xeeb-0xefe (19) -0x0ee0| 06 | . | timestamp_delta: 5 (1970-01-01 04:05:42) 0xeeb-0xeec (1) +0x0ee0| 06 | . | timestamp: 14898 (6) (1970-01-01 04:08:18 UTC) 0xeeb-0xeec (1) 0x0ee0| 00 | . | id_prefix_size: 0 0xeec-0xeed (1) 0x0ee0| 01 | . | mode: "fingerprint" (1) 0xeed-0xeee (1) 0x0ee0| 22 35| "5| fingerprint: "2235e61d2029900931046001a0d8d6be" (raw bits) 0xeee-0xefe (16) 0x0ef0|e6 1d 20 29 90 09 31 04 60 01 a0 d8 d6 be |.. )..1.`..... | | | | [156]{}: bound 0xefe-0xf11 (19) -0x0ef0| 05 | . | timestamp_delta: 4 (1970-01-01 04:05:45) 0xefe-0xeff (1) +0x0ef0| 05 | . | timestamp: 14902 (5) (1970-01-01 04:08:22 UTC) 0xefe-0xeff (1) 0x0ef0| 00| .| id_prefix_size: 0 0xeff-0xf00 (1) 0x0f00|01 |. | mode: "fingerprint" (1) 0xf00-0xf01 (1) 0x0f00| 21 62 e8 8e 7f fc c2 1a e1 ab 28 74 5e cf f8| !b........(t^..| fingerprint: "2162e88e7ffcc21ae1ab28745ecff8f7" (raw bits) 0xf01-0xf11 (16) 0x0f10|f7 |. | | | | [157]{}: bound 0xf11-0xf24 (19) -0x0f10| 05 | . | timestamp_delta: 4 (1970-01-01 04:05:48) 0xf11-0xf12 (1) +0x0f10| 05 | . | timestamp: 14906 (5) (1970-01-01 04:08:26 UTC) 0xf11-0xf12 (1) 0x0f10| 00 | . | id_prefix_size: 0 0xf12-0xf13 (1) 0x0f10| 01 | . | mode: "fingerprint" (1) 0xf13-0xf14 (1) 0x0f10| fe 9c 03 38 7b b4 c0 83 d8 c3 cb 74| ...8{......t| fingerprint: "fe9c03387bb4c083d8c3cb7418a400dc" (raw bits) 0xf14-0xf24 (16) 0x0f20|18 a4 00 dc |.... | | | | [158]{}: bound 0xf24-0xf37 (19) -0x0f20| 05 | . | timestamp_delta: 4 (1970-01-01 04:05:51) 0xf24-0xf25 (1) +0x0f20| 05 | . | timestamp: 14910 (5) (1970-01-01 04:08:30 UTC) 0xf24-0xf25 (1) 0x0f20| 00 | . | id_prefix_size: 0 0xf25-0xf26 (1) 0x0f20| 01 | . | mode: "fingerprint" (1) 0xf26-0xf27 (1) 0x0f20| f3 d4 3f 53 24 e7 0d 7e 83| ..?S$..~.| fingerprint: "f3d43f5324e70d7e834b2c9ee9820c7c" (raw bits) 0xf27-0xf37 (16) 0x0f30|4b 2c 9e e9 82 0c 7c |K,....| | | | | [159]{}: bound 0xf37-0xf4a (19) -0x0f30| 05 | . | timestamp_delta: 4 (1970-01-01 04:05:54) 0xf37-0xf38 (1) +0x0f30| 05 | . | timestamp: 14914 (5) (1970-01-01 04:08:34 UTC) 0xf37-0xf38 (1) 0x0f30| 00 | . | id_prefix_size: 0 0xf38-0xf39 (1) 0x0f30| 01 | . | mode: "fingerprint" (1) 0xf39-0xf3a (1) 0x0f30| 8d 61 36 0b 47 44| .a6.GD| fingerprint: "8d61360b4744f80e338fcd60d72540dd" (raw bits) 0xf3a-0xf4a (16) 0x0f40|f8 0e 33 8f cd 60 d7 25 40 dd |..3..`.%@. | | | | [160]{}: bound 0xf4a-0xf5d (19) -0x0f40| 05 | . | timestamp_delta: 4 (1970-01-01 04:05:57) 0xf4a-0xf4b (1) +0x0f40| 05 | . | timestamp: 14918 (5) (1970-01-01 04:08:38 UTC) 0xf4a-0xf4b (1) 0x0f40| 00 | . | id_prefix_size: 0 0xf4b-0xf4c (1) 0x0f40| 01 | . | mode: "fingerprint" (1) 0xf4c-0xf4d (1) 0x0f40| 2a d3 8c| *..| fingerprint: "2ad38c14afad0516f6da33ec193273ab" (raw bits) 0xf4d-0xf5d (16) 0x0f50|14 af ad 05 16 f6 da 33 ec 19 32 73 ab |.......3..2s. | | | | [161]{}: bound 0xf5d-0xf70 (19) -0x0f50| 05 | . | timestamp_delta: 4 (1970-01-01 04:06:00) 0xf5d-0xf5e (1) +0x0f50| 05 | . | timestamp: 14922 (5) (1970-01-01 04:08:42 UTC) 0xf5d-0xf5e (1) 0x0f50| 00 | . | id_prefix_size: 0 0xf5e-0xf5f (1) 0x0f50| 01| .| mode: "fingerprint" (1) 0xf5f-0xf60 (1) 0x0f60|df 54 20 6e 13 38 1e a7 4d 21 4a d9 7e bc e8 dd|.T n.8..M!J.~...| fingerprint: "df54206e13381ea74d214ad97ebce8dd" (raw bits) 0xf60-0xf70 (16) | | | [162]{}: bound 0xf70-0xf83 (19) -0x0f70|05 |. | timestamp_delta: 4 (1970-01-01 04:06:03) 0xf70-0xf71 (1) +0x0f70|05 |. | timestamp: 14926 (5) (1970-01-01 04:08:46 UTC) 0xf70-0xf71 (1) 0x0f70| 00 | . | id_prefix_size: 0 0xf71-0xf72 (1) 0x0f70| 01 | . | mode: "fingerprint" (1) 0xf72-0xf73 (1) 0x0f70| 26 87 bb 36 24 66 92 5e da 27 2d ff 52| &..6$f.^.'-.R| fingerprint: "2687bb362466925eda272dff52b6986c" (raw bits) 0xf73-0xf83 (16) 0x0f80|b6 98 6c |..l | | | | [163]{}: bound 0xf83-0xf96 (19) -0x0f80| 05 | . | timestamp_delta: 4 (1970-01-01 04:06:06) 0xf83-0xf84 (1) +0x0f80| 05 | . | timestamp: 14930 (5) (1970-01-01 04:08:50 UTC) 0xf83-0xf84 (1) 0x0f80| 00 | . | id_prefix_size: 0 0xf84-0xf85 (1) 0x0f80| 01 | . | mode: "fingerprint" (1) 0xf85-0xf86 (1) 0x0f80| 22 a0 0c ce 35 34 6c 58 7b 64| "...54lX{d| fingerprint: "22a00cce35346c587b6425eb95762c87" (raw bits) 0xf86-0xf96 (16) 0x0f90|25 eb 95 76 2c 87 |%..v,. | | | | [164]{}: bound 0xf96-0xfa9 (19) -0x0f90| 05 | . | timestamp_delta: 4 (1970-01-01 04:06:09) 0xf96-0xf97 (1) +0x0f90| 05 | . | timestamp: 14934 (5) (1970-01-01 04:08:54 UTC) 0xf96-0xf97 (1) 0x0f90| 00 | . | id_prefix_size: 0 0xf97-0xf98 (1) 0x0f90| 01 | . | mode: "fingerprint" (1) 0xf98-0xf99 (1) 0x0f90| d0 55 8f 92 f8 73 9b| .U...s.| fingerprint: "d0558f92f8739b2f9f1de8db7fb8d8ce" (raw bits) 0xf99-0xfa9 (16) 0x0fa0|2f 9f 1d e8 db 7f b8 d8 ce |/........ | | | | [165]{}: bound 0xfa9-0xfbc (19) -0x0fa0| 05 | . | timestamp_delta: 4 (1970-01-01 04:06:12) 0xfa9-0xfaa (1) +0x0fa0| 05 | . | timestamp: 14938 (5) (1970-01-01 04:08:58 UTC) 0xfa9-0xfaa (1) 0x0fa0| 00 | . | id_prefix_size: 0 0xfaa-0xfab (1) 0x0fa0| 01 | . | mode: "fingerprint" (1) 0xfab-0xfac (1) 0x0fa0| b7 09 1c 7c| ...|| fingerprint: "b7091c7cc745843fec61e5920b94c744" (raw bits) 0xfac-0xfbc (16) 0x0fb0|c7 45 84 3f ec 61 e5 92 0b 94 c7 44 |.E.?.a.....D | | | | [166]{}: bound 0xfbc-0xfcf (19) -0x0fb0| 05 | . | timestamp_delta: 4 (1970-01-01 04:06:15) 0xfbc-0xfbd (1) +0x0fb0| 05 | . | timestamp: 14942 (5) (1970-01-01 04:09:02 UTC) 0xfbc-0xfbd (1) 0x0fb0| 00 | . | id_prefix_size: 0 0xfbd-0xfbe (1) 0x0fb0| 01 | . | mode: "fingerprint" (1) 0xfbe-0xfbf (1) 0x0fb0| 2a| *| fingerprint: "2a71cdb44346157791ee924e07ddd816" (raw bits) 0xfbf-0xfcf (16) 0x0fc0|71 cd b4 43 46 15 77 91 ee 92 4e 07 dd d8 16 |q..CF.w...N.... | | | | [167]{}: bound 0xfcf-0xfe2 (19) -0x0fc0| 05| .| timestamp_delta: 4 (1970-01-01 04:06:18) 0xfcf-0xfd0 (1) +0x0fc0| 05| .| timestamp: 14946 (5) (1970-01-01 04:09:06 UTC) 0xfcf-0xfd0 (1) 0x0fd0|00 |. | id_prefix_size: 0 0xfd0-0xfd1 (1) 0x0fd0| 01 | . | mode: "fingerprint" (1) 0xfd1-0xfd2 (1) 0x0fd0| fe 9c 03 38 7b b4 c0 83 d8 c3 cb 74 18 a4| ...8{......t..| fingerprint: "fe9c03387bb4c083d8c3cb7418a400dc" (raw bits) 0xfd2-0xfe2 (16) 0x0fe0|00 dc |.. | | | | [168]{}: bound 0xfe2-0xff6 (20) -0x0fe0| 81 7c | .| | timestamp_delta: 251 (1970-01-01 04:10:28) 0xfe2-0xfe4 (2) +0x0fe0| 81 7c | .| | timestamp: 15197 (252) (1970-01-01 04:13:17 UTC) 0xfe2-0xfe4 (2) 0x0fe0| 00 | . | id_prefix_size: 0 0xfe4-0xfe5 (1) 0x0fe0| 01 | . | mode: "fingerprint" (1) 0xfe5-0xfe6 (1) 0x0fe0| f3 d4 3f 53 24 e7 0d 7e 83 4b| ..?S$..~.K| fingerprint: "f3d43f5324e70d7e834b2c9ee9820c7c" (raw bits) 0xfe6-0xff6 (16) 0x0ff0|2c 9e e9 82 0c 7c |,....| | | | | [169]{}: bound 0xff6-0xffb (5) -0x0ff0| 82 3b | .; | timestamp_delta: 314 (1970-01-01 04:15:41) 0xff6-0xff8 (2) +0x0ff0| 82 3b | .; | timestamp: 15511 (315) (1970-01-01 04:18:31 UTC) 0xff6-0xff8 (2) 0x0ff0| 00 | . | id_prefix_size: 0 0xff8-0xff9 (1) 0x0ff0| 02 | . | mode: "idlist" (2) 0xff9-0xffa (1) | | | idlist{}: 0xffa-0xffb (1) 0x0ff0| 00 | . | num: 0 0xffa-0xffb (1) | | | ids[0:0]: 0xffb-0xffb (0) | | | [170]{}: bound 0xffb-0x1000 (5) -0x0ff0| 82 3b | .; | timestamp_delta: 314 (1970-01-01 04:20:54) 0xffb-0xffd (2) +0x0ff0| 82 3b | .; | timestamp: 15825 (315) (1970-01-01 04:23:45 UTC) 0xffb-0xffd (2) 0x0ff0| 00 | . | id_prefix_size: 0 0xffd-0xffe (1) 0x0ff0| 02 | . | mode: "idlist" (2) 0xffe-0xfff (1) | | | idlist{}: 0xfff-0x1000 (1) 0x0ff0| 00| .| num: 0 0xfff-0x1000 (1) | | | ids[0:0]: 0x1000-0x1000 (0) | | | [171]{}: bound 0x1000-0x1005 (5) -0x1000|82 3b |.; | timestamp_delta: 314 (1970-01-01 04:26:07) 0x1000-0x1002 (2) +0x1000|82 3b |.; | timestamp: 16139 (315) (1970-01-01 04:28:59 UTC) 0x1000-0x1002 (2) 0x1000| 00 | . | id_prefix_size: 0 0x1002-0x1003 (1) 0x1000| 02 | . | mode: "idlist" (2) 0x1003-0x1004 (1) | | | idlist{}: 0x1004-0x1005 (1) 0x1000| 00 | . | num: 0 0x1004-0x1005 (1) | | | ids[0:0]: 0x1005-0x1005 (0) | | | [172]{}: bound 0x1005-0x100a (5) -0x1000| 82 3b | .; | timestamp_delta: 314 (1970-01-01 04:31:20) 0x1005-0x1007 (2) +0x1000| 82 3b | .; | timestamp: 16453 (315) (1970-01-01 04:34:13 UTC) 0x1005-0x1007 (2) 0x1000| 00 | . | id_prefix_size: 0 0x1007-0x1008 (1) 0x1000| 02 | . | mode: "idlist" (2) 0x1008-0x1009 (1) | | | idlist{}: 0x1009-0x100a (1) 0x1000| 00 | . | num: 0 0x1009-0x100a (1) | | | ids[0:0]: 0x100a-0x100a (0) | | | [173]{}: bound 0x100a-0x100f (5) -0x1000| 82 3b | .; | timestamp_delta: 314 (1970-01-01 04:36:33) 0x100a-0x100c (2) +0x1000| 82 3b | .; | timestamp: 16767 (315) (1970-01-01 04:39:27 UTC) 0x100a-0x100c (2) 0x1000| 00 | . | id_prefix_size: 0 0x100c-0x100d (1) 0x1000| 02 | . | mode: "idlist" (2) 0x100d-0x100e (1) | | | idlist{}: 0x100e-0x100f (1) 0x1000| 00 | . | num: 0 0x100e-0x100f (1) | | | ids[0:0]: 0x100f-0x100f (0) | | | [174]{}: bound 0x100f-0x1014 (5) -0x1000| 82| .| timestamp_delta: 314 (1970-01-01 04:41:46) 0x100f-0x1011 (2) +0x1000| 82| .| timestamp: 17081 (315) (1970-01-01 04:44:41 UTC) 0x100f-0x1011 (2) 0x1010|3b |; | 0x1010| 00 | . | id_prefix_size: 0 0x1011-0x1012 (1) 0x1010| 02 | . | mode: "idlist" (2) 0x1012-0x1013 (1) @@ -1215,152 +1215,152 @@ $ fq -d negentropy dv bigmessagewitheverything 0x1010| 00 | . | num: 0 0x1013-0x1014 (1) | | | ids[0:0]: 0x1014-0x1014 (0) | | | [175]{}: bound 0x1014-0x1019 (5) -0x1010| 82 3b | .; | timestamp_delta: 314 (1970-01-01 04:46:59) 0x1014-0x1016 (2) +0x1010| 82 3b | .; | timestamp: 17395 (315) (1970-01-01 04:49:55 UTC) 0x1014-0x1016 (2) 0x1010| 00 | . | id_prefix_size: 0 0x1016-0x1017 (1) 0x1010| 02 | . | mode: "idlist" (2) 0x1017-0x1018 (1) | | | idlist{}: 0x1018-0x1019 (1) 0x1010| 00 | . | num: 0 0x1018-0x1019 (1) | | | ids[0:0]: 0x1019-0x1019 (0) | | | [176]{}: bound 0x1019-0x101e (5) -0x1010| 82 3b | .; | timestamp_delta: 314 (1970-01-01 04:52:12) 0x1019-0x101b (2) +0x1010| 82 3b | .; | timestamp: 17709 (315) (1970-01-01 04:55:09 UTC) 0x1019-0x101b (2) 0x1010| 00 | . | id_prefix_size: 0 0x101b-0x101c (1) 0x1010| 02 | . | mode: "idlist" (2) 0x101c-0x101d (1) | | | idlist{}: 0x101d-0x101e (1) 0x1010| 00 | . | num: 0 0x101d-0x101e (1) | | | ids[0:0]: 0x101e-0x101e (0) | | | [177]{}: bound 0x101e-0x1023 (5) -0x1010| 82 3a| .:| timestamp_delta: 313 (1970-01-01 04:57:24) 0x101e-0x1020 (2) +0x1010| 82 3a| .:| timestamp: 18022 (314) (1970-01-01 05:00:22 UTC) 0x101e-0x1020 (2) 0x1020|00 |. | id_prefix_size: 0 0x1020-0x1021 (1) 0x1020| 02 | . | mode: "idlist" (2) 0x1021-0x1022 (1) | | | idlist{}: 0x1022-0x1023 (1) 0x1020| 00 | . | num: 0 0x1022-0x1023 (1) | | | ids[0:0]: 0x1023-0x1023 (0) | | | [178]{}: bound 0x1023-0x1028 (5) -0x1020| 82 3a | .: | timestamp_delta: 313 (1970-01-01 05:02:36) 0x1023-0x1025 (2) +0x1020| 82 3a | .: | timestamp: 18335 (314) (1970-01-01 05:05:35 UTC) 0x1023-0x1025 (2) 0x1020| 00 | . | id_prefix_size: 0 0x1025-0x1026 (1) 0x1020| 02 | . | mode: "idlist" (2) 0x1026-0x1027 (1) | | | idlist{}: 0x1027-0x1028 (1) 0x1020| 00 | . | num: 0 0x1027-0x1028 (1) | | | ids[0:0]: 0x1028-0x1028 (0) | | | [179]{}: bound 0x1028-0x102d (5) -0x1020| 82 3a | .: | timestamp_delta: 313 (1970-01-01 05:07:48) 0x1028-0x102a (2) +0x1020| 82 3a | .: | timestamp: 18648 (314) (1970-01-01 05:10:48 UTC) 0x1028-0x102a (2) 0x1020| 00 | . | id_prefix_size: 0 0x102a-0x102b (1) 0x1020| 02 | . | mode: "idlist" (2) 0x102b-0x102c (1) | | | idlist{}: 0x102c-0x102d (1) 0x1020| 00 | . | num: 0 0x102c-0x102d (1) | | | ids[0:0]: 0x102d-0x102d (0) | | | [180]{}: bound 0x102d-0x1032 (5) -0x1020| 82 3a | .: | timestamp_delta: 313 (1970-01-01 05:13:00) 0x102d-0x102f (2) +0x1020| 82 3a | .: | timestamp: 18961 (314) (1970-01-01 05:16:01 UTC) 0x102d-0x102f (2) 0x1020| 00| .| id_prefix_size: 0 0x102f-0x1030 (1) 0x1030|02 |. | mode: "idlist" (2) 0x1030-0x1031 (1) | | | idlist{}: 0x1031-0x1032 (1) 0x1030| 00 | . | num: 0 0x1031-0x1032 (1) | | | ids[0:0]: 0x1032-0x1032 (0) | | | [181]{}: bound 0x1032-0x1037 (5) -0x1030| 82 3a | .: | timestamp_delta: 313 (1970-01-01 05:18:12) 0x1032-0x1034 (2) +0x1030| 82 3a | .: | timestamp: 19274 (314) (1970-01-01 05:21:14 UTC) 0x1032-0x1034 (2) 0x1030| 00 | . | id_prefix_size: 0 0x1034-0x1035 (1) 0x1030| 02 | . | mode: "idlist" (2) 0x1035-0x1036 (1) | | | idlist{}: 0x1036-0x1037 (1) 0x1030| 00 | . | num: 0 0x1036-0x1037 (1) | | | ids[0:0]: 0x1037-0x1037 (0) | | | [182]{}: bound 0x1037-0x103c (5) -0x1030| 82 3a | .: | timestamp_delta: 313 (1970-01-01 05:23:24) 0x1037-0x1039 (2) +0x1030| 82 3a | .: | timestamp: 19587 (314) (1970-01-01 05:26:27 UTC) 0x1037-0x1039 (2) 0x1030| 00 | . | id_prefix_size: 0 0x1039-0x103a (1) 0x1030| 02 | . | mode: "idlist" (2) 0x103a-0x103b (1) | | | idlist{}: 0x103b-0x103c (1) 0x1030| 00 | . | num: 0 0x103b-0x103c (1) | | | ids[0:0]: 0x103c-0x103c (0) | | | [183]{}: bound 0x103c-0x1050 (20) -0x1030| 81 63 | .c | timestamp_delta: 226 (1970-01-01 05:27:09) 0x103c-0x103e (2) +0x1030| 81 63 | .c | timestamp: 19813 (227) (1970-01-01 05:30:13 UTC) 0x103c-0x103e (2) 0x1030| 00 | . | id_prefix_size: 0 0x103e-0x103f (1) 0x1030| 01| .| mode: "fingerprint" (1) 0x103f-0x1040 (1) 0x1040|44 82 bb 2d 0b 69 db c7 1e e9 26 61 c3 78 77 9f|D..-.i....&a.xw.| fingerprint: "4482bb2d0b69dbc71ee92661c378779f" (raw bits) 0x1040-0x1050 (16) | | | [184]{}: bound 0x1050-0x1063 (19) -0x1050|0e |. | timestamp_delta: 13 (1970-01-01 05:27:21) 0x1050-0x1051 (1) +0x1050|0e |. | timestamp: 19826 (14) (1970-01-01 05:30:26 UTC) 0x1050-0x1051 (1) 0x1050| 00 | . | id_prefix_size: 0 0x1051-0x1052 (1) 0x1050| 01 | . | mode: "fingerprint" (1) 0x1052-0x1053 (1) 0x1050| a2 c6 aa 65 92 32 9c fa 91 06 41 45 13| ...e.2....AE.| fingerprint: "a2c6aa6592329cfa9106414513a3c79e" (raw bits) 0x1053-0x1063 (16) 0x1060|a3 c7 9e |... | | | | [185]{}: bound 0x1063-0x1076 (19) -0x1060| 0e | . | timestamp_delta: 13 (1970-01-01 05:27:33) 0x1063-0x1064 (1) +0x1060| 0e | . | timestamp: 19839 (14) (1970-01-01 05:30:39 UTC) 0x1063-0x1064 (1) 0x1060| 00 | . | id_prefix_size: 0 0x1064-0x1065 (1) 0x1060| 01 | . | mode: "fingerprint" (1) 0x1065-0x1066 (1) 0x1060| d1 5f 5e c1 4a e0 26 48 c4 eb| ._^.J.&H..| fingerprint: "d15f5ec14ae02648c4eb20f82bfa9022" (raw bits) 0x1066-0x1076 (16) 0x1070|20 f8 2b fa 90 22 | .+.." | | | | [186]{}: bound 0x1076-0x1089 (19) -0x1070| 0e | . | timestamp_delta: 13 (1970-01-01 05:27:45) 0x1076-0x1077 (1) +0x1070| 0e | . | timestamp: 19852 (14) (1970-01-01 05:30:52 UTC) 0x1076-0x1077 (1) 0x1070| 00 | . | id_prefix_size: 0 0x1077-0x1078 (1) 0x1070| 01 | . | mode: "fingerprint" (1) 0x1078-0x1079 (1) 0x1070| ee 00 03 19 ca 9e 28| ......(| fingerprint: "ee000319ca9e2894cfd9ee1587379343" (raw bits) 0x1079-0x1089 (16) 0x1080|94 cf d9 ee 15 87 37 93 43 |......7.C | | | | [187]{}: bound 0x1089-0x109c (19) -0x1080| 0e | . | timestamp_delta: 13 (1970-01-01 05:27:57) 0x1089-0x108a (1) +0x1080| 0e | . | timestamp: 19865 (14) (1970-01-01 05:31:05 UTC) 0x1089-0x108a (1) 0x1080| 00 | . | id_prefix_size: 0 0x108a-0x108b (1) 0x1080| 01 | . | mode: "fingerprint" (1) 0x108b-0x108c (1) 0x1080| b7 27 3e a6| .'>.| fingerprint: "b7273ea681c69473bd5d78920bf8c4cc" (raw bits) 0x108c-0x109c (16) 0x1090|81 c6 94 73 bd 5d 78 92 0b f8 c4 cc |...s.]x..... | | | | [188]{}: bound 0x109c-0x10af (19) -0x1090| 0e | . | timestamp_delta: 13 (1970-01-01 05:28:09) 0x109c-0x109d (1) +0x1090| 0e | . | timestamp: 19878 (14) (1970-01-01 05:31:18 UTC) 0x109c-0x109d (1) 0x1090| 00 | . | id_prefix_size: 0 0x109d-0x109e (1) 0x1090| 01 | . | mode: "fingerprint" (1) 0x109e-0x109f (1) 0x1090| ba| .| fingerprint: "bab1306933cc16d8327b53a2eebeead6" (raw bits) 0x109f-0x10af (16) 0x10a0|b1 30 69 33 cc 16 d8 32 7b 53 a2 ee be ea d6 |.0i3...2{S..... | | | | [189]{}: bound 0x10af-0x10c2 (19) -0x10a0| 0e| .| timestamp_delta: 13 (1970-01-01 05:28:21) 0x10af-0x10b0 (1) +0x10a0| 0e| .| timestamp: 19891 (14) (1970-01-01 05:31:31 UTC) 0x10af-0x10b0 (1) 0x10b0|00 |. | id_prefix_size: 0 0x10b0-0x10b1 (1) 0x10b0| 01 | . | mode: "fingerprint" (1) 0x10b1-0x10b2 (1) 0x10b0| bb 23 2a 83 40 8f 53 d7 86 85 18 99 74 66| .#*.@.S.....tf| fingerprint: "bb232a83408f53d7868518997466a49e" (raw bits) 0x10b2-0x10c2 (16) 0x10c0|a4 9e |.. | | | | [190]{}: bound 0x10c2-0x10d5 (19) -0x10c0| 0e | . | timestamp_delta: 13 (1970-01-01 05:28:33) 0x10c2-0x10c3 (1) +0x10c0| 0e | . | timestamp: 19904 (14) (1970-01-01 05:31:44 UTC) 0x10c2-0x10c3 (1) 0x10c0| 00 | . | id_prefix_size: 0 0x10c3-0x10c4 (1) 0x10c0| 01 | . | mode: "fingerprint" (1) 0x10c4-0x10c5 (1) 0x10c0| 9c 9c 24 8d 0f fe ed d7 a7 d3 b1| ..$........| fingerprint: "9c9c248d0ffeedd7a7d3b197a86b95b3" (raw bits) 0x10c5-0x10d5 (16) 0x10d0|97 a8 6b 95 b3 |..k.. | | | | [191]{}: bound 0x10d5-0x10e8 (19) -0x10d0| 0d | . | timestamp_delta: 12 (1970-01-01 05:28:44) 0x10d5-0x10d6 (1) +0x10d0| 0d | . | timestamp: 19916 (13) (1970-01-01 05:31:56 UTC) 0x10d5-0x10d6 (1) 0x10d0| 00 | . | id_prefix_size: 0 0x10d6-0x10d7 (1) 0x10d0| 01 | . | mode: "fingerprint" (1) 0x10d7-0x10d8 (1) 0x10d0| 91 d2 bb 33 5e 31 6f f5| ...3^1o.| fingerprint: "91d2bb335e316ff52319f72c60591d6d" (raw bits) 0x10d8-0x10e8 (16) 0x10e0|23 19 f7 2c 60 59 1d 6d |#..,`Y.m | | | | [192]{}: bound 0x10e8-0x10fb (19) -0x10e0| 0d | . | timestamp_delta: 12 (1970-01-01 05:28:55) 0x10e8-0x10e9 (1) +0x10e0| 0d | . | timestamp: 19928 (13) (1970-01-01 05:32:08 UTC) 0x10e8-0x10e9 (1) 0x10e0| 00 | . | id_prefix_size: 0 0x10e9-0x10ea (1) 0x10e0| 01 | . | mode: "fingerprint" (1) 0x10ea-0x10eb (1) 0x10e0| 9b ed 93 40 b8| ...@.| fingerprint: "9bed9340b806197bc5aaa1ccd21cc019" (raw bits) 0x10eb-0x10fb (16) 0x10f0|06 19 7b c5 aa a1 cc d2 1c c0 19 |..{........ | | | | [193]{}: bound 0x10fb-0x110e (19) -0x10f0| 0d | . | timestamp_delta: 12 (1970-01-01 05:29:06) 0x10fb-0x10fc (1) +0x10f0| 0d | . | timestamp: 19940 (13) (1970-01-01 05:32:20 UTC) 0x10fb-0x10fc (1) 0x10f0| 00 | . | id_prefix_size: 0 0x10fc-0x10fd (1) 0x10f0| 01 | . | mode: "fingerprint" (1) 0x10fd-0x10fe (1) 0x10f0| 80 ed| ..| fingerprint: "80ed383eb295422af66b4d7905f5f862" (raw bits) 0x10fe-0x110e (16) 0x1100|38 3e b2 95 42 2a f6 6b 4d 79 05 f5 f8 62 |8>..B*.kMy...b | | | | [194]{}: bound 0x110e-0x1121 (19) -0x1100| 0d | . | timestamp_delta: 12 (1970-01-01 05:29:17) 0x110e-0x110f (1) +0x1100| 0d | . | timestamp: 19952 (13) (1970-01-01 05:32:32 UTC) 0x110e-0x110f (1) 0x1100| 00| .| id_prefix_size: 0 0x110f-0x1110 (1) 0x1110|01 |. | mode: "fingerprint" (1) 0x1110-0x1111 (1) 0x1110| bd 82 0c d0 b9 b5 c1 5a 30 9b ec 6f a7 ae 53| .......Z0..o..S| fingerprint: "bd820cd0b9b5c15a309bec6fa7ae530a" (raw bits) 0x1111-0x1121 (16) 0x1120|0a |. | | | | [195]{}: bound 0x1121-0x1134 (19) -0x1120| 0d | . | timestamp_delta: 12 (1970-01-01 05:29:28) 0x1121-0x1122 (1) +0x1120| 0d | . | timestamp: 19964 (13) (1970-01-01 05:32:44 UTC) 0x1121-0x1122 (1) 0x1120| 00 | . | id_prefix_size: 0 0x1122-0x1123 (1) 0x1120| 01 | . | mode: "fingerprint" (1) 0x1123-0x1124 (1) 0x1120| 2b 91 a0 10 5f 4c a6 90 3d 3b a1 d6| +..._L..=;..| fingerprint: "2b91a0105f4ca6903d3ba1d615e52216" (raw bits) 0x1124-0x1134 (16) 0x1130|15 e5 22 16 |..". | | | | [196]{}: bound 0x1134-0x1147 (19) -0x1130| 0d | . | timestamp_delta: 12 (1970-01-01 05:29:39) 0x1134-0x1135 (1) +0x1130| 0d | . | timestamp: 19976 (13) (1970-01-01 05:32:56 UTC) 0x1134-0x1135 (1) 0x1130| 00 | . | id_prefix_size: 0 0x1135-0x1136 (1) 0x1130| 01 | . | mode: "fingerprint" (1) 0x1136-0x1137 (1) 0x1130| 18 37 44 10 7b c1 b3 06 6a| .7D.{...j| fingerprint: "183744107bc1b3066a12c22d0dabe511" (raw bits) 0x1137-0x1147 (16) 0x1140|12 c2 2d 0d ab e5 11 |..-.... | | | | [197]{}: bound 0x1147-0x115a (19) -0x1140| 0d | . | timestamp_delta: 12 (1970-01-01 05:29:50) 0x1147-0x1148 (1) +0x1140| 0d | . | timestamp: 19988 (13) (1970-01-01 05:33:08 UTC) 0x1147-0x1148 (1) 0x1140| 00 | . | id_prefix_size: 0 0x1148-0x1149 (1) 0x1140| 01 | . | mode: "fingerprint" (1) 0x1149-0x114a (1) 0x1140| f1 4b a3 a9 3a 86| .K..:.| fingerprint: "f14ba3a93a86e8559cdad080bf03b632" (raw bits) 0x114a-0x115a (16) 0x1150|e8 55 9c da d0 80 bf 03 b6 32 |.U.......2 | | | | [198]{}: bound 0x115a-0x116d (19) -0x1150| 00 | . | timestamp_delta: -1 (infinity) 0x115a-0x115b (1) +0x1150| 00 | . | timestamp: 0 (infinity) 0x115a-0x115b (1) 0x1150| 00 | . | id_prefix_size: 0 0x115b-0x115c (1) 0x1150| 01 | . | mode: "fingerprint" (1) 0x115c-0x115d (1) 0x1150| a9 79 ff| .y.| fingerprint: "a979ff1bf1e404a68bc3339f18a16dea" (raw bits) 0x115d-0x116d (16) diff --git a/format/negentropy/testdata/smalljustfingerprints.fqtest b/format/negentropy/testdata/smalljustfingerprints.fqtest index 88eb4aa3b..0727f7d03 100644 --- a/format/negentropy/testdata/smalljustfingerprints.fqtest +++ b/format/negentropy/testdata/smalljustfingerprints.fqtest @@ -3,108 +3,108 @@ $ fq -d negentropy dv smalljustfingerprints 0x000|61 |a | version: 97 0x0-0x1 (1) | | | bounds[0:16]: 0x1-0x140 (319) | | | [0]{}: bound 0x1-0x18 (23) -0x000| 86 b7 ab b4 7c | ....| | timestamp_delta: 1726667387 (2024-09-18 13:49:46) 0x1-0x6 (5) +0x000| 86 b7 ab b4 7c | ....| | timestamp: 1726667387 (1726667388) (2024-09-18 13:49:47 UTC) 0x1-0x6 (5) 0x000| 00 | . | id_prefix_size: 0 0x6-0x7 (1) 0x000| 01 | . | mode: "fingerprint" (1) 0x7-0x8 (1) 0x000| 10 8e 42 06 82 8e e3 bf| ..B.....| fingerprint: "108e4206828ee3bf34258465809a337c" (raw bits) 0x8-0x18 (16) 0x010|34 25 84 65 80 9a 33 7c |4%.e..3| | | | | [1]{}: bound 0x18-0x2b (19) -0x010| 6c | l | timestamp_delta: 107 (2024-09-18 13:51:32) 0x18-0x19 (1) +0x010| 6c | l | timestamp: 1726667494 (108) (2024-09-18 13:51:34 UTC) 0x18-0x19 (1) 0x010| 00 | . | id_prefix_size: 0 0x19-0x1a (1) 0x010| 01 | . | mode: "fingerprint" (1) 0x1a-0x1b (1) 0x010| 9a 68 e3 7b 17| .h.{.| fingerprint: "9a68e37b177a50b3ae7164ccc628b962" (raw bits) 0x1b-0x2b (16) 0x020|7a 50 b3 ae 71 64 cc c6 28 b9 62 |zP..qd..(.b | | | | [2]{}: bound 0x2b-0x3f (20) -0x020| 02 | . | timestamp_delta: 1 (2024-09-18 13:51:32) 0x2b-0x2c (1) +0x020| 02 | . | timestamp: 1726667495 (2) (2024-09-18 13:51:35 UTC) 0x2b-0x2c (1) 0x020| 01 | . | id_prefix_size: 1 0x2c-0x2d (1) 0x020| 14 | . | id_prefix: "14" (raw bits) 0x2d-0x2e (1) 0x020| 01 | . | mode: "fingerprint" (1) 0x2e-0x2f (1) 0x020| 9c| .| fingerprint: "9c1381281c9e3849d5fbd514b7bb65ad" (raw bits) 0x2f-0x3f (16) 0x030|13 81 28 1c 9e 38 49 d5 fb d5 14 b7 bb 65 ad |..(..8I......e. | | | | [3]{}: bound 0x3f-0x53 (20) -0x030| 01| .| timestamp_delta: 0 (2024-09-18 13:51:31) 0x3f-0x40 (1) +0x030| 01| .| timestamp: 1726667495 (1) (2024-09-18 13:51:35 UTC) 0x3f-0x40 (1) 0x040|01 |. | id_prefix_size: 1 0x40-0x41 (1) 0x040| e6 | . | id_prefix: "e6" (raw bits) 0x41-0x42 (1) 0x040| 01 | . | mode: "fingerprint" (1) 0x42-0x43 (1) 0x040| fb f7 45 1f 5d 22 e7 fa 36 ae 3e 91 0e| ..E.]"..6.>..| fingerprint: "fbf7451f5d22e7fa36ae3e910e9f5215" (raw bits) 0x43-0x53 (16) 0x050|9f 52 15 |.R. | | | | [4]{}: bound 0x53-0x67 (20) -0x050| 02 | . | timestamp_delta: 1 (2024-09-18 13:51:31) 0x53-0x54 (1) +0x050| 02 | . | timestamp: 1726667496 (2) (2024-09-18 13:51:36 UTC) 0x53-0x54 (1) 0x050| 01 | . | id_prefix_size: 1 0x54-0x55 (1) 0x050| 57 | W | id_prefix: "57" (raw bits) 0x55-0x56 (1) 0x050| 01 | . | mode: "fingerprint" (1) 0x56-0x57 (1) 0x050| 4a 1b 26 85 3e 06 e9 c3 2e| J.&.>....| fingerprint: "4a1b26853e06e9c32eb41b1df4f9ab30" (raw bits) 0x57-0x67 (16) 0x060|b4 1b 1d f4 f9 ab 30 |......0 | | | | [5]{}: bound 0x67-0x7b (20) -0x060| 02 | . | timestamp_delta: 1 (2024-09-18 13:51:31) 0x67-0x68 (1) +0x060| 02 | . | timestamp: 1726667497 (2) (2024-09-18 13:51:37 UTC) 0x67-0x68 (1) 0x060| 01 | . | id_prefix_size: 1 0x68-0x69 (1) 0x060| e6 | . | id_prefix: "e6" (raw bits) 0x69-0x6a (1) 0x060| 01 | . | mode: "fingerprint" (1) 0x6a-0x6b (1) 0x060| 18 40 e2 73 c8| .@.s.| fingerprint: "1840e273c84bb1344f1d4e15d9aa6792" (raw bits) 0x6b-0x7b (16) 0x070|4b b1 34 4f 1d 4e 15 d9 aa 67 92 |K.4O.N...g. | | | | [6]{}: bound 0x7b-0x8e (19) -0x070| 02 | . | timestamp_delta: 1 (2024-09-18 13:51:31) 0x7b-0x7c (1) +0x070| 02 | . | timestamp: 1726667498 (2) (2024-09-18 13:51:38 UTC) 0x7b-0x7c (1) 0x070| 00 | . | id_prefix_size: 0 0x7c-0x7d (1) 0x070| 01 | . | mode: "fingerprint" (1) 0x7d-0x7e (1) 0x070| 6f 12| o.| fingerprint: "6f12ee2340888653f10b0ec2d438ac9f" (raw bits) 0x7e-0x8e (16) 0x080|ee 23 40 88 86 53 f1 0b 0e c2 d4 38 ac 9f |.#@..S.....8.. | | | | [7]{}: bound 0x8e-0xa2 (20) -0x080| 01 | . | timestamp_delta: 0 (2024-09-18 13:51:30) 0x8e-0x8f (1) +0x080| 01 | . | timestamp: 1726667498 (1) (2024-09-18 13:51:38 UTC) 0x8e-0x8f (1) 0x080| 01| .| id_prefix_size: 1 0x8f-0x90 (1) 0x090|84 |. | id_prefix: "84" (raw bits) 0x90-0x91 (1) 0x090| 01 | . | mode: "fingerprint" (1) 0x91-0x92 (1) 0x090| 56 d2 d7 96 f4 df f0 04 ab 36 9b 9b cf a4| V........6....| fingerprint: "56d2d796f4dff004ab369b9bcfa4d81e" (raw bits) 0x92-0xa2 (16) 0x0a0|d8 1e |.. | | | | [8]{}: bound 0xa2-0xb6 (20) -0x0a0| 02 | . | timestamp_delta: 1 (2024-09-18 13:51:30) 0xa2-0xa3 (1) +0x0a0| 02 | . | timestamp: 1726667499 (2) (2024-09-18 13:51:39 UTC) 0xa2-0xa3 (1) 0x0a0| 01 | . | id_prefix_size: 1 0xa3-0xa4 (1) 0x0a0| 87 | . | id_prefix: "87" (raw bits) 0xa4-0xa5 (1) 0x0a0| 01 | . | mode: "fingerprint" (1) 0xa5-0xa6 (1) 0x0a0| 3f 1b 3c 8a 01 98 00 d5 76 4e| ?.<.....vN| fingerprint: "3f1b3c8a019800d5764e2de6bdfd2785" (raw bits) 0xa6-0xb6 (16) 0x0b0|2d e6 bd fd 27 85 |-...'. | | | | [9]{}: bound 0xb6-0xca (20) -0x0b0| 02 | . | timestamp_delta: 1 (2024-09-18 13:51:30) 0xb6-0xb7 (1) +0x0b0| 02 | . | timestamp: 1726667500 (2) (2024-09-18 13:51:40 UTC) 0xb6-0xb7 (1) 0x0b0| 01 | . | id_prefix_size: 1 0xb7-0xb8 (1) 0x0b0| 14 | . | id_prefix: "14" (raw bits) 0xb8-0xb9 (1) 0x0b0| 01 | . | mode: "fingerprint" (1) 0xb9-0xba (1) 0x0b0| 7c aa f0 ac b5 df| |.....| fingerprint: "7caaf0acb5dfe249aa0f7f742402168a" (raw bits) 0xba-0xca (16) 0x0c0|e2 49 aa 0f 7f 74 24 02 16 8a |.I...t$... | | | | [10]{}: bound 0xca-0xde (20) -0x0c0| 01 | . | timestamp_delta: 0 (2024-09-18 13:51:29) 0xca-0xcb (1) +0x0c0| 01 | . | timestamp: 1726667500 (1) (2024-09-18 13:51:40 UTC) 0xca-0xcb (1) 0x0c0| 01 | . | id_prefix_size: 1 0xcb-0xcc (1) 0x0c0| 83 | . | id_prefix: "83" (raw bits) 0xcc-0xcd (1) 0x0c0| 01 | . | mode: "fingerprint" (1) 0xcd-0xce (1) 0x0c0| e7 b8| ..| fingerprint: "e7b8c4decb1eae455ca5714281e32453" (raw bits) 0xce-0xde (16) 0x0d0|c4 de cb 1e ae 45 5c a5 71 42 81 e3 24 53 |.....E\.qB..$S | | | | [11]{}: bound 0xde-0xf2 (20) -0x0d0| 02 | . | timestamp_delta: 1 (2024-09-18 13:51:29) 0xde-0xdf (1) +0x0d0| 02 | . | timestamp: 1726667501 (2) (2024-09-18 13:51:41 UTC) 0xde-0xdf (1) 0x0d0| 01| .| id_prefix_size: 1 0xdf-0xe0 (1) 0x0e0|7a |z | id_prefix: "7a" (raw bits) 0xe0-0xe1 (1) 0x0e0| 01 | . | mode: "fingerprint" (1) 0xe1-0xe2 (1) 0x0e0| 40 9c 22 63 6b 09 73 62 df 12 5d df fb 6d| @."ck.sb..]..m| fingerprint: "409c22636b097362df125ddffb6d9443" (raw bits) 0xe2-0xf2 (16) 0x0f0|94 43 |.C | | | | [12]{}: bound 0xf2-0x106 (20) -0x0f0| 02 | . | timestamp_delta: 1 (2024-09-18 13:51:29) 0xf2-0xf3 (1) +0x0f0| 02 | . | timestamp: 1726667502 (2) (2024-09-18 13:51:42 UTC) 0xf2-0xf3 (1) 0x0f0| 01 | . | id_prefix_size: 1 0xf3-0xf4 (1) 0x0f0| 5b | [ | id_prefix: "5b" (raw bits) 0xf4-0xf5 (1) 0x0f0| 01 | . | mode: "fingerprint" (1) 0xf5-0xf6 (1) 0x0f0| f3 32 20 8b ee 82 ac f8 ed 92| .2 .......| fingerprint: "f332208bee82acf8ed922853ee54057f" (raw bits) 0xf6-0x106 (16) 0x100|28 53 ee 54 05 7f |(S.T.. | | | | [13]{}: bound 0x106-0x119 (19) -0x100| 02 | . | timestamp_delta: 1 (2024-09-18 13:51:29) 0x106-0x107 (1) +0x100| 02 | . | timestamp: 1726667503 (2) (2024-09-18 13:51:43 UTC) 0x106-0x107 (1) 0x100| 00 | . | id_prefix_size: 0 0x107-0x108 (1) 0x100| 01 | . | mode: "fingerprint" (1) 0x108-0x109 (1) 0x100| fc 3e 51 fd b0 b9 29| .>Q...)| fingerprint: "fc3e51fdb0b92966e38017f795990385" (raw bits) 0x109-0x119 (16) 0x110|66 e3 80 17 f7 95 99 03 85 |f........ | | | | [14]{}: bound 0x119-0x12d (20) -0x110| 01 | . | timestamp_delta: 0 (2024-09-18 13:51:28) 0x119-0x11a (1) +0x110| 01 | . | timestamp: 1726667503 (1) (2024-09-18 13:51:43 UTC) 0x119-0x11a (1) 0x110| 01 | . | id_prefix_size: 1 0x11a-0x11b (1) 0x110| cc | . | id_prefix: "cc" (raw bits) 0x11b-0x11c (1) 0x110| 01 | . | mode: "fingerprint" (1) 0x11c-0x11d (1) 0x110| 42 8c e0| B..| fingerprint: "428ce0c96d49f15b50143e4fb228cb93" (raw bits) 0x11d-0x12d (16) 0x120|c9 6d 49 f1 5b 50 14 3e 4f b2 28 cb 93 |.mI.[P.>O.(.. | | | | [15]{}: bound 0x12d-0x140 (19) -0x120| 00 | . | timestamp_delta: -1 (infinity) 0x12d-0x12e (1) +0x120| 00 | . | timestamp: 0 (infinity) 0x12d-0x12e (1) 0x120| 00 | . | id_prefix_size: 0 0x12e-0x12f (1) 0x120| 01| .| mode: "fingerprint" (1) 0x12f-0x130 (1) 0x130|31 71 2d 30 e5 29 6a 7a 45 d0 7b ba 45 2d 61 cd|1q-0.)jzE.{.E-a.| fingerprint: "31712d30e5296a7a45d07bba452d61cd" (raw bits) 0x130-0x140 (16) From 38533871764e75d9b0b950d053b5dda418564fbb Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Thu, 19 Sep 2024 16:06:02 -0300 Subject: [PATCH 3/4] negentropy: const modes, RFC3339 dates and synthetic timestamps. --- format/negentropy/negentropy.go | 37 +- .../testdata/bigmessagewitheverything.fqtest | 597 ++++++++++++------ .../testdata/smalljustfingerprints.fqtest | 48 +- 3 files changed, 458 insertions(+), 224 deletions(-) diff --git a/format/negentropy/negentropy.go b/format/negentropy/negentropy.go index 721d7f66b..8020de3e8 100644 --- a/format/negentropy/negentropy.go +++ b/format/negentropy/negentropy.go @@ -30,12 +30,29 @@ func init() { const ( version = 0x61 fingerprintSize = 16 + + modeSkip = 0 + modeFingerprint = 1 + modeIdlist = 2 ) var modeMapper = scalar.SintMapSymStr{ - 0: "skip", - 1: "fingerprint", - 2: "idlist", + modeSkip: "skip", + modeFingerprint: "fingerprint", + modeIdlist: "idlist", +} + +type timestampDeltaTranslator struct{} + +func (tt *timestampDeltaTranslator) MapSint(s scalar.Sint) (scalar.Sint, error) { + if s.Actual == 0 { + s.Sym = -1 + s.Description = "infinity" + return s, nil + } else { + s.Sym = s.Actual - 1 + return s, nil + } } type timestampTranslator struct{ last time.Time } @@ -47,14 +64,15 @@ func (tt *timestampTranslator) MapSint(s scalar.Sint) (scalar.Sint, error) { return s, nil } else { timestamp := tt.last.Add(time.Second * time.Duration(s.Actual-1)) - s.Description = timestamp.UTC().Format(time.DateTime + " UTC") - s.Sym = timestamp.Unix() + s.Description = timestamp.UTC().Format(time.RFC3339) + s.Actual = timestamp.Unix() tt.last = timestamp return s, nil } } func decodeNegentropyMessage(d *decode.D) any { + tdt := ×tampDeltaTranslator{} tt := ×tampTranslator{last: time.Unix(0, 0)} d.Endian = decode.BigEndian @@ -65,7 +83,8 @@ func decodeNegentropyMessage(d *decode.D) any { } d.FieldStructArrayLoop("bounds", "bound", d.NotEnd, func(d *decode.D) { - d.FieldSintFn("timestamp", decodeVarInt, tt) + delta := d.FieldSintFn("timestamp_delta", decodeVarInt, tdt) + d.FieldValueSint("timestamp", delta, tt) size := d.FieldSintFn("id_prefix_size", decodeVarInt) if size > 32 { @@ -77,12 +96,12 @@ func decodeNegentropyMessage(d *decode.D) any { mode := d.FieldSintFn("mode", decodeVarInt, modeMapper) switch mode { - case 0: + case modeSkip: return - case 1: + case modeFingerprint: d.FieldRawLen("fingerprint", fingerprintSize*8, scalar.RawHex) return - case 2: + case modeIdlist: d.FieldStruct("idlist", func(d *decode.D) { num := d.FieldSintFn("num", decodeVarInt) d.FieldArray("ids", func(d *decode.D) { diff --git a/format/negentropy/testdata/bigmessagewitheverything.fqtest b/format/negentropy/testdata/bigmessagewitheverything.fqtest index 238f1a78e..dfc74448d 100644 --- a/format/negentropy/testdata/bigmessagewitheverything.fqtest +++ b/format/negentropy/testdata/bigmessagewitheverything.fqtest @@ -3,281 +3,326 @@ $ fq -d negentropy dv bigmessagewitheverything 0x0000|61 |a | version: 97 0x0-0x1 (1) | | | bounds[0:199]: 0x1-0x116d (4460) | | | [0]{}: bound 0x1-0x14 (19) -0x0000| 1b | . | timestamp: 26 (27) (1970-01-01 00:00:26 UTC) 0x1-0x2 (1) +0x0000| 1b | . | timestamp_delta: 26 (27) 0x1-0x2 (1) + | | | timestamp: 26 (1970-01-01T00:00:26Z) 0x0000| 00 | . | id_prefix_size: 0 0x2-0x3 (1) 0x0000| 01 | . | mode: "fingerprint" (1) 0x3-0x4 (1) 0x0000| dd a1 66 e3 d0 b3 93 ef 35 0e 43 25| ..f.....5.C%| fingerprint: "dda166e3d0b393ef350e432523408dd7" (raw bits) 0x4-0x14 (16) 0x0010|23 40 8d d7 |#@.. | | | | [1]{}: bound 0x14-0x27 (19) -0x0010| 07 | . | timestamp: 32 (7) (1970-01-01 00:00:32 UTC) 0x14-0x15 (1) +0x0010| 07 | . | timestamp_delta: 6 (7) 0x14-0x15 (1) + | | | timestamp: 32 (1970-01-01T00:00:32Z) 0x0010| 00 | . | id_prefix_size: 0 0x15-0x16 (1) 0x0010| 01 | . | mode: "fingerprint" (1) 0x16-0x17 (1) 0x0010| 76 61 14 8b 50 48 13 21 9f| va..PH.!.| fingerprint: "7661148b504813219fb62a1b531651de" (raw bits) 0x17-0x27 (16) 0x0020|b6 2a 1b 53 16 51 de |.*.S.Q. | | | | [2]{}: bound 0x27-0x3a (19) -0x0020| 07 | . | timestamp: 38 (7) (1970-01-01 00:00:38 UTC) 0x27-0x28 (1) +0x0020| 07 | . | timestamp_delta: 6 (7) 0x27-0x28 (1) + | | | timestamp: 38 (1970-01-01T00:00:38Z) 0x0020| 00 | . | id_prefix_size: 0 0x28-0x29 (1) 0x0020| 01 | . | mode: "fingerprint" (1) 0x29-0x2a (1) 0x0020| a1 cd 37 c2 d0 25| ..7..%| fingerprint: "a1cd37c2d0257af4de61ac6dc837988e" (raw bits) 0x2a-0x3a (16) 0x0030|7a f4 de 61 ac 6d c8 37 98 8e |z..a.m.7.. | | | | [3]{}: bound 0x3a-0x4d (19) -0x0030| 07 | . | timestamp: 44 (7) (1970-01-01 00:00:44 UTC) 0x3a-0x3b (1) +0x0030| 07 | . | timestamp_delta: 6 (7) 0x3a-0x3b (1) + | | | timestamp: 44 (1970-01-01T00:00:44Z) 0x0030| 00 | . | id_prefix_size: 0 0x3b-0x3c (1) 0x0030| 01 | . | mode: "fingerprint" (1) 0x3c-0x3d (1) 0x0030| 4c 27 c4| L'.| fingerprint: "4c27c4f6d04f4dd806673352ea068722" (raw bits) 0x3d-0x4d (16) 0x0040|f6 d0 4f 4d d8 06 67 33 52 ea 06 87 22 |..OM..g3R..." | | | | [4]{}: bound 0x4d-0x60 (19) -0x0040| 07 | . | timestamp: 50 (7) (1970-01-01 00:00:50 UTC) 0x4d-0x4e (1) +0x0040| 07 | . | timestamp_delta: 6 (7) 0x4d-0x4e (1) + | | | timestamp: 50 (1970-01-01T00:00:50Z) 0x0040| 00 | . | id_prefix_size: 0 0x4e-0x4f (1) 0x0040| 01| .| mode: "fingerprint" (1) 0x4f-0x50 (1) 0x0050|13 7c 18 d1 42 bd ce 9b cc 57 4b c3 91 8b 4a c0|.|..B....WK...J.| fingerprint: "137c18d142bdce9bcc574bc3918b4ac0" (raw bits) 0x50-0x60 (16) | | | [5]{}: bound 0x60-0x73 (19) -0x0060|07 |. | timestamp: 56 (7) (1970-01-01 00:00:56 UTC) 0x60-0x61 (1) +0x0060|07 |. | timestamp_delta: 6 (7) 0x60-0x61 (1) + | | | timestamp: 56 (1970-01-01T00:00:56Z) 0x0060| 00 | . | id_prefix_size: 0 0x61-0x62 (1) 0x0060| 01 | . | mode: "fingerprint" (1) 0x62-0x63 (1) 0x0060| 63 bb f5 7c 1d 3c 63 92 71 ff 3c bb 0a| c..|..G| fingerprint: "4da3b9235e3a2edb6cfa4b3eeb47d771" (raw bits) 0xc2-0xd2 (16) 0x00d0|d7 71 |.q | | | | [11]{}: bound 0xd2-0xe5 (19) -0x00d0| 07 | . | timestamp: 92 (7) (1970-01-01 00:01:32 UTC) 0xd2-0xd3 (1) +0x00d0| 07 | . | timestamp_delta: 6 (7) 0xd2-0xd3 (1) + | | | timestamp: 92 (1970-01-01T00:01:32Z) 0x00d0| 00 | . | id_prefix_size: 0 0xd3-0xd4 (1) 0x00d0| 01 | . | mode: "fingerprint" (1) 0xd4-0xd5 (1) 0x00d0| 1d 24 5c ef 39 f5 3c 5d 21 82 cc| .$\.9.<]!..| fingerprint: "1d245cef39f53c5d2182cc14e78455b1" (raw bits) 0xd5-0xe5 (16) 0x00e0|14 e7 84 55 b1 |...U. | | | | [12]{}: bound 0xe5-0xf8 (19) -0x00e0| 07 | . | timestamp: 98 (7) (1970-01-01 00:01:38 UTC) 0xe5-0xe6 (1) +0x00e0| 07 | . | timestamp_delta: 6 (7) 0xe5-0xe6 (1) + | | | timestamp: 98 (1970-01-01T00:01:38Z) 0x00e0| 00 | . | id_prefix_size: 0 0xe6-0xe7 (1) 0x00e0| 01 | . | mode: "fingerprint" (1) 0xe7-0xe8 (1) 0x00e0| 0b f5 b1 49 8f e8 6f 20| ...I..o | fingerprint: "0bf5b1498fe86f205b98362e29583e43" (raw bits) 0xe8-0xf8 (16) 0x00f0|5b 98 36 2e 29 58 3e 43 |[.6.)X>C | | | | [13]{}: bound 0xf8-0x10b (19) -0x00f0| 07 | . | timestamp: 104 (7) (1970-01-01 00:01:44 UTC) 0xf8-0xf9 (1) +0x00f0| 07 | . | timestamp_delta: 6 (7) 0xf8-0xf9 (1) + | | | timestamp: 104 (1970-01-01T00:01:44Z) 0x00f0| 00 | . | id_prefix_size: 0 0xf9-0xfa (1) 0x00f0| 01 | . | mode: "fingerprint" (1) 0xfa-0xfb (1) 0x00f0| b9 d4 28 1a 9f| ..(..| fingerprint: "b9d4281a9f6cad1e6129b20c1553121a" (raw bits) 0xfb-0x10b (16) 0x0100|6c ad 1e 61 29 b2 0c 15 53 12 1a |l..a)...S.. | | | | [14]{}: bound 0x10b-0x11e (19) -0x0100| 07 | . | timestamp: 110 (7) (1970-01-01 00:01:50 UTC) 0x10b-0x10c (1) +0x0100| 07 | . | timestamp_delta: 6 (7) 0x10b-0x10c (1) + | | | timestamp: 110 (1970-01-01T00:01:50Z) 0x0100| 00 | . | id_prefix_size: 0 0x10c-0x10d (1) 0x0100| 01 | . | mode: "fingerprint" (1) 0x10d-0x10e (1) 0x0100| ad ec| ..| fingerprint: "adecbf548009aba5ee81d3736d6ea44f" (raw bits) 0x10e-0x11e (16) 0x0110|bf 54 80 09 ab a5 ee 81 d3 73 6d 6e a4 4f |.T.......smn.O | | | | [15]{}: bound 0x11e-0x131 (19) -0x0110| 06 | . | timestamp: 115 (6) (1970-01-01 00:01:55 UTC) 0x11e-0x11f (1) +0x0110| 06 | . | timestamp_delta: 5 (6) 0x11e-0x11f (1) + | | | timestamp: 115 (1970-01-01T00:01:55Z) 0x0110| 00| .| id_prefix_size: 0 0x11f-0x120 (1) 0x0120|01 |. | mode: "fingerprint" (1) 0x120-0x121 (1) 0x0120| ce 07 d4 b3 d3 45 34 21 ee 9d f0 60 06 c1 b0| .....E4!...`...| fingerprint: "ce07d4b3d3453421ee9df06006c1b068" (raw bits) 0x121-0x131 (16) 0x0130|68 |h | | | | [16]{}: bound 0x131-0x144 (19) -0x0130| 04 | . | timestamp: 118 (4) (1970-01-01 00:01:58 UTC) 0x131-0x132 (1) +0x0130| 04 | . | timestamp_delta: 3 (4) 0x131-0x132 (1) + | | | timestamp: 118 (1970-01-01T00:01:58Z) 0x0130| 00 | . | id_prefix_size: 0 0x132-0x133 (1) 0x0130| 01 | . | mode: "fingerprint" (1) 0x133-0x134 (1) 0x0130| 71 73 c7 b7 04 e9 da fe c9 79 de 32| qs.......y.2| fingerprint: "7173c7b704e9dafec979de325b5c0407" (raw bits) 0x134-0x144 (16) 0x0140|5b 5c 04 07 |[\.. | | | | [17]{}: bound 0x144-0x157 (19) -0x0140| 04 | . | timestamp: 121 (4) (1970-01-01 00:02:01 UTC) 0x144-0x145 (1) +0x0140| 04 | . | timestamp_delta: 3 (4) 0x144-0x145 (1) + | | | timestamp: 121 (1970-01-01T00:02:01Z) 0x0140| 00 | . | id_prefix_size: 0 0x145-0x146 (1) 0x0140| 01 | . | mode: "fingerprint" (1) 0x146-0x147 (1) 0x0140| 20 79 7b db 19 37 76 0c d5| y{..7v..| fingerprint: "20797bdb1937760cd51c471fda41d7d1" (raw bits) 0x147-0x157 (16) 0x0150|1c 47 1f da 41 d7 d1 |.G..A.. | | | | [18]{}: bound 0x157-0x16a (19) -0x0150| 04 | . | timestamp: 124 (4) (1970-01-01 00:02:04 UTC) 0x157-0x158 (1) +0x0150| 04 | . | timestamp_delta: 3 (4) 0x157-0x158 (1) + | | | timestamp: 124 (1970-01-01T00:02:04Z) 0x0150| 00 | . | id_prefix_size: 0 0x158-0x159 (1) 0x0150| 01 | . | mode: "fingerprint" (1) 0x159-0x15a (1) 0x0150| 90 e4 5e 9b 6c 6c| ..^.ll| fingerprint: "90e45e9b6c6c871130a41ff4ba83a91f" (raw bits) 0x15a-0x16a (16) 0x0160|87 11 30 a4 1f f4 ba 83 a9 1f |..0....... | | | | [19]{}: bound 0x16a-0x17d (19) -0x0160| 03 | . | timestamp: 126 (3) (1970-01-01 00:02:06 UTC) 0x16a-0x16b (1) +0x0160| 03 | . | timestamp_delta: 2 (3) 0x16a-0x16b (1) + | | | timestamp: 126 (1970-01-01T00:02:06Z) 0x0160| 00 | . | id_prefix_size: 0 0x16b-0x16c (1) 0x0160| 01 | . | mode: "fingerprint" (1) 0x16c-0x16d (1) 0x0160| 4e af 16| N..| fingerprint: "4eaf1631a94803214b707e3410498846" (raw bits) 0x16d-0x17d (16) 0x0170|31 a9 48 03 21 4b 70 7e 34 10 49 88 46 |1.H.!Kp~4.I.F | | | | [20]{}: bound 0x17d-0x190 (19) -0x0170| 03 | . | timestamp: 128 (3) (1970-01-01 00:02:08 UTC) 0x17d-0x17e (1) +0x0170| 03 | . | timestamp_delta: 2 (3) 0x17d-0x17e (1) + | | | timestamp: 128 (1970-01-01T00:02:08Z) 0x0170| 00 | . | id_prefix_size: 0 0x17e-0x17f (1) 0x0170| 01| .| mode: "fingerprint" (1) 0x17f-0x180 (1) 0x0180|d5 78 d2 97 2d 05 36 f4 0b e9 1b 74 c2 61 ec ee|.x..-.6....t.a..| fingerprint: "d578d2972d0536f40be91b74c261ecee" (raw bits) 0x180-0x190 (16) | | | [21]{}: bound 0x190-0x1a3 (19) -0x0190|03 |. | timestamp: 130 (3) (1970-01-01 00:02:10 UTC) 0x190-0x191 (1) +0x0190|03 |. | timestamp_delta: 2 (3) 0x190-0x191 (1) + | | | timestamp: 130 (1970-01-01T00:02:10Z) 0x0190| 00 | . | id_prefix_size: 0 0x191-0x192 (1) 0x0190| 01 | . | mode: "fingerprint" (1) 0x192-0x193 (1) 0x0190| 0e bf d7 96 24 d2 89 2c 7d 40 71 91 72| ....$..,}@q.r| fingerprint: "0ebfd79624d2892c7d40719172794e51" (raw bits) 0x193-0x1a3 (16) 0x01a0|79 4e 51 |yNQ | | | | [22]{}: bound 0x1a3-0x1b6 (19) -0x01a0| 03 | . | timestamp: 132 (3) (1970-01-01 00:02:12 UTC) 0x1a3-0x1a4 (1) +0x01a0| 03 | . | timestamp_delta: 2 (3) 0x1a3-0x1a4 (1) + | | | timestamp: 132 (1970-01-01T00:02:12Z) 0x01a0| 00 | . | id_prefix_size: 0 0x1a4-0x1a5 (1) 0x01a0| 01 | . | mode: "fingerprint" (1) 0x1a5-0x1a6 (1) 0x01a0| e4 c0 74 f8 03 8a 21 80 76 ef| ..t...!.v.| fingerprint: "e4c074f8038a218076ef742fbbd72e38" (raw bits) 0x1a6-0x1b6 (16) 0x01b0|74 2f bb d7 2e 38 |t/...8 | | | | [23]{}: bound 0x1b6-0x1c9 (19) -0x01b0| 03 | . | timestamp: 134 (3) (1970-01-01 00:02:14 UTC) 0x1b6-0x1b7 (1) +0x01b0| 03 | . | timestamp_delta: 2 (3) 0x1b6-0x1b7 (1) + | | | timestamp: 134 (1970-01-01T00:02:14Z) 0x01b0| 00 | . | id_prefix_size: 0 0x1b7-0x1b8 (1) 0x01b0| 01 | . | mode: "fingerprint" (1) 0x1b8-0x1b9 (1) 0x01b0| db 3f fa 62 12 e2 4c| .?.b..L| fingerprint: "db3ffa6212e24ca93ee910017aa18677" (raw bits) 0x1b9-0x1c9 (16) 0x01c0|a9 3e e9 10 01 7a a1 86 77 |.>...z..w | | | | [24]{}: bound 0x1c9-0x1dc (19) -0x01c0| 03 | . | timestamp: 136 (3) (1970-01-01 00:02:16 UTC) 0x1c9-0x1ca (1) +0x01c0| 03 | . | timestamp_delta: 2 (3) 0x1c9-0x1ca (1) + | | | timestamp: 136 (1970-01-01T00:02:16Z) 0x01c0| 00 | . | id_prefix_size: 0 0x1ca-0x1cb (1) 0x01c0| 01 | . | mode: "fingerprint" (1) 0x1cb-0x1cc (1) 0x01c0| 4d d0 45 1e| M.E.| fingerprint: "4dd0451e95f25f3d38aa9e383777588f" (raw bits) 0x1cc-0x1dc (16) 0x01d0|95 f2 5f 3d 38 aa 9e 38 37 77 58 8f |.._=8..87wX. | | | | [25]{}: bound 0x1dc-0x1ef (19) -0x01d0| 03 | . | timestamp: 138 (3) (1970-01-01 00:02:18 UTC) 0x1dc-0x1dd (1) +0x01d0| 03 | . | timestamp_delta: 2 (3) 0x1dc-0x1dd (1) + | | | timestamp: 138 (1970-01-01T00:02:18Z) 0x01d0| 00 | . | id_prefix_size: 0 0x1dd-0x1de (1) 0x01d0| 01 | . | mode: "fingerprint" (1) 0x1de-0x1df (1) 0x01d0| 10| .| fingerprint: "107640bce20a5f11b2be649ab54e13ce" (raw bits) 0x1df-0x1ef (16) 0x01e0|76 40 bc e2 0a 5f 11 b2 be 64 9a b5 4e 13 ce |v@..._...d..N.. | | | | [26]{}: bound 0x1ef-0x202 (19) -0x01e0| 03| .| timestamp: 140 (3) (1970-01-01 00:02:20 UTC) 0x1ef-0x1f0 (1) +0x01e0| 03| .| timestamp_delta: 2 (3) 0x1ef-0x1f0 (1) + | | | timestamp: 140 (1970-01-01T00:02:20Z) 0x01f0|00 |. | id_prefix_size: 0 0x1f0-0x1f1 (1) 0x01f0| 01 | . | mode: "fingerprint" (1) 0x1f1-0x1f2 (1) 0x01f0| 66 95 38 80 3d be e5 14 bb 42 b9 6f 74 78| f.8.=....B.otx| fingerprint: "669538803dbee514bb42b96f74788b47" (raw bits) 0x1f2-0x202 (16) 0x0200|8b 47 |.G | | | | [27]{}: bound 0x202-0x215 (19) -0x0200| 03 | . | timestamp: 142 (3) (1970-01-01 00:02:22 UTC) 0x202-0x203 (1) +0x0200| 03 | . | timestamp_delta: 2 (3) 0x202-0x203 (1) + | | | timestamp: 142 (1970-01-01T00:02:22Z) 0x0200| 00 | . | id_prefix_size: 0 0x203-0x204 (1) 0x0200| 01 | . | mode: "fingerprint" (1) 0x204-0x205 (1) 0x0200| 61 69 2b 52 ae 14 4a 89 d9 18 ab| ai+R..J....| fingerprint: "61692b52ae144a89d918abf929386a71" (raw bits) 0x205-0x215 (16) 0x0210|f9 29 38 6a 71 |.)8jq | | | | [28]{}: bound 0x215-0x228 (19) -0x0210| 03 | . | timestamp: 144 (3) (1970-01-01 00:02:24 UTC) 0x215-0x216 (1) +0x0210| 03 | . | timestamp_delta: 2 (3) 0x215-0x216 (1) + | | | timestamp: 144 (1970-01-01T00:02:24Z) 0x0210| 00 | . | id_prefix_size: 0 0x216-0x217 (1) 0x0210| 01 | . | mode: "fingerprint" (1) 0x217-0x218 (1) 0x0210| c3 5a 9e f8 8e 95 3f 27| .Z....?'| fingerprint: "c35a9ef88e953f27b8268024902bd509" (raw bits) 0x218-0x228 (16) 0x0220|b8 26 80 24 90 2b d5 09 |.&.$.+.. | | | | [29]{}: bound 0x228-0x23b (19) -0x0220| 03 | . | timestamp: 146 (3) (1970-01-01 00:02:26 UTC) 0x228-0x229 (1) +0x0220| 03 | . | timestamp_delta: 2 (3) 0x228-0x229 (1) + | | | timestamp: 146 (1970-01-01T00:02:26Z) 0x0220| 00 | . | id_prefix_size: 0 0x229-0x22a (1) 0x0220| 01 | . | mode: "fingerprint" (1) 0x22a-0x22b (1) 0x0220| 91 c4 c3 18 10| .....| fingerprint: "91c4c31810092287d3707d0f7458bfdd" (raw bits) 0x22b-0x23b (16) 0x0230|09 22 87 d3 70 7d 0f 74 58 bf dd |."..p}.tX.. | | | | [30]{}: bound 0x23b-0x24e (19) -0x0230| 03 | . | timestamp: 148 (3) (1970-01-01 00:02:28 UTC) 0x23b-0x23c (1) +0x0230| 03 | . | timestamp_delta: 2 (3) 0x23b-0x23c (1) + | | | timestamp: 148 (1970-01-01T00:02:28Z) 0x0230| 00 | . | id_prefix_size: 0 0x23c-0x23d (1) 0x0230| 01 | . | mode: "fingerprint" (1) 0x23d-0x23e (1) 0x0230| 47 29| G)| fingerprint: "4729532d64e675374a94511824050d05" (raw bits) 0x23e-0x24e (16) 0x0240|53 2d 64 e6 75 37 4a 94 51 18 24 05 0d 05 |S-d.u7J.Q.$... | | | | [31]{}: bound 0x24e-0x261 (19) -0x0240| 53 | S | timestamp: 230 (83) (1970-01-01 00:03:50 UTC) 0x24e-0x24f (1) +0x0240| 53 | S | timestamp_delta: 82 (83) 0x24e-0x24f (1) + | | | timestamp: 230 (1970-01-01T00:03:50Z) 0x0240| 00| .| id_prefix_size: 0 0x24f-0x250 (1) 0x0250|01 |. | mode: "fingerprint" (1) 0x250-0x251 (1) 0x0250| e2 78 eb 49 90 c5 ef 5b 15 66 87 14 c2 cc 09| .x.I...[.f.....| fingerprint: "e278eb4990c5ef5b15668714c2cc0918" (raw bits) 0x251-0x261 (16) 0x0260|18 |. | | | | [32]{}: bound 0x261-0x265 (4) -0x0260| 74 | t | timestamp: 345 (116) (1970-01-01 00:05:45 UTC) 0x261-0x262 (1) +0x0260| 74 | t | timestamp_delta: 115 (116) 0x261-0x262 (1) + | | | timestamp: 345 (1970-01-01T00:05:45Z) 0x0260| 00 | . | id_prefix_size: 0 0x262-0x263 (1) 0x0260| 02 | . | mode: "idlist" (2) 0x263-0x264 (1) | | | idlist{}: 0x264-0x265 (1) 0x0260| 00 | . | num: 0 0x264-0x265 (1) | | | ids[0:0]: 0x265-0x265 (0) | | | [33]{}: bound 0x265-0x269 (4) -0x0260| 74 | t | timestamp: 460 (116) (1970-01-01 00:07:40 UTC) 0x265-0x266 (1) +0x0260| 74 | t | timestamp_delta: 115 (116) 0x265-0x266 (1) + | | | timestamp: 460 (1970-01-01T00:07:40Z) 0x0260| 00 | . | id_prefix_size: 0 0x266-0x267 (1) 0x0260| 02 | . | mode: "idlist" (2) 0x267-0x268 (1) | | | idlist{}: 0x268-0x269 (1) 0x0260| 00 | . | num: 0 0x268-0x269 (1) | | | ids[0:0]: 0x269-0x269 (0) | | | [34]{}: bound 0x269-0x26d (4) -0x0260| 74 | t | timestamp: 575 (116) (1970-01-01 00:09:35 UTC) 0x269-0x26a (1) +0x0260| 74 | t | timestamp_delta: 115 (116) 0x269-0x26a (1) + | | | timestamp: 575 (1970-01-01T00:09:35Z) 0x0260| 00 | . | id_prefix_size: 0 0x26a-0x26b (1) 0x0260| 02 | . | mode: "idlist" (2) 0x26b-0x26c (1) | | | idlist{}: 0x26c-0x26d (1) 0x0260| 00 | . | num: 0 0x26c-0x26d (1) | | | ids[0:0]: 0x26d-0x26d (0) | | | [35]{}: bound 0x26d-0x271 (4) -0x0260| 74 | t | timestamp: 690 (116) (1970-01-01 00:11:30 UTC) 0x26d-0x26e (1) +0x0260| 74 | t | timestamp_delta: 115 (116) 0x26d-0x26e (1) + | | | timestamp: 690 (1970-01-01T00:11:30Z) 0x0260| 00 | . | id_prefix_size: 0 0x26e-0x26f (1) 0x0260| 02| .| mode: "idlist" (2) 0x26f-0x270 (1) | | | idlist{}: 0x270-0x271 (1) 0x0270|00 |. | num: 0 0x270-0x271 (1) | | | ids[0:0]: 0x271-0x271 (0) | | | [36]{}: bound 0x271-0x275 (4) -0x0270| 74 | t | timestamp: 805 (116) (1970-01-01 00:13:25 UTC) 0x271-0x272 (1) +0x0270| 74 | t | timestamp_delta: 115 (116) 0x271-0x272 (1) + | | | timestamp: 805 (1970-01-01T00:13:25Z) 0x0270| 00 | . | id_prefix_size: 0 0x272-0x273 (1) 0x0270| 02 | . | mode: "idlist" (2) 0x273-0x274 (1) | | | idlist{}: 0x274-0x275 (1) 0x0270| 00 | . | num: 0 0x274-0x275 (1) | | | ids[0:0]: 0x275-0x275 (0) | | | [37]{}: bound 0x275-0x279 (4) -0x0270| 74 | t | timestamp: 920 (116) (1970-01-01 00:15:20 UTC) 0x275-0x276 (1) +0x0270| 74 | t | timestamp_delta: 115 (116) 0x275-0x276 (1) + | | | timestamp: 920 (1970-01-01T00:15:20Z) 0x0270| 00 | . | id_prefix_size: 0 0x276-0x277 (1) 0x0270| 02 | . | mode: "idlist" (2) 0x277-0x278 (1) | | | idlist{}: 0x278-0x279 (1) 0x0270| 00 | . | num: 0 0x278-0x279 (1) | | | ids[0:0]: 0x279-0x279 (0) | | | [38]{}: bound 0x279-0x27d (4) -0x0270| 74 | t | timestamp: 1035 (116) (1970-01-01 00:17:15 UTC) 0x279-0x27a (1) +0x0270| 74 | t | timestamp_delta: 115 (116) 0x279-0x27a (1) + | | | timestamp: 1035 (1970-01-01T00:17:15Z) 0x0270| 00 | . | id_prefix_size: 0 0x27a-0x27b (1) 0x0270| 02 | . | mode: "idlist" (2) 0x27b-0x27c (1) | | | idlist{}: 0x27c-0x27d (1) 0x0270| 00 | . | num: 0 0x27c-0x27d (1) | | | ids[0:0]: 0x27d-0x27d (0) | | | [39]{}: bound 0x27d-0x281 (4) -0x0270| 74 | t | timestamp: 1150 (116) (1970-01-01 00:19:10 UTC) 0x27d-0x27e (1) +0x0270| 74 | t | timestamp_delta: 115 (116) 0x27d-0x27e (1) + | | | timestamp: 1150 (1970-01-01T00:19:10Z) 0x0270| 00 | . | id_prefix_size: 0 0x27e-0x27f (1) 0x0270| 02| .| mode: "idlist" (2) 0x27f-0x280 (1) | | | idlist{}: 0x280-0x281 (1) 0x0280|00 |. | num: 0 0x280-0x281 (1) | | | ids[0:0]: 0x281-0x281 (0) | | | [40]{}: bound 0x281-0x285 (4) -0x0280| 74 | t | timestamp: 1265 (116) (1970-01-01 00:21:05 UTC) 0x281-0x282 (1) +0x0280| 74 | t | timestamp_delta: 115 (116) 0x281-0x282 (1) + | | | timestamp: 1265 (1970-01-01T00:21:05Z) 0x0280| 00 | . | id_prefix_size: 0 0x282-0x283 (1) 0x0280| 02 | . | mode: "idlist" (2) 0x283-0x284 (1) | | | idlist{}: 0x284-0x285 (1) 0x0280| 00 | . | num: 0 0x284-0x285 (1) | | | ids[0:0]: 0x285-0x285 (0) | | | [41]{}: bound 0x285-0x289 (4) -0x0280| 74 | t | timestamp: 1380 (116) (1970-01-01 00:23:00 UTC) 0x285-0x286 (1) +0x0280| 74 | t | timestamp_delta: 115 (116) 0x285-0x286 (1) + | | | timestamp: 1380 (1970-01-01T00:23:00Z) 0x0280| 00 | . | id_prefix_size: 0 0x286-0x287 (1) 0x0280| 02 | . | mode: "idlist" (2) 0x287-0x288 (1) | | | idlist{}: 0x288-0x289 (1) 0x0280| 00 | . | num: 0 0x288-0x289 (1) | | | ids[0:0]: 0x289-0x289 (0) | | | [42]{}: bound 0x289-0x28d (4) -0x0280| 74 | t | timestamp: 1495 (116) (1970-01-01 00:24:55 UTC) 0x289-0x28a (1) +0x0280| 74 | t | timestamp_delta: 115 (116) 0x289-0x28a (1) + | | | timestamp: 1495 (1970-01-01T00:24:55Z) 0x0280| 00 | . | id_prefix_size: 0 0x28a-0x28b (1) 0x0280| 02 | . | mode: "idlist" (2) 0x28b-0x28c (1) | | | idlist{}: 0x28c-0x28d (1) 0x0280| 00 | . | num: 0 0x28c-0x28d (1) | | | ids[0:0]: 0x28d-0x28d (0) | | | [43]{}: bound 0x28d-0x291 (4) -0x0280| 74 | t | timestamp: 1610 (116) (1970-01-01 00:26:50 UTC) 0x28d-0x28e (1) +0x0280| 74 | t | timestamp_delta: 115 (116) 0x28d-0x28e (1) + | | | timestamp: 1610 (1970-01-01T00:26:50Z) 0x0280| 00 | . | id_prefix_size: 0 0x28e-0x28f (1) 0x0280| 02| .| mode: "idlist" (2) 0x28f-0x290 (1) | | | idlist{}: 0x290-0x291 (1) 0x0290|00 |. | num: 0 0x290-0x291 (1) | | | ids[0:0]: 0x291-0x291 (0) | | | [44]{}: bound 0x291-0x595 (772) -0x0290| 73 | s | timestamp: 1724 (115) (1970-01-01 00:28:44 UTC) 0x291-0x292 (1) +0x0290| 73 | s | timestamp_delta: 114 (115) 0x291-0x292 (1) + | | | timestamp: 1724 (1970-01-01T00:28:44Z) 0x0290| 00 | . | id_prefix_size: 0 0x292-0x293 (1) 0x0290| 02 | . | mode: "idlist" (2) 0x293-0x294 (1) | | | idlist{}: 0x294-0x595 (769) @@ -356,209 +401,245 @@ $ fq -d negentropy dv bigmessagewitheverything 0x0580|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| 0x0590|00 00 00 17 23 |....# | | | | [45]{}: bound 0x595-0x599 (4) -0x0590| 82 0b | .. | timestamp: 1990 (267) (1970-01-01 00:33:10 UTC) 0x595-0x597 (2) +0x0590| 82 0b | .. | timestamp_delta: 266 (267) 0x595-0x597 (2) + | | | timestamp: 1990 (1970-01-01T00:33:10Z) 0x0590| 00 | . | id_prefix_size: 0 0x597-0x598 (1) 0x0590| 00 | . | mode: "skip" (0) 0x598-0x599 (1) | | | [46]{}: bound 0x599-0x5ac (19) -0x0590| 09 | . | timestamp: 1998 (9) (1970-01-01 00:33:18 UTC) 0x599-0x59a (1) +0x0590| 09 | . | timestamp_delta: 8 (9) 0x599-0x59a (1) + | | | timestamp: 1998 (1970-01-01T00:33:18Z) 0x0590| 00 | . | id_prefix_size: 0 0x59a-0x59b (1) 0x0590| 01 | . | mode: "fingerprint" (1) 0x59b-0x59c (1) 0x0590| d9 ab d7 92| ....| fingerprint: "d9abd792cabed05dfc78ebaaf733a351" (raw bits) 0x59c-0x5ac (16) 0x05a0|ca be d0 5d fc 78 eb aa f7 33 a3 51 |...].x...3.Q | | | | [47]{}: bound 0x5ac-0x5bf (19) -0x05a0| 09 | . | timestamp: 2006 (9) (1970-01-01 00:33:26 UTC) 0x5ac-0x5ad (1) +0x05a0| 09 | . | timestamp_delta: 8 (9) 0x5ac-0x5ad (1) + | | | timestamp: 2006 (1970-01-01T00:33:26Z) 0x05a0| 00 | . | id_prefix_size: 0 0x5ad-0x5ae (1) 0x05a0| 01 | . | mode: "fingerprint" (1) 0x5ae-0x5af (1) 0x05a0| 65| e| fingerprint: "653646a92fd16e578a7e022fa5e69d82" (raw bits) 0x5af-0x5bf (16) 0x05b0|36 46 a9 2f d1 6e 57 8a 7e 02 2f a5 e6 9d 82 |6F./.nW.~./.... | | | | [48]{}: bound 0x5bf-0x5d2 (19) -0x05b0| 09| .| timestamp: 2014 (9) (1970-01-01 00:33:34 UTC) 0x5bf-0x5c0 (1) +0x05b0| 09| .| timestamp_delta: 8 (9) 0x5bf-0x5c0 (1) + | | | timestamp: 2014 (1970-01-01T00:33:34Z) 0x05c0|00 |. | id_prefix_size: 0 0x5c0-0x5c1 (1) 0x05c0| 01 | . | mode: "fingerprint" (1) 0x5c1-0x5c2 (1) 0x05c0| 3f e6 2c 26 96 e4 f1 f7 64 de 7f ff c4 17| ?.,&....d.....| fingerprint: "3fe62c2696e4f1f764de7fffc417b9ab" (raw bits) 0x5c2-0x5d2 (16) 0x05d0|b9 ab |.. | | | | [49]{}: bound 0x5d2-0x5e5 (19) -0x05d0| 09 | . | timestamp: 2022 (9) (1970-01-01 00:33:42 UTC) 0x5d2-0x5d3 (1) +0x05d0| 09 | . | timestamp_delta: 8 (9) 0x5d2-0x5d3 (1) + | | | timestamp: 2022 (1970-01-01T00:33:42Z) 0x05d0| 00 | . | id_prefix_size: 0 0x5d3-0x5d4 (1) 0x05d0| 01 | . | mode: "fingerprint" (1) 0x5d4-0x5d5 (1) 0x05d0| 1d 0f 67 d2 3b 92 16 73 e5 3f ad| ..g.;..s.?.| fingerprint: "1d0f67d23b921673e53fade4f0eba84c" (raw bits) 0x5d5-0x5e5 (16) 0x05e0|e4 f0 eb a8 4c |....L | | | | [50]{}: bound 0x5e5-0x5f8 (19) -0x05e0| 08 | . | timestamp: 2029 (8) (1970-01-01 00:33:49 UTC) 0x5e5-0x5e6 (1) +0x05e0| 08 | . | timestamp_delta: 7 (8) 0x5e5-0x5e6 (1) + | | | timestamp: 2029 (1970-01-01T00:33:49Z) 0x05e0| 00 | . | id_prefix_size: 0 0x5e6-0x5e7 (1) 0x05e0| 01 | . | mode: "fingerprint" (1) 0x5e7-0x5e8 (1) 0x05e0| d9 7d a8 15 19 ff 2f ad| .}..../.| fingerprint: "d97da81519ff2fad37ca7a875699ecd7" (raw bits) 0x5e8-0x5f8 (16) 0x05f0|37 ca 7a 87 56 99 ec d7 |7.z.V... | | | | [51]{}: bound 0x5f8-0x60b (19) -0x05f0| 08 | . | timestamp: 2036 (8) (1970-01-01 00:33:56 UTC) 0x5f8-0x5f9 (1) +0x05f0| 08 | . | timestamp_delta: 7 (8) 0x5f8-0x5f9 (1) + | | | timestamp: 2036 (1970-01-01T00:33:56Z) 0x05f0| 00 | . | id_prefix_size: 0 0x5f9-0x5fa (1) 0x05f0| 01 | . | mode: "fingerprint" (1) 0x5fa-0x5fb (1) 0x05f0| ad 13 64 45 06| ..dE.| fingerprint: "ad1364450644680e3057ee3ba3cce43f" (raw bits) 0x5fb-0x60b (16) 0x0600|44 68 0e 30 57 ee 3b a3 cc e4 3f |Dh.0W.;...? | | | | [52]{}: bound 0x60b-0x61e (19) -0x0600| 08 | . | timestamp: 2043 (8) (1970-01-01 00:34:03 UTC) 0x60b-0x60c (1) +0x0600| 08 | . | timestamp_delta: 7 (8) 0x60b-0x60c (1) + | | | timestamp: 2043 (1970-01-01T00:34:03Z) 0x0600| 00 | . | id_prefix_size: 0 0x60c-0x60d (1) 0x0600| 01 | . | mode: "fingerprint" (1) 0x60d-0x60e (1) 0x0600| b5 66| .f| fingerprint: "b566b73ff10c6c36c9c6e1a4a937fa16" (raw bits) 0x60e-0x61e (16) 0x0610|b7 3f f1 0c 6c 36 c9 c6 e1 a4 a9 37 fa 16 |.?..l6.....7.. | | | | [53]{}: bound 0x61e-0x631 (19) -0x0610| 08 | . | timestamp: 2050 (8) (1970-01-01 00:34:10 UTC) 0x61e-0x61f (1) +0x0610| 08 | . | timestamp_delta: 7 (8) 0x61e-0x61f (1) + | | | timestamp: 2050 (1970-01-01T00:34:10Z) 0x0610| 00| .| id_prefix_size: 0 0x61f-0x620 (1) 0x0620|01 |. | mode: "fingerprint" (1) 0x620-0x621 (1) 0x0620| 18 01 9b f5 1b 81 b4 c1 55 a3 06 98 24 7d 3b| ........U...$};| fingerprint: "18019bf51b81b4c155a30698247d3bda" (raw bits) 0x621-0x631 (16) 0x0630|da |. | | | | [54]{}: bound 0x631-0x644 (19) -0x0630| 08 | . | timestamp: 2057 (8) (1970-01-01 00:34:17 UTC) 0x631-0x632 (1) +0x0630| 08 | . | timestamp_delta: 7 (8) 0x631-0x632 (1) + | | | timestamp: 2057 (1970-01-01T00:34:17Z) 0x0630| 00 | . | id_prefix_size: 0 0x632-0x633 (1) 0x0630| 01 | . | mode: "fingerprint" (1) 0x633-0x634 (1) 0x0630| c2 54 3a dc de c6 1f 5c a5 77 47 a9| .T:....\.wG.| fingerprint: "c2543adcdec61f5ca57747a95f2757a3" (raw bits) 0x634-0x644 (16) 0x0640|5f 27 57 a3 |_'W. | | | | [55]{}: bound 0x644-0x657 (19) -0x0640| 08 | . | timestamp: 2064 (8) (1970-01-01 00:34:24 UTC) 0x644-0x645 (1) +0x0640| 08 | . | timestamp_delta: 7 (8) 0x644-0x645 (1) + | | | timestamp: 2064 (1970-01-01T00:34:24Z) 0x0640| 00 | . | id_prefix_size: 0 0x645-0x646 (1) 0x0640| 01 | . | mode: "fingerprint" (1) 0x646-0x647 (1) 0x0640| 59 33 54 e4 fc eb 61 ce f2| Y3T...a..| fingerprint: "593354e4fceb61cef2dd34a3a4a95519" (raw bits) 0x647-0x657 (16) 0x0650|dd 34 a3 a4 a9 55 19 |.4...U. | | | | [56]{}: bound 0x657-0x66a (19) -0x0650| 08 | . | timestamp: 2071 (8) (1970-01-01 00:34:31 UTC) 0x657-0x658 (1) +0x0650| 08 | . | timestamp_delta: 7 (8) 0x657-0x658 (1) + | | | timestamp: 2071 (1970-01-01T00:34:31Z) 0x0650| 00 | . | id_prefix_size: 0 0x658-0x659 (1) 0x0650| 01 | . | mode: "fingerprint" (1) 0x659-0x65a (1) 0x0650| 49 f7 f8 8a 9c bf| I.....| fingerprint: "49f7f88a9cbff628b5f3633ee281b220" (raw bits) 0x65a-0x66a (16) 0x0660|f6 28 b5 f3 63 3e e2 81 b2 20 |.(..c>... | | | | [57]{}: bound 0x66a-0x67d (19) -0x0660| 08 | . | timestamp: 2078 (8) (1970-01-01 00:34:38 UTC) 0x66a-0x66b (1) +0x0660| 08 | . | timestamp_delta: 7 (8) 0x66a-0x66b (1) + | | | timestamp: 2078 (1970-01-01T00:34:38Z) 0x0660| 00 | . | id_prefix_size: 0 0x66b-0x66c (1) 0x0660| 01 | . | mode: "fingerprint" (1) 0x66c-0x66d (1) 0x0660| c5 ee 00| ...| fingerprint: "c5ee0031090734fb4047b1e148ca59ad" (raw bits) 0x66d-0x67d (16) 0x0670|31 09 07 34 fb 40 47 b1 e1 48 ca 59 ad |1..4.@G..H.Y. | | | | [58]{}: bound 0x67d-0x690 (19) -0x0670| 08 | . | timestamp: 2085 (8) (1970-01-01 00:34:45 UTC) 0x67d-0x67e (1) +0x0670| 08 | . | timestamp_delta: 7 (8) 0x67d-0x67e (1) + | | | timestamp: 2085 (1970-01-01T00:34:45Z) 0x0670| 00 | . | id_prefix_size: 0 0x67e-0x67f (1) 0x0670| 01| .| mode: "fingerprint" (1) 0x67f-0x680 (1) 0x0680|29 ad e2 61 b2 4b 5c eb 02 26 eb 04 af 8d 92 5a|)..a.K\..&.....Z| fingerprint: "29ade261b24b5ceb0226eb04af8d925a" (raw bits) 0x680-0x690 (16) | | | [59]{}: bound 0x690-0x6a3 (19) -0x0690|08 |. | timestamp: 2092 (8) (1970-01-01 00:34:52 UTC) 0x690-0x691 (1) +0x0690|08 |. | timestamp_delta: 7 (8) 0x690-0x691 (1) + | | | timestamp: 2092 (1970-01-01T00:34:52Z) 0x0690| 00 | . | id_prefix_size: 0 0x691-0x692 (1) 0x0690| 01 | . | mode: "fingerprint" (1) 0x692-0x693 (1) 0x0690| f3 53 24 69 0f 7d d9 a7 89 e6 41 f5 96| .S$i.}....A..| fingerprint: "f35324690f7dd9a789e641f5960a631b" (raw bits) 0x693-0x6a3 (16) 0x06a0|0a 63 1b |.c. | | | | [60]{}: bound 0x6a3-0x6b6 (19) -0x06a0| 08 | . | timestamp: 2099 (8) (1970-01-01 00:34:59 UTC) 0x6a3-0x6a4 (1) +0x06a0| 08 | . | timestamp_delta: 7 (8) 0x6a3-0x6a4 (1) + | | | timestamp: 2099 (1970-01-01T00:34:59Z) 0x06a0| 00 | . | id_prefix_size: 0 0x6a4-0x6a5 (1) 0x06a0| 01 | . | mode: "fingerprint" (1) 0x6a5-0x6a6 (1) 0x06a0| 40 5f a9 00 fb a5 5d 41 2f 4a| @_....]A/J| fingerprint: "405fa900fba55d412f4a7ca29475ea50" (raw bits) 0x6a6-0x6b6 (16) 0x06b0|7c a2 94 75 ea 50 ||..u.P | | | | [61]{}: bound 0x6b6-0x6c9 (19) -0x06b0| 08 | . | timestamp: 2106 (8) (1970-01-01 00:35:06 UTC) 0x6b6-0x6b7 (1) +0x06b0| 08 | . | timestamp_delta: 7 (8) 0x6b6-0x6b7 (1) + | | | timestamp: 2106 (1970-01-01T00:35:06Z) 0x06b0| 00 | . | id_prefix_size: 0 0x6b7-0x6b8 (1) 0x06b0| 01 | . | mode: "fingerprint" (1) 0x6b8-0x6b9 (1) 0x06b0| 12 4f a3 97 02 a9 9c| .O.....| fingerprint: "124fa39702a99ce518ff02b45be6df9d" (raw bits) 0x6b9-0x6c9 (16) 0x06c0|e5 18 ff 02 b4 5b e6 df 9d |.....[... | | | | [62]{}: bound 0x6c9-0x6cd (4) -0x06c0| 86 25 | .% | timestamp: 2910 (805) (1970-01-01 00:48:30 UTC) 0x6c9-0x6cb (2) +0x06c0| 86 25 | .% | timestamp_delta: 804 (805) 0x6c9-0x6cb (2) + | | | timestamp: 2910 (1970-01-01T00:48:30Z) 0x06c0| 00 | . | id_prefix_size: 0 0x6cb-0x6cc (1) 0x06c0| 00 | . | mode: "skip" (0) 0x6cc-0x6cd (1) | | | [63]{}: bound 0x6cd-0x6e0 (19) -0x06c0| 08 | . | timestamp: 2917 (8) (1970-01-01 00:48:37 UTC) 0x6cd-0x6ce (1) +0x06c0| 08 | . | timestamp_delta: 7 (8) 0x6cd-0x6ce (1) + | | | timestamp: 2917 (1970-01-01T00:48:37Z) 0x06c0| 00 | . | id_prefix_size: 0 0x6ce-0x6cf (1) 0x06c0| 01| .| mode: "fingerprint" (1) 0x6cf-0x6d0 (1) 0x06d0|c9 28 15 e7 0a 04 ca f4 61 10 33 d0 78 c3 de b4|.(......a.3.x...| fingerprint: "c92815e70a04caf4611033d078c3deb4" (raw bits) 0x6d0-0x6e0 (16) | | | [64]{}: bound 0x6e0-0x6f3 (19) -0x06e0|08 |. | timestamp: 2924 (8) (1970-01-01 00:48:44 UTC) 0x6e0-0x6e1 (1) +0x06e0|08 |. | timestamp_delta: 7 (8) 0x6e0-0x6e1 (1) + | | | timestamp: 2924 (1970-01-01T00:48:44Z) 0x06e0| 00 | . | id_prefix_size: 0 0x6e1-0x6e2 (1) 0x06e0| 01 | . | mode: "fingerprint" (1) 0x6e2-0x6e3 (1) 0x06e0| 36 31 05 0a cc 18 b6 55 52 56 34 03 f9| 61.....URV4..| fingerprint: "3631050acc18b65552563403f963d1df" (raw bits) 0x6e3-0x6f3 (16) 0x06f0|63 d1 df |c.. | | | | [65]{}: bound 0x6f3-0x706 (19) -0x06f0| 08 | . | timestamp: 2931 (8) (1970-01-01 00:48:51 UTC) 0x6f3-0x6f4 (1) +0x06f0| 08 | . | timestamp_delta: 7 (8) 0x6f3-0x6f4 (1) + | | | timestamp: 2931 (1970-01-01T00:48:51Z) 0x06f0| 00 | . | id_prefix_size: 0 0x6f4-0x6f5 (1) 0x06f0| 01 | . | mode: "fingerprint" (1) 0x6f5-0x6f6 (1) 0x06f0| fe 40 73 ec 4d 7b 18 eb a1 76| .@s.M{...v| fingerprint: "fe4073ec4d7b18eba176efbec0315f3d" (raw bits) 0x6f6-0x706 (16) 0x0700|ef be c0 31 5f 3d |...1_= | | | | [66]{}: bound 0x706-0x719 (19) -0x0700| 08 | . | timestamp: 2938 (8) (1970-01-01 00:48:58 UTC) 0x706-0x707 (1) +0x0700| 08 | . | timestamp_delta: 7 (8) 0x706-0x707 (1) + | | | timestamp: 2938 (1970-01-01T00:48:58Z) 0x0700| 00 | . | id_prefix_size: 0 0x707-0x708 (1) 0x0700| 01 | . | mode: "fingerprint" (1) 0x708-0x709 (1) 0x0700| 43 11 5d 3e b6 5c f8| C.]>.\.| fingerprint: "43115d3eb65cf8e4cd6ee0cb8e91e9c9" (raw bits) 0x709-0x719 (16) 0x0710|e4 cd 6e e0 cb 8e 91 e9 c9 |..n...... | | | | [67]{}: bound 0x719-0x72c (19) -0x0710| 08 | . | timestamp: 2945 (8) (1970-01-01 00:49:05 UTC) 0x719-0x71a (1) +0x0710| 08 | . | timestamp_delta: 7 (8) 0x719-0x71a (1) + | | | timestamp: 2945 (1970-01-01T00:49:05Z) 0x0710| 00 | . | id_prefix_size: 0 0x71a-0x71b (1) 0x0710| 01 | . | mode: "fingerprint" (1) 0x71b-0x71c (1) 0x0710| aa 64 17 96| .d..| fingerprint: "aa641796d50d854bb2dc36170b644368" (raw bits) 0x71c-0x72c (16) 0x0720|d5 0d 85 4b b2 dc 36 17 0b 64 43 68 |...K..6..dCh | | | | [68]{}: bound 0x72c-0x73f (19) -0x0720| 08 | . | timestamp: 2952 (8) (1970-01-01 00:49:12 UTC) 0x72c-0x72d (1) +0x0720| 08 | . | timestamp_delta: 7 (8) 0x72c-0x72d (1) + | | | timestamp: 2952 (1970-01-01T00:49:12Z) 0x0720| 00 | . | id_prefix_size: 0 0x72d-0x72e (1) 0x0720| 01 | . | mode: "fingerprint" (1) 0x72e-0x72f (1) 0x0720| 8d| .| fingerprint: "8d9d1e412e225581ce2075fd20d965fd" (raw bits) 0x72f-0x73f (16) 0x0730|9d 1e 41 2e 22 55 81 ce 20 75 fd 20 d9 65 fd |..A."U.. u. .e. | | | | [69]{}: bound 0x73f-0x752 (19) -0x0730| 07| .| timestamp: 2958 (7) (1970-01-01 00:49:18 UTC) 0x73f-0x740 (1) +0x0730| 07| .| timestamp_delta: 6 (7) 0x73f-0x740 (1) + | | | timestamp: 2958 (1970-01-01T00:49:18Z) 0x0740|00 |. | id_prefix_size: 0 0x740-0x741 (1) 0x0740| 01 | . | mode: "fingerprint" (1) 0x741-0x742 (1) 0x0740| e7 1b 7d 18 e5 ee 03 bb bb 23 cc 1a 4b 94| ..}......#..K.| fingerprint: "e71b7d18e5ee03bbbb23cc1a4b943251" (raw bits) 0x742-0x752 (16) 0x0750|32 51 |2Q | | | | [70]{}: bound 0x752-0x765 (19) -0x0750| 07 | . | timestamp: 2964 (7) (1970-01-01 00:49:24 UTC) 0x752-0x753 (1) +0x0750| 07 | . | timestamp_delta: 6 (7) 0x752-0x753 (1) + | | | timestamp: 2964 (1970-01-01T00:49:24Z) 0x0750| 00 | . | id_prefix_size: 0 0x753-0x754 (1) 0x0750| 01 | . | mode: "fingerprint" (1) 0x754-0x755 (1) 0x0750| 44 0b 2b 50 12 9a eb 72 94 d2 fd| D.+P...r...| fingerprint: "440b2b50129aeb7294d2fd19c884e7cd" (raw bits) 0x755-0x765 (16) 0x0760|19 c8 84 e7 cd |..... | | | | [71]{}: bound 0x765-0x778 (19) -0x0760| 07 | . | timestamp: 2970 (7) (1970-01-01 00:49:30 UTC) 0x765-0x766 (1) +0x0760| 07 | . | timestamp_delta: 6 (7) 0x765-0x766 (1) + | | | timestamp: 2970 (1970-01-01T00:49:30Z) 0x0760| 00 | . | id_prefix_size: 0 0x766-0x767 (1) 0x0760| 01 | . | mode: "fingerprint" (1) 0x767-0x768 (1) 0x0760| b8 9b 03 c6 da 8a ff bc| ........| fingerprint: "b89b03c6da8affbca1f90541ac77a85d" (raw bits) 0x768-0x778 (16) 0x0770|a1 f9 05 41 ac 77 a8 5d |...A.w.] | | | | [72]{}: bound 0x778-0x78b (19) -0x0770| 07 | . | timestamp: 2976 (7) (1970-01-01 00:49:36 UTC) 0x778-0x779 (1) +0x0770| 07 | . | timestamp_delta: 6 (7) 0x778-0x779 (1) + | | | timestamp: 2976 (1970-01-01T00:49:36Z) 0x0770| 00 | . | id_prefix_size: 0 0x779-0x77a (1) 0x0770| 01 | . | mode: "fingerprint" (1) 0x77a-0x77b (1) 0x0770| e6 4f aa 52 c8| .O.R.| fingerprint: "e64faa52c87f2d7167139de6a66e067c" (raw bits) 0x77b-0x78b (16) 0x0780|7f 2d 71 67 13 9d e6 a6 6e 06 7c |.-qg....n.| | | | | [73]{}: bound 0x78b-0x79e (19) -0x0780| 07 | . | timestamp: 2982 (7) (1970-01-01 00:49:42 UTC) 0x78b-0x78c (1) +0x0780| 07 | . | timestamp_delta: 6 (7) 0x78b-0x78c (1) + | | | timestamp: 2982 (1970-01-01T00:49:42Z) 0x0780| 00 | . | id_prefix_size: 0 0x78c-0x78d (1) 0x0780| 01 | . | mode: "fingerprint" (1) 0x78d-0x78e (1) 0x0780| e6 80| ..| fingerprint: "e68007eaa2035fb01d505f580287e9a1" (raw bits) 0x78e-0x79e (16) 0x0790|07 ea a2 03 5f b0 1d 50 5f 58 02 87 e9 a1 |...._..P_X.... | | | | [74]{}: bound 0x79e-0x7b1 (19) -0x0790| 07 | . | timestamp: 2988 (7) (1970-01-01 00:49:48 UTC) 0x79e-0x79f (1) +0x0790| 07 | . | timestamp_delta: 6 (7) 0x79e-0x79f (1) + | | | timestamp: 2988 (1970-01-01T00:49:48Z) 0x0790| 00| .| id_prefix_size: 0 0x79f-0x7a0 (1) 0x07a0|01 |. | mode: "fingerprint" (1) 0x7a0-0x7a1 (1) 0x07a0| 15 96 1f 8e 6b ba 20 86 c2 98 90 b4 97 63 85| ....k. ......c.| fingerprint: "15961f8e6bba2086c29890b49763859a" (raw bits) 0x7a1-0x7b1 (16) 0x07b0|9a |. | | | | [75]{}: bound 0x7b1-0x7c4 (19) -0x07b0| 07 | . | timestamp: 2994 (7) (1970-01-01 00:49:54 UTC) 0x7b1-0x7b2 (1) +0x07b0| 07 | . | timestamp_delta: 6 (7) 0x7b1-0x7b2 (1) + | | | timestamp: 2994 (1970-01-01T00:49:54Z) 0x07b0| 00 | . | id_prefix_size: 0 0x7b2-0x7b3 (1) 0x07b0| 01 | . | mode: "fingerprint" (1) 0x7b3-0x7b4 (1) 0x07b0| bc 68 dc 5b 90 17 0b 80 34 81 dd cd| .h.[....4...| fingerprint: "bc68dc5b90170b803481ddcda0651634" (raw bits) 0x7b4-0x7c4 (16) 0x07c0|a0 65 16 34 |.e.4 | | | | [76]{}: bound 0x7c4-0x7d7 (19) -0x07c0| 07 | . | timestamp: 3000 (7) (1970-01-01 00:50:00 UTC) 0x7c4-0x7c5 (1) +0x07c0| 07 | . | timestamp_delta: 6 (7) 0x7c4-0x7c5 (1) + | | | timestamp: 3000 (1970-01-01T00:50:00Z) 0x07c0| 00 | . | id_prefix_size: 0 0x7c5-0x7c6 (1) 0x07c0| 01 | . | mode: "fingerprint" (1) 0x7c6-0x7c7 (1) 0x07c0| de 49 c3 e4 25 1e a2 e9 fb| .I..%....| fingerprint: "de49c3e4251ea2e9fb97357d90074b7a" (raw bits) 0x7c7-0x7d7 (16) 0x07d0|97 35 7d 90 07 4b 7a |.5}..Kz | | | | [77]{}: bound 0x7d7-0x7ea (19) -0x07d0| 07 | . | timestamp: 3006 (7) (1970-01-01 00:50:06 UTC) 0x7d7-0x7d8 (1) +0x07d0| 07 | . | timestamp_delta: 6 (7) 0x7d7-0x7d8 (1) + | | | timestamp: 3006 (1970-01-01T00:50:06Z) 0x07d0| 00 | . | id_prefix_size: 0 0x7d8-0x7d9 (1) 0x07d0| 01 | . | mode: "fingerprint" (1) 0x7d9-0x7da (1) 0x07d0| 2a cb 89 81 38 09| *...8.| fingerprint: "2acb8981380911f8a58d5051e5ca299b" (raw bits) 0x7da-0x7ea (16) 0x07e0|11 f8 a5 8d 50 51 e5 ca 29 9b |....PQ..). | | | | [78]{}: bound 0x7ea-0x7fd (19) -0x07e0| 07 | . | timestamp: 3012 (7) (1970-01-01 00:50:12 UTC) 0x7ea-0x7eb (1) +0x07e0| 07 | . | timestamp_delta: 6 (7) 0x7ea-0x7eb (1) + | | | timestamp: 3012 (1970-01-01T00:50:12Z) 0x07e0| 00 | . | id_prefix_size: 0 0x7eb-0x7ec (1) 0x07e0| 01 | . | mode: "fingerprint" (1) 0x7ec-0x7ed (1) 0x07e0| 64 e8 d4| d..| fingerprint: "64e8d4d0c2e8312d007832fa6fa9b5fa" (raw bits) 0x7ed-0x7fd (16) 0x07f0|d0 c2 e8 31 2d 00 78 32 fa 6f a9 b5 fa |...1-.x2.o... | | | | [79]{}: bound 0x7fd-0x801 (4) -0x07f0| 82 7d | .} | timestamp: 3392 (381) (1970-01-01 00:56:32 UTC) 0x7fd-0x7ff (2) +0x07f0| 82 7d | .} | timestamp_delta: 380 (381) 0x7fd-0x7ff (2) + | | | timestamp: 3392 (1970-01-01T00:56:32Z) 0x07f0| 00| .| id_prefix_size: 0 0x7ff-0x800 (1) 0x0800|00 |. | mode: "skip" (0) 0x800-0x801 (1) | | | [80]{}: bound 0x801-0x905 (260) -0x0800| 1b | . | timestamp: 3418 (27) (1970-01-01 00:56:58 UTC) 0x801-0x802 (1) +0x0800| 1b | . | timestamp_delta: 26 (27) 0x801-0x802 (1) + | | | timestamp: 3418 (1970-01-01T00:56:58Z) 0x0800| 00 | . | id_prefix_size: 0 0x802-0x803 (1) 0x0800| 02 | . | mode: "idlist" (2) 0x803-0x804 (1) | | | idlist{}: 0x804-0x905 (257) @@ -589,343 +670,397 @@ $ fq -d negentropy dv bigmessagewitheverything 0x08f0|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| 0x0900|00 00 00 33 99 |...3. | | | | [81]{}: bound 0x905-0x909 (4) -0x0900| 1b | . | timestamp: 3444 (27) (1970-01-01 00:57:24 UTC) 0x905-0x906 (1) +0x0900| 1b | . | timestamp_delta: 26 (27) 0x905-0x906 (1) + | | | timestamp: 3444 (1970-01-01T00:57:24Z) 0x0900| 00 | . | id_prefix_size: 0 0x906-0x907 (1) 0x0900| 02 | . | mode: "idlist" (2) 0x907-0x908 (1) | | | idlist{}: 0x908-0x909 (1) 0x0900| 00 | . | num: 0 0x908-0x909 (1) | | | ids[0:0]: 0x909-0x909 (0) | | | [82]{}: bound 0x909-0x90d (4) -0x0900| 1b | . | timestamp: 3470 (27) (1970-01-01 00:57:50 UTC) 0x909-0x90a (1) +0x0900| 1b | . | timestamp_delta: 26 (27) 0x909-0x90a (1) + | | | timestamp: 3470 (1970-01-01T00:57:50Z) 0x0900| 00 | . | id_prefix_size: 0 0x90a-0x90b (1) 0x0900| 02 | . | mode: "idlist" (2) 0x90b-0x90c (1) | | | idlist{}: 0x90c-0x90d (1) 0x0900| 00 | . | num: 0 0x90c-0x90d (1) | | | ids[0:0]: 0x90d-0x90d (0) | | | [83]{}: bound 0x90d-0x911 (4) -0x0900| 1b | . | timestamp: 3496 (27) (1970-01-01 00:58:16 UTC) 0x90d-0x90e (1) +0x0900| 1b | . | timestamp_delta: 26 (27) 0x90d-0x90e (1) + | | | timestamp: 3496 (1970-01-01T00:58:16Z) 0x0900| 00 | . | id_prefix_size: 0 0x90e-0x90f (1) 0x0900| 02| .| mode: "idlist" (2) 0x90f-0x910 (1) | | | idlist{}: 0x910-0x911 (1) 0x0910|00 |. | num: 0 0x910-0x911 (1) | | | ids[0:0]: 0x911-0x911 (0) | | | [84]{}: bound 0x911-0x915 (4) -0x0910| 1b | . | timestamp: 3522 (27) (1970-01-01 00:58:42 UTC) 0x911-0x912 (1) +0x0910| 1b | . | timestamp_delta: 26 (27) 0x911-0x912 (1) + | | | timestamp: 3522 (1970-01-01T00:58:42Z) 0x0910| 00 | . | id_prefix_size: 0 0x912-0x913 (1) 0x0910| 02 | . | mode: "idlist" (2) 0x913-0x914 (1) | | | idlist{}: 0x914-0x915 (1) 0x0910| 00 | . | num: 0 0x914-0x915 (1) | | | ids[0:0]: 0x915-0x915 (0) | | | [85]{}: bound 0x915-0x919 (4) -0x0910| 1b | . | timestamp: 3548 (27) (1970-01-01 00:59:08 UTC) 0x915-0x916 (1) +0x0910| 1b | . | timestamp_delta: 26 (27) 0x915-0x916 (1) + | | | timestamp: 3548 (1970-01-01T00:59:08Z) 0x0910| 00 | . | id_prefix_size: 0 0x916-0x917 (1) 0x0910| 02 | . | mode: "idlist" (2) 0x917-0x918 (1) | | | idlist{}: 0x918-0x919 (1) 0x0910| 00 | . | num: 0 0x918-0x919 (1) | | | ids[0:0]: 0x919-0x919 (0) | | | [86]{}: bound 0x919-0x91d (4) -0x0910| 1b | . | timestamp: 3574 (27) (1970-01-01 00:59:34 UTC) 0x919-0x91a (1) +0x0910| 1b | . | timestamp_delta: 26 (27) 0x919-0x91a (1) + | | | timestamp: 3574 (1970-01-01T00:59:34Z) 0x0910| 00 | . | id_prefix_size: 0 0x91a-0x91b (1) 0x0910| 02 | . | mode: "idlist" (2) 0x91b-0x91c (1) | | | idlist{}: 0x91c-0x91d (1) 0x0910| 00 | . | num: 0 0x91c-0x91d (1) | | | ids[0:0]: 0x91d-0x91d (0) | | | [87]{}: bound 0x91d-0x931 (20) -0x0910| 9a 66 | .f | timestamp: 7003 (3430) (1970-01-01 01:56:43 UTC) 0x91d-0x91f (2) +0x0910| 9a 66 | .f | timestamp_delta: 3429 (3430) 0x91d-0x91f (2) + | | | timestamp: 7003 (1970-01-01T01:56:43Z) 0x0910| 00| .| id_prefix_size: 0 0x91f-0x920 (1) 0x0920|01 |. | mode: "fingerprint" (1) 0x920-0x921 (1) 0x0920| b6 31 63 d6 ab b8 79 9d d9 9d 61 3d f4 5b bb| .1c...y...a=.[.| fingerprint: "b63163d6abb8799dd99d613df45bbb92" (raw bits) 0x921-0x931 (16) 0x0930|92 |. | | | | [88]{}: bound 0x931-0x944 (19) -0x0930| 04 | . | timestamp: 7006 (4) (1970-01-01 01:56:46 UTC) 0x931-0x932 (1) +0x0930| 04 | . | timestamp_delta: 3 (4) 0x931-0x932 (1) + | | | timestamp: 7006 (1970-01-01T01:56:46Z) 0x0930| 00 | . | id_prefix_size: 0 0x932-0x933 (1) 0x0930| 01 | . | mode: "fingerprint" (1) 0x933-0x934 (1) 0x0930| d1 30 76 e1 57 40 30 68 6e 62 f5 e8| .0v.W@0hnb..| fingerprint: "d13076e1574030686e62f5e8e3f5c022" (raw bits) 0x934-0x944 (16) 0x0940|e3 f5 c0 22 |..." | | | | [89]{}: bound 0x944-0x957 (19) -0x0940| 04 | . | timestamp: 7009 (4) (1970-01-01 01:56:49 UTC) 0x944-0x945 (1) +0x0940| 04 | . | timestamp_delta: 3 (4) 0x944-0x945 (1) + | | | timestamp: 7009 (1970-01-01T01:56:49Z) 0x0940| 00 | . | id_prefix_size: 0 0x945-0x946 (1) 0x0940| 01 | . | mode: "fingerprint" (1) 0x946-0x947 (1) 0x0940| 2d 79 5b bf 59 32 30 fb cc| -y[.Y20..| fingerprint: "2d795bbf593230fbccd2b996cc212a29" (raw bits) 0x947-0x957 (16) 0x0950|d2 b9 96 cc 21 2a 29 |....!*) | | | | [90]{}: bound 0x957-0x96a (19) -0x0950| 04 | . | timestamp: 7012 (4) (1970-01-01 01:56:52 UTC) 0x957-0x958 (1) +0x0950| 04 | . | timestamp_delta: 3 (4) 0x957-0x958 (1) + | | | timestamp: 7012 (1970-01-01T01:56:52Z) 0x0950| 00 | . | id_prefix_size: 0 0x958-0x959 (1) 0x0950| 01 | . | mode: "fingerprint" (1) 0x959-0x95a (1) 0x0950| e1 dd 67 1b 24 ce| ..g.$.| fingerprint: "e1dd671b24ce46e438893589c8a9bd02" (raw bits) 0x95a-0x96a (16) 0x0960|46 e4 38 89 35 89 c8 a9 bd 02 |F.8.5..... | | | | [91]{}: bound 0x96a-0x97d (19) -0x0960| 04 | . | timestamp: 7015 (4) (1970-01-01 01:56:55 UTC) 0x96a-0x96b (1) +0x0960| 04 | . | timestamp_delta: 3 (4) 0x96a-0x96b (1) + | | | timestamp: 7015 (1970-01-01T01:56:55Z) 0x0960| 00 | . | id_prefix_size: 0 0x96b-0x96c (1) 0x0960| 01 | . | mode: "fingerprint" (1) 0x96c-0x96d (1) 0x0960| 81 5f 4c| ._L| fingerprint: "815f4c037984dbc47915d53f2879f494" (raw bits) 0x96d-0x97d (16) 0x0970|03 79 84 db c4 79 15 d5 3f 28 79 f4 94 |.y...y..?(y.. | | | | [92]{}: bound 0x97d-0x990 (19) -0x0970| 04 | . | timestamp: 7018 (4) (1970-01-01 01:56:58 UTC) 0x97d-0x97e (1) +0x0970| 04 | . | timestamp_delta: 3 (4) 0x97d-0x97e (1) + | | | timestamp: 7018 (1970-01-01T01:56:58Z) 0x0970| 00 | . | id_prefix_size: 0 0x97e-0x97f (1) 0x0970| 01| .| mode: "fingerprint" (1) 0x97f-0x980 (1) 0x0980|61 9a 1d 2f bb 6d 3a a8 de b4 7b ce 40 3c 68 0d|a../.m:...{.@g\: | | | | [97]{}: bound 0x9dc-0x9ef (19) -0x09d0| 04 | . | timestamp: 7033 (4) (1970-01-01 01:57:13 UTC) 0x9dc-0x9dd (1) +0x09d0| 04 | . | timestamp_delta: 3 (4) 0x9dc-0x9dd (1) + | | | timestamp: 7033 (1970-01-01T01:57:13Z) 0x09d0| 00 | . | id_prefix_size: 0 0x9dd-0x9de (1) 0x09d0| 01 | . | mode: "fingerprint" (1) 0x9de-0x9df (1) 0x09d0| 84| .| fingerprint: "84b401a7c0ccd20e0a4a2fef0f8c37a3" (raw bits) 0x9df-0x9ef (16) 0x09e0|b4 01 a7 c0 cc d2 0e 0a 4a 2f ef 0f 8c 37 a3 |........J/...7. | | | | [98]{}: bound 0x9ef-0xa02 (19) -0x09e0| 04| .| timestamp: 7036 (4) (1970-01-01 01:57:16 UTC) 0x9ef-0x9f0 (1) +0x09e0| 04| .| timestamp_delta: 3 (4) 0x9ef-0x9f0 (1) + | | | timestamp: 7036 (1970-01-01T01:57:16Z) 0x09f0|00 |. | id_prefix_size: 0 0x9f0-0x9f1 (1) 0x09f0| 01 | . | mode: "fingerprint" (1) 0x9f1-0x9f2 (1) 0x09f0| 9f 06 34 55 e5 ea 2e fe e8 c1 be 23 1a d9| ..4U.......#..| fingerprint: "9f063455e5ea2efee8c1be231ad9f123" (raw bits) 0x9f2-0xa02 (16) 0x0a00|f1 23 |.# | | | | [99]{}: bound 0xa02-0xa15 (19) -0x0a00| 04 | . | timestamp: 7039 (4) (1970-01-01 01:57:19 UTC) 0xa02-0xa03 (1) +0x0a00| 04 | . | timestamp_delta: 3 (4) 0xa02-0xa03 (1) + | | | timestamp: 7039 (1970-01-01T01:57:19Z) 0x0a00| 00 | . | id_prefix_size: 0 0xa03-0xa04 (1) 0x0a00| 01 | . | mode: "fingerprint" (1) 0xa04-0xa05 (1) 0x0a00| e9 00 b1 6c b4 d1 fa 4b 97 50 dd| ...l...K.P.| fingerprint: "e900b16cb4d1fa4b9750ddb9e41f45d3" (raw bits) 0xa05-0xa15 (16) 0x0a10|b9 e4 1f 45 d3 |...E. | | | | [100]{}: bound 0xa15-0xa28 (19) -0x0a10| 04 | . | timestamp: 7042 (4) (1970-01-01 01:57:22 UTC) 0xa15-0xa16 (1) +0x0a10| 04 | . | timestamp_delta: 3 (4) 0xa15-0xa16 (1) + | | | timestamp: 7042 (1970-01-01T01:57:22Z) 0x0a10| 00 | . | id_prefix_size: 0 0xa16-0xa17 (1) 0x0a10| 01 | . | mode: "fingerprint" (1) 0xa17-0xa18 (1) 0x0a10| 45 30 3f 44 99 cd 7f 73| E0?D...s| fingerprint: "45303f4499cd7f73b719df6084efb1d5" (raw bits) 0xa18-0xa28 (16) 0x0a20|b7 19 df 60 84 ef b1 d5 |...`.... | | | | [101]{}: bound 0xa28-0xa3b (19) -0x0a20| 03 | . | timestamp: 7044 (3) (1970-01-01 01:57:24 UTC) 0xa28-0xa29 (1) +0x0a20| 03 | . | timestamp_delta: 2 (3) 0xa28-0xa29 (1) + | | | timestamp: 7044 (1970-01-01T01:57:24Z) 0x0a20| 00 | . | id_prefix_size: 0 0xa29-0xa2a (1) 0x0a20| 01 | . | mode: "fingerprint" (1) 0xa2a-0xa2b (1) 0x0a20| 7b 82 a5 c5 21| {...!| fingerprint: "7b82a5c5210fb1186ad426fb489ff18d" (raw bits) 0xa2b-0xa3b (16) 0x0a30|0f b1 18 6a d4 26 fb 48 9f f1 8d |...j.&.H... | | | | [102]{}: bound 0xa3b-0xa4e (19) -0x0a30| 03 | . | timestamp: 7046 (3) (1970-01-01 01:57:26 UTC) 0xa3b-0xa3c (1) +0x0a30| 03 | . | timestamp_delta: 2 (3) 0xa3b-0xa3c (1) + | | | timestamp: 7046 (1970-01-01T01:57:26Z) 0x0a30| 00 | . | id_prefix_size: 0 0xa3c-0xa3d (1) 0x0a30| 01 | . | mode: "fingerprint" (1) 0xa3d-0xa3e (1) 0x0a30| 5b a6| [.| fingerprint: "5ba61cfc1e741ddbd49d4f4ff67b307f" (raw bits) 0xa3e-0xa4e (16) 0x0a40|1c fc 1e 74 1d db d4 9d 4f 4f f6 7b 30 7f |...t....OO.{0. | | | | [103]{}: bound 0xa4e-0xa52 (4) -0x0a40| 86 22| ."| timestamp: 7847 (802) (1970-01-01 02:10:47 UTC) 0xa4e-0xa50 (2) +0x0a40| 86 22| ."| timestamp_delta: 801 (802) 0xa4e-0xa50 (2) + | | | timestamp: 7847 (1970-01-01T02:10:47Z) 0x0a50|00 |. | id_prefix_size: 0 0xa50-0xa51 (1) 0x0a50| 00 | . | mode: "skip" (0) 0xa51-0xa52 (1) | | | [104]{}: bound 0xa52-0xa65 (19) -0x0a50| 11 | . | timestamp: 7863 (17) (1970-01-01 02:11:03 UTC) 0xa52-0xa53 (1) +0x0a50| 11 | . | timestamp_delta: 16 (17) 0xa52-0xa53 (1) + | | | timestamp: 7863 (1970-01-01T02:11:03Z) 0x0a50| 00 | . | id_prefix_size: 0 0xa53-0xa54 (1) 0x0a50| 01 | . | mode: "fingerprint" (1) 0xa54-0xa55 (1) 0x0a50| fb b8 f6 fa 42 b1 f2 68 34 0d bb| ....B..h4..| fingerprint: "fbb8f6fa42b1f268340dbbf2c7f09041" (raw bits) 0xa55-0xa65 (16) 0x0a60|f2 c7 f0 90 41 |....A | | | | [105]{}: bound 0xa65-0xa78 (19) -0x0a60| 11 | . | timestamp: 7879 (17) (1970-01-01 02:11:19 UTC) 0xa65-0xa66 (1) +0x0a60| 11 | . | timestamp_delta: 16 (17) 0xa65-0xa66 (1) + | | | timestamp: 7879 (1970-01-01T02:11:19Z) 0x0a60| 00 | . | id_prefix_size: 0 0xa66-0xa67 (1) 0x0a60| 01 | . | mode: "fingerprint" (1) 0xa67-0xa68 (1) 0x0a60| 4d b0 6a 05 e6 ca 6d f3| M.j...m.| fingerprint: "4db06a05e6ca6df33f485c5b93589a0d" (raw bits) 0xa68-0xa78 (16) 0x0a70|3f 48 5c 5b 93 58 9a 0d |?H\[.X.. | | | | [106]{}: bound 0xa78-0xa8b (19) -0x0a70| 11 | . | timestamp: 7895 (17) (1970-01-01 02:11:35 UTC) 0xa78-0xa79 (1) +0x0a70| 11 | . | timestamp_delta: 16 (17) 0xa78-0xa79 (1) + | | | timestamp: 7895 (1970-01-01T02:11:35Z) 0x0a70| 00 | . | id_prefix_size: 0 0xa79-0xa7a (1) 0x0a70| 01 | . | mode: "fingerprint" (1) 0xa7a-0xa7b (1) 0x0a70| 79 4f 02 89 f0| yO...| fingerprint: "794f0289f0416f4e787ec335e9dfde3f" (raw bits) 0xa7b-0xa8b (16) 0x0a80|41 6f 4e 78 7e c3 35 e9 df de 3f |AoNx~.5...? | | | | [107]{}: bound 0xa8b-0xa9e (19) -0x0a80| 11 | . | timestamp: 7911 (17) (1970-01-01 02:11:51 UTC) 0xa8b-0xa8c (1) +0x0a80| 11 | . | timestamp_delta: 16 (17) 0xa8b-0xa8c (1) + | | | timestamp: 7911 (1970-01-01T02:11:51Z) 0x0a80| 00 | . | id_prefix_size: 0 0xa8c-0xa8d (1) 0x0a80| 01 | . | mode: "fingerprint" (1) 0xa8d-0xa8e (1) 0x0a80| 90 ec| ..| fingerprint: "90ec216d90ef07d10c73e437f8374654" (raw bits) 0xa8e-0xa9e (16) 0x0a90|21 6d 90 ef 07 d1 0c 73 e4 37 f8 37 46 54 |!m.....s.7.7FT | | | | [108]{}: bound 0xa9e-0xab1 (19) -0x0a90| 11 | . | timestamp: 7927 (17) (1970-01-01 02:12:07 UTC) 0xa9e-0xa9f (1) +0x0a90| 11 | . | timestamp_delta: 16 (17) 0xa9e-0xa9f (1) + | | | timestamp: 7927 (1970-01-01T02:12:07Z) 0x0a90| 00| .| id_prefix_size: 0 0xa9f-0xaa0 (1) 0x0aa0|01 |. | mode: "fingerprint" (1) 0xaa0-0xaa1 (1) 0x0aa0| d2 b8 e0 6f 20 17 6e 21 de 8a 3b 58 cd ce 40| ...o .n!..;X..@| fingerprint: "d2b8e06f20176e21de8a3b58cdce4099" (raw bits) 0xaa1-0xab1 (16) 0x0ab0|99 |. | | | | [109]{}: bound 0xab1-0xac4 (19) -0x0ab0| 11 | . | timestamp: 7943 (17) (1970-01-01 02:12:23 UTC) 0xab1-0xab2 (1) +0x0ab0| 11 | . | timestamp_delta: 16 (17) 0xab1-0xab2 (1) + | | | timestamp: 7943 (1970-01-01T02:12:23Z) 0x0ab0| 00 | . | id_prefix_size: 0 0xab2-0xab3 (1) 0x0ab0| 01 | . | mode: "fingerprint" (1) 0xab3-0xab4 (1) 0x0ab0| 3e 70 e1 d0 8b ed 7d 62 06 db e5 b9| >p....}b....| fingerprint: "3e70e1d08bed7d6206dbe5b9fe7e62ff" (raw bits) 0xab4-0xac4 (16) 0x0ac0|fe 7e 62 ff |.~b. | | | | [110]{}: bound 0xac4-0xad7 (19) -0x0ac0| 11 | . | timestamp: 7959 (17) (1970-01-01 02:12:39 UTC) 0xac4-0xac5 (1) +0x0ac0| 11 | . | timestamp_delta: 16 (17) 0xac4-0xac5 (1) + | | | timestamp: 7959 (1970-01-01T02:12:39Z) 0x0ac0| 00 | . | id_prefix_size: 0 0xac5-0xac6 (1) 0x0ac0| 01 | . | mode: "fingerprint" (1) 0xac6-0xac7 (1) 0x0ac0| 58 2c 74 c6 24 0a f9 e9 ff| X,t.$....| fingerprint: "582c74c6240af9e9ff4626a42c7b2a05" (raw bits) 0xac7-0xad7 (16) 0x0ad0|46 26 a4 2c 7b 2a 05 |F&.,{*. | | | | [111]{}: bound 0xad7-0xaea (19) -0x0ad0| 11 | . | timestamp: 7975 (17) (1970-01-01 02:12:55 UTC) 0xad7-0xad8 (1) +0x0ad0| 11 | . | timestamp_delta: 16 (17) 0xad7-0xad8 (1) + | | | timestamp: 7975 (1970-01-01T02:12:55Z) 0x0ad0| 00 | . | id_prefix_size: 0 0xad8-0xad9 (1) 0x0ad0| 01 | . | mode: "fingerprint" (1) 0xad9-0xada (1) 0x0ad0| 3c 21 a7 e0 02 82| | fingerprint: "8758c5cc2bc56d535fd0ab4e3e7c844a" (raw bits) 0xb73-0xb83 (16) 0x0b80|7c 84 4a ||.J | | | | [120]{}: bound 0xb83-0xb88 (5) -0x0b80| 81 0b | .. | timestamp: 10276 (139) (1970-01-01 02:51:16 UTC) 0xb83-0xb85 (2) +0x0b80| 81 0b | .. | timestamp_delta: 138 (139) 0xb83-0xb85 (2) + | | | timestamp: 10276 (1970-01-01T02:51:16Z) 0x0b80| 00 | . | id_prefix_size: 0 0xb85-0xb86 (1) 0x0b80| 02 | . | mode: "idlist" (2) 0xb86-0xb87 (1) | | | idlist{}: 0xb87-0xb88 (1) 0x0b80| 00 | . | num: 0 0xb87-0xb88 (1) | | | ids[0:0]: 0xb88-0xb88 (0) | | | [121]{}: bound 0xb88-0xb8d (5) -0x0b80| 81 0b | .. | timestamp: 10414 (139) (1970-01-01 02:53:34 UTC) 0xb88-0xb8a (2) +0x0b80| 81 0b | .. | timestamp_delta: 138 (139) 0xb88-0xb8a (2) + | | | timestamp: 10414 (1970-01-01T02:53:34Z) 0x0b80| 00 | . | id_prefix_size: 0 0xb8a-0xb8b (1) 0x0b80| 02 | . | mode: "idlist" (2) 0xb8b-0xb8c (1) | | | idlist{}: 0xb8c-0xb8d (1) 0x0b80| 00 | . | num: 0 0xb8c-0xb8d (1) | | | ids[0:0]: 0xb8d-0xb8d (0) | | | [122]{}: bound 0xb8d-0xb92 (5) -0x0b80| 81 0b | .. | timestamp: 10552 (139) (1970-01-01 02:55:52 UTC) 0xb8d-0xb8f (2) +0x0b80| 81 0b | .. | timestamp_delta: 138 (139) 0xb8d-0xb8f (2) + | | | timestamp: 10552 (1970-01-01T02:55:52Z) 0x0b80| 00| .| id_prefix_size: 0 0xb8f-0xb90 (1) 0x0b90|02 |. | mode: "idlist" (2) 0xb90-0xb91 (1) | | | idlist{}: 0xb91-0xb92 (1) 0x0b90| 00 | . | num: 0 0xb91-0xb92 (1) | | | ids[0:0]: 0xb92-0xb92 (0) | | | [123]{}: bound 0xb92-0xb97 (5) -0x0b90| 81 0b | .. | timestamp: 10690 (139) (1970-01-01 02:58:10 UTC) 0xb92-0xb94 (2) +0x0b90| 81 0b | .. | timestamp_delta: 138 (139) 0xb92-0xb94 (2) + | | | timestamp: 10690 (1970-01-01T02:58:10Z) 0x0b90| 00 | . | id_prefix_size: 0 0xb94-0xb95 (1) 0x0b90| 02 | . | mode: "idlist" (2) 0xb95-0xb96 (1) | | | idlist{}: 0xb96-0xb97 (1) 0x0b90| 00 | . | num: 0 0xb96-0xb97 (1) | | | ids[0:0]: 0xb97-0xb97 (0) | | | [124]{}: bound 0xb97-0xb9c (5) -0x0b90| 81 0b | .. | timestamp: 10828 (139) (1970-01-01 03:00:28 UTC) 0xb97-0xb99 (2) +0x0b90| 81 0b | .. | timestamp_delta: 138 (139) 0xb97-0xb99 (2) + | | | timestamp: 10828 (1970-01-01T03:00:28Z) 0x0b90| 00 | . | id_prefix_size: 0 0xb99-0xb9a (1) 0x0b90| 02 | . | mode: "idlist" (2) 0xb9a-0xb9b (1) | | | idlist{}: 0xb9b-0xb9c (1) 0x0b90| 00 | . | num: 0 0xb9b-0xb9c (1) | | | ids[0:0]: 0xb9c-0xb9c (0) | | | [125]{}: bound 0xb9c-0xba1 (5) -0x0b90| 81 0b | .. | timestamp: 10966 (139) (1970-01-01 03:02:46 UTC) 0xb9c-0xb9e (2) +0x0b90| 81 0b | .. | timestamp_delta: 138 (139) 0xb9c-0xb9e (2) + | | | timestamp: 10966 (1970-01-01T03:02:46Z) 0x0b90| 00 | . | id_prefix_size: 0 0xb9e-0xb9f (1) 0x0b90| 02| .| mode: "idlist" (2) 0xb9f-0xba0 (1) | | | idlist{}: 0xba0-0xba1 (1) 0x0ba0|00 |. | num: 0 0xba0-0xba1 (1) | | | ids[0:0]: 0xba1-0xba1 (0) | | | [126]{}: bound 0xba1-0xba6 (5) -0x0ba0| 81 0b | .. | timestamp: 11104 (139) (1970-01-01 03:05:04 UTC) 0xba1-0xba3 (2) +0x0ba0| 81 0b | .. | timestamp_delta: 138 (139) 0xba1-0xba3 (2) + | | | timestamp: 11104 (1970-01-01T03:05:04Z) 0x0ba0| 00 | . | id_prefix_size: 0 0xba3-0xba4 (1) 0x0ba0| 02 | . | mode: "idlist" (2) 0xba4-0xba5 (1) | | | idlist{}: 0xba5-0xba6 (1) 0x0ba0| 00 | . | num: 0 0xba5-0xba6 (1) | | | ids[0:0]: 0xba6-0xba6 (0) | | | [127]{}: bound 0xba6-0xbab (5) -0x0ba0| 81 0b | .. | timestamp: 11242 (139) (1970-01-01 03:07:22 UTC) 0xba6-0xba8 (2) +0x0ba0| 81 0b | .. | timestamp_delta: 138 (139) 0xba6-0xba8 (2) + | | | timestamp: 11242 (1970-01-01T03:07:22Z) 0x0ba0| 00 | . | id_prefix_size: 0 0xba8-0xba9 (1) 0x0ba0| 02 | . | mode: "idlist" (2) 0xba9-0xbaa (1) | | | idlist{}: 0xbaa-0xbab (1) 0x0ba0| 00 | . | num: 0 0xbaa-0xbab (1) | | | ids[0:0]: 0xbab-0xbab (0) | | | [128]{}: bound 0xbab-0xbb0 (5) -0x0ba0| 81 0b | .. | timestamp: 11380 (139) (1970-01-01 03:09:40 UTC) 0xbab-0xbad (2) +0x0ba0| 81 0b | .. | timestamp_delta: 138 (139) 0xbab-0xbad (2) + | | | timestamp: 11380 (1970-01-01T03:09:40Z) 0x0ba0| 00 | . | id_prefix_size: 0 0xbad-0xbae (1) 0x0ba0| 02 | . | mode: "idlist" (2) 0xbae-0xbaf (1) | | | idlist{}: 0xbaf-0xbb0 (1) 0x0ba0| 00| .| num: 0 0xbaf-0xbb0 (1) | | | ids[0:0]: 0xbb0-0xbb0 (0) | | | [129]{}: bound 0xbb0-0xbb5 (5) -0x0bb0|81 0a |.. | timestamp: 11517 (138) (1970-01-01 03:11:57 UTC) 0xbb0-0xbb2 (2) +0x0bb0|81 0a |.. | timestamp_delta: 137 (138) 0xbb0-0xbb2 (2) + | | | timestamp: 11517 (1970-01-01T03:11:57Z) 0x0bb0| 00 | . | id_prefix_size: 0 0xbb2-0xbb3 (1) 0x0bb0| 02 | . | mode: "idlist" (2) 0xbb3-0xbb4 (1) | | | idlist{}: 0xbb4-0xbb5 (1) 0x0bb0| 00 | . | num: 0 0xbb4-0xbb5 (1) | | | ids[0:0]: 0xbb5-0xbb5 (0) | | | [130]{}: bound 0xbb5-0xbba (5) -0x0bb0| 81 0a | .. | timestamp: 11654 (138) (1970-01-01 03:14:14 UTC) 0xbb5-0xbb7 (2) +0x0bb0| 81 0a | .. | timestamp_delta: 137 (138) 0xbb5-0xbb7 (2) + | | | timestamp: 11654 (1970-01-01T03:14:14Z) 0x0bb0| 00 | . | id_prefix_size: 0 0xbb7-0xbb8 (1) 0x0bb0| 02 | . | mode: "idlist" (2) 0xbb8-0xbb9 (1) | | | idlist{}: 0xbb9-0xbba (1) 0x0bb0| 00 | . | num: 0 0xbb9-0xbba (1) | | | ids[0:0]: 0xbba-0xbba (0) | | | [131]{}: bound 0xbba-0xbbf (5) -0x0bb0| 81 0a | .. | timestamp: 11791 (138) (1970-01-01 03:16:31 UTC) 0xbba-0xbbc (2) +0x0bb0| 81 0a | .. | timestamp_delta: 137 (138) 0xbba-0xbbc (2) + | | | timestamp: 11791 (1970-01-01T03:16:31Z) 0x0bb0| 00 | . | id_prefix_size: 0 0xbbc-0xbbd (1) 0x0bb0| 02 | . | mode: "idlist" (2) 0xbbd-0xbbe (1) | | | idlist{}: 0xbbe-0xbbf (1) 0x0bb0| 00 | . | num: 0 0xbbe-0xbbf (1) | | | ids[0:0]: 0xbbf-0xbbf (0) | | | [132]{}: bound 0xbbf-0xbc4 (5) -0x0bb0| 81| .| timestamp: 11928 (138) (1970-01-01 03:18:48 UTC) 0xbbf-0xbc1 (2) +0x0bb0| 81| .| timestamp_delta: 137 (138) 0xbbf-0xbc1 (2) 0x0bc0|0a |. | + | | | timestamp: 11928 (1970-01-01T03:18:48Z) 0x0bc0| 00 | . | id_prefix_size: 0 0xbc1-0xbc2 (1) 0x0bc0| 02 | . | mode: "idlist" (2) 0xbc2-0xbc3 (1) | | | idlist{}: 0xbc3-0xbc4 (1) 0x0bc0| 00 | . | num: 0 0xbc3-0xbc4 (1) | | | ids[0:0]: 0xbc4-0xbc4 (0) | | | [133]{}: bound 0xbc4-0xbc9 (5) -0x0bc0| 81 0a | .. | timestamp: 12065 (138) (1970-01-01 03:21:05 UTC) 0xbc4-0xbc6 (2) +0x0bc0| 81 0a | .. | timestamp_delta: 137 (138) 0xbc4-0xbc6 (2) + | | | timestamp: 12065 (1970-01-01T03:21:05Z) 0x0bc0| 00 | . | id_prefix_size: 0 0xbc6-0xbc7 (1) 0x0bc0| 02 | . | mode: "idlist" (2) 0xbc7-0xbc8 (1) | | | idlist{}: 0xbc8-0xbc9 (1) 0x0bc0| 00 | . | num: 0 0xbc8-0xbc9 (1) | | | ids[0:0]: 0xbc9-0xbc9 (0) | | | [134]{}: bound 0xbc9-0xd8e (453) -0x0bc0| 8d 56 | .V | timestamp: 13814 (1750) (1970-01-01 03:50:14 UTC) 0xbc9-0xbcb (2) +0x0bc0| 8d 56 | .V | timestamp_delta: 1749 (1750) 0xbc9-0xbcb (2) + | | | timestamp: 13814 (1970-01-01T03:50:14Z) 0x0bc0| 00 | . | id_prefix_size: 0 0xbcb-0xbcc (1) 0x0bc0| 02 | . | mode: "idlist" (2) 0xbcc-0xbcd (1) | | | idlist{}: 0xbcd-0xd8e (449) @@ -974,393 +1109,457 @@ $ fq -d negentropy dv bigmessagewitheverything 0x0d70|00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00|................| 0x0d80|00 00 00 00 00 00 00 00 00 00 00 01 38 13 |............8. | | | | [135]{}: bound 0xd8e-0xd92 (4) -0x0d80| 86 23| .#| timestamp: 14616 (803) (1970-01-01 04:03:36 UTC) 0xd8e-0xd90 (2) +0x0d80| 86 23| .#| timestamp_delta: 802 (803) 0xd8e-0xd90 (2) + | | | timestamp: 14616 (1970-01-01T04:03:36Z) 0x0d90|00 |. | id_prefix_size: 0 0xd90-0xd91 (1) 0x0d90| 00 | . | mode: "skip" (0) 0xd91-0xd92 (1) | | | [136]{}: bound 0xd92-0xda5 (19) -0x0d90| 0d | . | timestamp: 14628 (13) (1970-01-01 04:03:48 UTC) 0xd92-0xd93 (1) +0x0d90| 0d | . | timestamp_delta: 12 (13) 0xd92-0xd93 (1) + | | | timestamp: 14628 (1970-01-01T04:03:48Z) 0x0d90| 00 | . | id_prefix_size: 0 0xd93-0xd94 (1) 0x0d90| 01 | . | mode: "fingerprint" (1) 0xd94-0xd95 (1) 0x0d90| 41 ab cc e3 60 bb f4 6a 99 83 9f| A...`..j...| fingerprint: "41abcce360bbf46a99839fcf848dc61e" (raw bits) 0xd95-0xda5 (16) 0x0da0|cf 84 8d c6 1e |..... | | | | [137]{}: bound 0xda5-0xdb8 (19) -0x0da0| 0d | . | timestamp: 14640 (13) (1970-01-01 04:04:00 UTC) 0xda5-0xda6 (1) +0x0da0| 0d | . | timestamp_delta: 12 (13) 0xda5-0xda6 (1) + | | | timestamp: 14640 (1970-01-01T04:04:00Z) 0x0da0| 00 | . | id_prefix_size: 0 0xda6-0xda7 (1) 0x0da0| 01 | . | mode: "fingerprint" (1) 0xda7-0xda8 (1) 0x0da0| 06 23 d9 e9 b2 15 07 e7| .#......| fingerprint: "0623d9e9b21507e7a846827fcc42c146" (raw bits) 0xda8-0xdb8 (16) 0x0db0|a8 46 82 7f cc 42 c1 46 |.F...B.F | | | | [138]{}: bound 0xdb8-0xdcb (19) -0x0db0| 0d | . | timestamp: 14652 (13) (1970-01-01 04:04:12 UTC) 0xdb8-0xdb9 (1) +0x0db0| 0d | . | timestamp_delta: 12 (13) 0xdb8-0xdb9 (1) + | | | timestamp: 14652 (1970-01-01T04:04:12Z) 0x0db0| 00 | . | id_prefix_size: 0 0xdb9-0xdba (1) 0x0db0| 01 | . | mode: "fingerprint" (1) 0xdba-0xdbb (1) 0x0db0| 89 c0 67 6f 62| ..gob| fingerprint: "89c0676f62f517b301988b8b34743ca6" (raw bits) 0xdbb-0xdcb (16) 0x0dc0|f5 17 b3 01 98 8b 8b 34 74 3c a6 |.......4t<. | | | | [139]{}: bound 0xdcb-0xdde (19) -0x0dc0| 0d | . | timestamp: 14664 (13) (1970-01-01 04:04:24 UTC) 0xdcb-0xdcc (1) +0x0dc0| 0d | . | timestamp_delta: 12 (13) 0xdcb-0xdcc (1) + | | | timestamp: 14664 (1970-01-01T04:04:24Z) 0x0dc0| 00 | . | id_prefix_size: 0 0xdcc-0xdcd (1) 0x0dc0| 01 | . | mode: "fingerprint" (1) 0xdcd-0xdce (1) 0x0dc0| 67 b1| g.| fingerprint: "67b1583666c90373946a2af4319da017" (raw bits) 0xdce-0xdde (16) 0x0dd0|58 36 66 c9 03 73 94 6a 2a f4 31 9d a0 17 |X6f..s.j*.1... | | | | [140]{}: bound 0xdde-0xdf1 (19) -0x0dd0| 0d | . | timestamp: 14676 (13) (1970-01-01 04:04:36 UTC) 0xdde-0xddf (1) +0x0dd0| 0d | . | timestamp_delta: 12 (13) 0xdde-0xddf (1) + | | | timestamp: 14676 (1970-01-01T04:04:36Z) 0x0dd0| 00| .| id_prefix_size: 0 0xddf-0xde0 (1) 0x0de0|01 |. | mode: "fingerprint" (1) 0xde0-0xde1 (1) 0x0de0| ff c8 32 dd 79 9c 4c b5 e1 6a 41 75 61 28 b9| ..2.y.L..jAua(.| fingerprint: "ffc832dd799c4cb5e16a41756128b9d3" (raw bits) 0xde1-0xdf1 (16) 0x0df0|d3 |. | | | | [141]{}: bound 0xdf1-0xe04 (19) -0x0df0| 0d | . | timestamp: 14688 (13) (1970-01-01 04:04:48 UTC) 0xdf1-0xdf2 (1) +0x0df0| 0d | . | timestamp_delta: 12 (13) 0xdf1-0xdf2 (1) + | | | timestamp: 14688 (1970-01-01T04:04:48Z) 0x0df0| 00 | . | id_prefix_size: 0 0xdf2-0xdf3 (1) 0x0df0| 01 | . | mode: "fingerprint" (1) 0xdf3-0xdf4 (1) 0x0df0| e5 b8 17 7c d2 d2 95 dc f5 fd ab b0| ...|........| fingerprint: "e5b8177cd2d295dcf5fdabb0dea332de" (raw bits) 0xdf4-0xe04 (16) 0x0e00|de a3 32 de |..2. | | | | [142]{}: bound 0xe04-0xe17 (19) -0x0e00| 0d | . | timestamp: 14700 (13) (1970-01-01 04:05:00 UTC) 0xe04-0xe05 (1) +0x0e00| 0d | . | timestamp_delta: 12 (13) 0xe04-0xe05 (1) + | | | timestamp: 14700 (1970-01-01T04:05:00Z) 0x0e00| 00 | . | id_prefix_size: 0 0xe05-0xe06 (1) 0x0e00| 01 | . | mode: "fingerprint" (1) 0xe06-0xe07 (1) 0x0e00| 0d ba 05 8d d1 77 7a 90 51| .....wz.Q| fingerprint: "0dba058dd1777a905107797494ecc78b" (raw bits) 0xe07-0xe17 (16) 0x0e10|07 79 74 94 ec c7 8b |.yt.... | | | | [143]{}: bound 0xe17-0xe2a (19) -0x0e10| 0d | . | timestamp: 14712 (13) (1970-01-01 04:05:12 UTC) 0xe17-0xe18 (1) +0x0e10| 0d | . | timestamp_delta: 12 (13) 0xe17-0xe18 (1) + | | | timestamp: 14712 (1970-01-01T04:05:12Z) 0x0e10| 00 | . | id_prefix_size: 0 0xe18-0xe19 (1) 0x0e10| 01 | . | mode: "fingerprint" (1) 0xe19-0xe1a (1) 0x0e10| ae db a4 01 c0 1a| ......| fingerprint: "aedba401c01a4880f07a25119e68dbd2" (raw bits) 0xe1a-0xe2a (16) 0x0e20|48 80 f0 7a 25 11 9e 68 db d2 |H..z%..h.. | | | | [144]{}: bound 0xe2a-0xe3d (19) -0x0e20| 0d | . | timestamp: 14724 (13) (1970-01-01 04:05:24 UTC) 0xe2a-0xe2b (1) +0x0e20| 0d | . | timestamp_delta: 12 (13) 0xe2a-0xe2b (1) + | | | timestamp: 14724 (1970-01-01T04:05:24Z) 0x0e20| 00 | . | id_prefix_size: 0 0xe2b-0xe2c (1) 0x0e20| 01 | . | mode: "fingerprint" (1) 0xe2c-0xe2d (1) 0x0e20| be 9c d1| ...| fingerprint: "be9cd156ef07fd83428444240bd15af8" (raw bits) 0xe2d-0xe3d (16) 0x0e30|56 ef 07 fd 83 42 84 44 24 0b d1 5a f8 |V....B.D$..Z. | | | | [145]{}: bound 0xe3d-0xe50 (19) -0x0e30| 0d | . | timestamp: 14736 (13) (1970-01-01 04:05:36 UTC) 0xe3d-0xe3e (1) +0x0e30| 0d | . | timestamp_delta: 12 (13) 0xe3d-0xe3e (1) + | | | timestamp: 14736 (1970-01-01T04:05:36Z) 0x0e30| 00 | . | id_prefix_size: 0 0xe3e-0xe3f (1) 0x0e30| 01| .| mode: "fingerprint" (1) 0xe3f-0xe40 (1) 0x0e40|23 e3 e5 d7 c6 b8 07 6e dc a2 46 1f dd 41 f7 0e|#......n..F..A..| fingerprint: "23e3e5d7c6b8076edca2461fdd41f70e" (raw bits) 0xe40-0xe50 (16) | | | [146]{}: bound 0xe50-0xe63 (19) -0x0e50|0d |. | timestamp: 14748 (13) (1970-01-01 04:05:48 UTC) 0xe50-0xe51 (1) +0x0e50|0d |. | timestamp_delta: 12 (13) 0xe50-0xe51 (1) + | | | timestamp: 14748 (1970-01-01T04:05:48Z) 0x0e50| 00 | . | id_prefix_size: 0 0xe51-0xe52 (1) 0x0e50| 01 | . | mode: "fingerprint" (1) 0xe52-0xe53 (1) 0x0e50| cf 9c bd 4e ef 1b 28 21 ee db 25 2d 44| ...N..(!..%-D| fingerprint: "cf9cbd4eef1b2821eedb252d446b7a5d" (raw bits) 0xe53-0xe63 (16) 0x0e60|6b 7a 5d |kz] | | | | [147]{}: bound 0xe63-0xe76 (19) -0x0e60| 0d | . | timestamp: 14760 (13) (1970-01-01 04:06:00 UTC) 0xe63-0xe64 (1) +0x0e60| 0d | . | timestamp_delta: 12 (13) 0xe63-0xe64 (1) + | | | timestamp: 14760 (1970-01-01T04:06:00Z) 0x0e60| 00 | . | id_prefix_size: 0 0xe64-0xe65 (1) 0x0e60| 01 | . | mode: "fingerprint" (1) 0xe65-0xe66 (1) 0x0e60| b7 18 9e 59 9a d7 3c ae 48 28| ...Y..<.H(| fingerprint: "b7189e599ad73cae4828dd357755093c" (raw bits) 0xe66-0xe76 (16) 0x0e70|dd 35 77 55 09 3c |.5wU.< | | | | [148]{}: bound 0xe76-0xe89 (19) -0x0e70| 0d | . | timestamp: 14772 (13) (1970-01-01 04:06:12 UTC) 0xe76-0xe77 (1) +0x0e70| 0d | . | timestamp_delta: 12 (13) 0xe76-0xe77 (1) + | | | timestamp: 14772 (1970-01-01T04:06:12Z) 0x0e70| 00 | . | id_prefix_size: 0 0xe77-0xe78 (1) 0x0e70| 01 | . | mode: "fingerprint" (1) 0xe78-0xe79 (1) 0x0e70| 0a 35 31 9c fc 78 f1| .51..x.| fingerprint: "0a35319cfc78f177e622e9531c4535eb" (raw bits) 0xe79-0xe89 (16) 0x0e80|77 e6 22 e9 53 1c 45 35 eb |w.".S.E5. | | | | [149]{}: bound 0xe89-0xe9c (19) -0x0e80| 0d | . | timestamp: 14784 (13) (1970-01-01 04:06:24 UTC) 0xe89-0xe8a (1) +0x0e80| 0d | . | timestamp_delta: 12 (13) 0xe89-0xe8a (1) + | | | timestamp: 14784 (1970-01-01T04:06:24Z) 0x0e80| 00 | . | id_prefix_size: 0 0xe8a-0xe8b (1) 0x0e80| 01 | . | mode: "fingerprint" (1) 0xe8b-0xe8c (1) 0x0e80| d7 d4 9f 28| ...(| fingerprint: "d7d49f286c932cf0de6876e6f74f8874" (raw bits) 0xe8c-0xe9c (16) 0x0e90|6c 93 2c f0 de 68 76 e6 f7 4f 88 74 |l.,..hv..O.t | | | | [150]{}: bound 0xe9c-0xeaf (19) -0x0e90| 0c | . | timestamp: 14795 (12) (1970-01-01 04:06:35 UTC) 0xe9c-0xe9d (1) +0x0e90| 0c | . | timestamp_delta: 11 (12) 0xe9c-0xe9d (1) + | | | timestamp: 14795 (1970-01-01T04:06:35Z) 0x0e90| 00 | . | id_prefix_size: 0 0xe9d-0xe9e (1) 0x0e90| 01 | . | mode: "fingerprint" (1) 0xe9e-0xe9f (1) 0x0e90| a8| .| fingerprint: "a8553fc21bc6f3315c2bc1bdc721cc07" (raw bits) 0xe9f-0xeaf (16) 0x0ea0|55 3f c2 1b c6 f3 31 5c 2b c1 bd c7 21 cc 07 |U?....1\+...!.. | | | | [151]{}: bound 0xeaf-0xec2 (19) -0x0ea0| 0c| .| timestamp: 14806 (12) (1970-01-01 04:06:46 UTC) 0xeaf-0xeb0 (1) +0x0ea0| 0c| .| timestamp_delta: 11 (12) 0xeaf-0xeb0 (1) + | | | timestamp: 14806 (1970-01-01T04:06:46Z) 0x0eb0|00 |. | id_prefix_size: 0 0xeb0-0xeb1 (1) 0x0eb0| 01 | . | mode: "fingerprint" (1) 0xeb1-0xeb2 (1) 0x0eb0| e5 1e ac 79 3f ac 50 9c b7 af 15 b6 2c b3| ...y?.P.....,.| fingerprint: "e51eac793fac509cb7af15b62cb35be9" (raw bits) 0xeb2-0xec2 (16) 0x0ec0|5b e9 |[. | | | | [152]{}: bound 0xec2-0xec5 (3) -0x0ec0| 4e | N | timestamp: 14883 (78) (1970-01-01 04:08:03 UTC) 0xec2-0xec3 (1) +0x0ec0| 4e | N | timestamp_delta: 77 (78) 0xec2-0xec3 (1) + | | | timestamp: 14883 (1970-01-01T04:08:03Z) 0x0ec0| 00 | . | id_prefix_size: 0 0xec3-0xec4 (1) 0x0ec0| 00 | . | mode: "skip" (0) 0xec4-0xec5 (1) | | | [153]{}: bound 0xec5-0xed8 (19) -0x0ec0| 06 | . | timestamp: 14888 (6) (1970-01-01 04:08:08 UTC) 0xec5-0xec6 (1) +0x0ec0| 06 | . | timestamp_delta: 5 (6) 0xec5-0xec6 (1) + | | | timestamp: 14888 (1970-01-01T04:08:08Z) 0x0ec0| 00 | . | id_prefix_size: 0 0xec6-0xec7 (1) 0x0ec0| 01 | . | mode: "fingerprint" (1) 0xec7-0xec8 (1) 0x0ec0| c7 de 49 7a 3b 86 f7 a1| ..Iz;...| fingerprint: "c7de497a3b86f7a17552f4f9c2a8fd57" (raw bits) 0xec8-0xed8 (16) 0x0ed0|75 52 f4 f9 c2 a8 fd 57 |uR.....W | | | | [154]{}: bound 0xed8-0xeeb (19) -0x0ed0| 06 | . | timestamp: 14893 (6) (1970-01-01 04:08:13 UTC) 0xed8-0xed9 (1) +0x0ed0| 06 | . | timestamp_delta: 5 (6) 0xed8-0xed9 (1) + | | | timestamp: 14893 (1970-01-01T04:08:13Z) 0x0ed0| 00 | . | id_prefix_size: 0 0xed9-0xeda (1) 0x0ed0| 01 | . | mode: "fingerprint" (1) 0xeda-0xedb (1) 0x0ed0| 5a 3d a8 56 3e| Z=.V>| fingerprint: "5a3da8563ebed6e54e129057e1663e5b" (raw bits) 0xedb-0xeeb (16) 0x0ee0|be d6 e5 4e 12 90 57 e1 66 3e 5b |...N..W.f>[ | | | | [155]{}: bound 0xeeb-0xefe (19) -0x0ee0| 06 | . | timestamp: 14898 (6) (1970-01-01 04:08:18 UTC) 0xeeb-0xeec (1) +0x0ee0| 06 | . | timestamp_delta: 5 (6) 0xeeb-0xeec (1) + | | | timestamp: 14898 (1970-01-01T04:08:18Z) 0x0ee0| 00 | . | id_prefix_size: 0 0xeec-0xeed (1) 0x0ee0| 01 | . | mode: "fingerprint" (1) 0xeed-0xeee (1) 0x0ee0| 22 35| "5| fingerprint: "2235e61d2029900931046001a0d8d6be" (raw bits) 0xeee-0xefe (16) 0x0ef0|e6 1d 20 29 90 09 31 04 60 01 a0 d8 d6 be |.. )..1.`..... | | | | [156]{}: bound 0xefe-0xf11 (19) -0x0ef0| 05 | . | timestamp: 14902 (5) (1970-01-01 04:08:22 UTC) 0xefe-0xeff (1) +0x0ef0| 05 | . | timestamp_delta: 4 (5) 0xefe-0xeff (1) + | | | timestamp: 14902 (1970-01-01T04:08:22Z) 0x0ef0| 00| .| id_prefix_size: 0 0xeff-0xf00 (1) 0x0f00|01 |. | mode: "fingerprint" (1) 0xf00-0xf01 (1) 0x0f00| 21 62 e8 8e 7f fc c2 1a e1 ab 28 74 5e cf f8| !b........(t^..| fingerprint: "2162e88e7ffcc21ae1ab28745ecff8f7" (raw bits) 0xf01-0xf11 (16) 0x0f10|f7 |. | | | | [157]{}: bound 0xf11-0xf24 (19) -0x0f10| 05 | . | timestamp: 14906 (5) (1970-01-01 04:08:26 UTC) 0xf11-0xf12 (1) +0x0f10| 05 | . | timestamp_delta: 4 (5) 0xf11-0xf12 (1) + | | | timestamp: 14906 (1970-01-01T04:08:26Z) 0x0f10| 00 | . | id_prefix_size: 0 0xf12-0xf13 (1) 0x0f10| 01 | . | mode: "fingerprint" (1) 0xf13-0xf14 (1) 0x0f10| fe 9c 03 38 7b b4 c0 83 d8 c3 cb 74| ...8{......t| fingerprint: "fe9c03387bb4c083d8c3cb7418a400dc" (raw bits) 0xf14-0xf24 (16) 0x0f20|18 a4 00 dc |.... | | | | [158]{}: bound 0xf24-0xf37 (19) -0x0f20| 05 | . | timestamp: 14910 (5) (1970-01-01 04:08:30 UTC) 0xf24-0xf25 (1) +0x0f20| 05 | . | timestamp_delta: 4 (5) 0xf24-0xf25 (1) + | | | timestamp: 14910 (1970-01-01T04:08:30Z) 0x0f20| 00 | . | id_prefix_size: 0 0xf25-0xf26 (1) 0x0f20| 01 | . | mode: "fingerprint" (1) 0xf26-0xf27 (1) 0x0f20| f3 d4 3f 53 24 e7 0d 7e 83| ..?S$..~.| fingerprint: "f3d43f5324e70d7e834b2c9ee9820c7c" (raw bits) 0xf27-0xf37 (16) 0x0f30|4b 2c 9e e9 82 0c 7c |K,....| | | | | [159]{}: bound 0xf37-0xf4a (19) -0x0f30| 05 | . | timestamp: 14914 (5) (1970-01-01 04:08:34 UTC) 0xf37-0xf38 (1) +0x0f30| 05 | . | timestamp_delta: 4 (5) 0xf37-0xf38 (1) + | | | timestamp: 14914 (1970-01-01T04:08:34Z) 0x0f30| 00 | . | id_prefix_size: 0 0xf38-0xf39 (1) 0x0f30| 01 | . | mode: "fingerprint" (1) 0xf39-0xf3a (1) 0x0f30| 8d 61 36 0b 47 44| .a6.GD| fingerprint: "8d61360b4744f80e338fcd60d72540dd" (raw bits) 0xf3a-0xf4a (16) 0x0f40|f8 0e 33 8f cd 60 d7 25 40 dd |..3..`.%@. | | | | [160]{}: bound 0xf4a-0xf5d (19) -0x0f40| 05 | . | timestamp: 14918 (5) (1970-01-01 04:08:38 UTC) 0xf4a-0xf4b (1) +0x0f40| 05 | . | timestamp_delta: 4 (5) 0xf4a-0xf4b (1) + | | | timestamp: 14918 (1970-01-01T04:08:38Z) 0x0f40| 00 | . | id_prefix_size: 0 0xf4b-0xf4c (1) 0x0f40| 01 | . | mode: "fingerprint" (1) 0xf4c-0xf4d (1) 0x0f40| 2a d3 8c| *..| fingerprint: "2ad38c14afad0516f6da33ec193273ab" (raw bits) 0xf4d-0xf5d (16) 0x0f50|14 af ad 05 16 f6 da 33 ec 19 32 73 ab |.......3..2s. | | | | [161]{}: bound 0xf5d-0xf70 (19) -0x0f50| 05 | . | timestamp: 14922 (5) (1970-01-01 04:08:42 UTC) 0xf5d-0xf5e (1) +0x0f50| 05 | . | timestamp_delta: 4 (5) 0xf5d-0xf5e (1) + | | | timestamp: 14922 (1970-01-01T04:08:42Z) 0x0f50| 00 | . | id_prefix_size: 0 0xf5e-0xf5f (1) 0x0f50| 01| .| mode: "fingerprint" (1) 0xf5f-0xf60 (1) 0x0f60|df 54 20 6e 13 38 1e a7 4d 21 4a d9 7e bc e8 dd|.T n.8..M!J.~...| fingerprint: "df54206e13381ea74d214ad97ebce8dd" (raw bits) 0xf60-0xf70 (16) | | | [162]{}: bound 0xf70-0xf83 (19) -0x0f70|05 |. | timestamp: 14926 (5) (1970-01-01 04:08:46 UTC) 0xf70-0xf71 (1) +0x0f70|05 |. | timestamp_delta: 4 (5) 0xf70-0xf71 (1) + | | | timestamp: 14926 (1970-01-01T04:08:46Z) 0x0f70| 00 | . | id_prefix_size: 0 0xf71-0xf72 (1) 0x0f70| 01 | . | mode: "fingerprint" (1) 0xf72-0xf73 (1) 0x0f70| 26 87 bb 36 24 66 92 5e da 27 2d ff 52| &..6$f.^.'-.R| fingerprint: "2687bb362466925eda272dff52b6986c" (raw bits) 0xf73-0xf83 (16) 0x0f80|b6 98 6c |..l | | | | [163]{}: bound 0xf83-0xf96 (19) -0x0f80| 05 | . | timestamp: 14930 (5) (1970-01-01 04:08:50 UTC) 0xf83-0xf84 (1) +0x0f80| 05 | . | timestamp_delta: 4 (5) 0xf83-0xf84 (1) + | | | timestamp: 14930 (1970-01-01T04:08:50Z) 0x0f80| 00 | . | id_prefix_size: 0 0xf84-0xf85 (1) 0x0f80| 01 | . | mode: "fingerprint" (1) 0xf85-0xf86 (1) 0x0f80| 22 a0 0c ce 35 34 6c 58 7b 64| "...54lX{d| fingerprint: "22a00cce35346c587b6425eb95762c87" (raw bits) 0xf86-0xf96 (16) 0x0f90|25 eb 95 76 2c 87 |%..v,. | | | | [164]{}: bound 0xf96-0xfa9 (19) -0x0f90| 05 | . | timestamp: 14934 (5) (1970-01-01 04:08:54 UTC) 0xf96-0xf97 (1) +0x0f90| 05 | . | timestamp_delta: 4 (5) 0xf96-0xf97 (1) + | | | timestamp: 14934 (1970-01-01T04:08:54Z) 0x0f90| 00 | . | id_prefix_size: 0 0xf97-0xf98 (1) 0x0f90| 01 | . | mode: "fingerprint" (1) 0xf98-0xf99 (1) 0x0f90| d0 55 8f 92 f8 73 9b| .U...s.| fingerprint: "d0558f92f8739b2f9f1de8db7fb8d8ce" (raw bits) 0xf99-0xfa9 (16) 0x0fa0|2f 9f 1d e8 db 7f b8 d8 ce |/........ | | | | [165]{}: bound 0xfa9-0xfbc (19) -0x0fa0| 05 | . | timestamp: 14938 (5) (1970-01-01 04:08:58 UTC) 0xfa9-0xfaa (1) +0x0fa0| 05 | . | timestamp_delta: 4 (5) 0xfa9-0xfaa (1) + | | | timestamp: 14938 (1970-01-01T04:08:58Z) 0x0fa0| 00 | . | id_prefix_size: 0 0xfaa-0xfab (1) 0x0fa0| 01 | . | mode: "fingerprint" (1) 0xfab-0xfac (1) 0x0fa0| b7 09 1c 7c| ...|| fingerprint: "b7091c7cc745843fec61e5920b94c744" (raw bits) 0xfac-0xfbc (16) 0x0fb0|c7 45 84 3f ec 61 e5 92 0b 94 c7 44 |.E.?.a.....D | | | | [166]{}: bound 0xfbc-0xfcf (19) -0x0fb0| 05 | . | timestamp: 14942 (5) (1970-01-01 04:09:02 UTC) 0xfbc-0xfbd (1) +0x0fb0| 05 | . | timestamp_delta: 4 (5) 0xfbc-0xfbd (1) + | | | timestamp: 14942 (1970-01-01T04:09:02Z) 0x0fb0| 00 | . | id_prefix_size: 0 0xfbd-0xfbe (1) 0x0fb0| 01 | . | mode: "fingerprint" (1) 0xfbe-0xfbf (1) 0x0fb0| 2a| *| fingerprint: "2a71cdb44346157791ee924e07ddd816" (raw bits) 0xfbf-0xfcf (16) 0x0fc0|71 cd b4 43 46 15 77 91 ee 92 4e 07 dd d8 16 |q..CF.w...N.... | | | | [167]{}: bound 0xfcf-0xfe2 (19) -0x0fc0| 05| .| timestamp: 14946 (5) (1970-01-01 04:09:06 UTC) 0xfcf-0xfd0 (1) +0x0fc0| 05| .| timestamp_delta: 4 (5) 0xfcf-0xfd0 (1) + | | | timestamp: 14946 (1970-01-01T04:09:06Z) 0x0fd0|00 |. | id_prefix_size: 0 0xfd0-0xfd1 (1) 0x0fd0| 01 | . | mode: "fingerprint" (1) 0xfd1-0xfd2 (1) 0x0fd0| fe 9c 03 38 7b b4 c0 83 d8 c3 cb 74 18 a4| ...8{......t..| fingerprint: "fe9c03387bb4c083d8c3cb7418a400dc" (raw bits) 0xfd2-0xfe2 (16) 0x0fe0|00 dc |.. | | | | [168]{}: bound 0xfe2-0xff6 (20) -0x0fe0| 81 7c | .| | timestamp: 15197 (252) (1970-01-01 04:13:17 UTC) 0xfe2-0xfe4 (2) +0x0fe0| 81 7c | .| | timestamp_delta: 251 (252) 0xfe2-0xfe4 (2) + | | | timestamp: 15197 (1970-01-01T04:13:17Z) 0x0fe0| 00 | . | id_prefix_size: 0 0xfe4-0xfe5 (1) 0x0fe0| 01 | . | mode: "fingerprint" (1) 0xfe5-0xfe6 (1) 0x0fe0| f3 d4 3f 53 24 e7 0d 7e 83 4b| ..?S$..~.K| fingerprint: "f3d43f5324e70d7e834b2c9ee9820c7c" (raw bits) 0xfe6-0xff6 (16) 0x0ff0|2c 9e e9 82 0c 7c |,....| | | | | [169]{}: bound 0xff6-0xffb (5) -0x0ff0| 82 3b | .; | timestamp: 15511 (315) (1970-01-01 04:18:31 UTC) 0xff6-0xff8 (2) +0x0ff0| 82 3b | .; | timestamp_delta: 314 (315) 0xff6-0xff8 (2) + | | | timestamp: 15511 (1970-01-01T04:18:31Z) 0x0ff0| 00 | . | id_prefix_size: 0 0xff8-0xff9 (1) 0x0ff0| 02 | . | mode: "idlist" (2) 0xff9-0xffa (1) | | | idlist{}: 0xffa-0xffb (1) 0x0ff0| 00 | . | num: 0 0xffa-0xffb (1) | | | ids[0:0]: 0xffb-0xffb (0) | | | [170]{}: bound 0xffb-0x1000 (5) -0x0ff0| 82 3b | .; | timestamp: 15825 (315) (1970-01-01 04:23:45 UTC) 0xffb-0xffd (2) +0x0ff0| 82 3b | .; | timestamp_delta: 314 (315) 0xffb-0xffd (2) + | | | timestamp: 15825 (1970-01-01T04:23:45Z) 0x0ff0| 00 | . | id_prefix_size: 0 0xffd-0xffe (1) 0x0ff0| 02 | . | mode: "idlist" (2) 0xffe-0xfff (1) | | | idlist{}: 0xfff-0x1000 (1) 0x0ff0| 00| .| num: 0 0xfff-0x1000 (1) | | | ids[0:0]: 0x1000-0x1000 (0) | | | [171]{}: bound 0x1000-0x1005 (5) -0x1000|82 3b |.; | timestamp: 16139 (315) (1970-01-01 04:28:59 UTC) 0x1000-0x1002 (2) +0x1000|82 3b |.; | timestamp_delta: 314 (315) 0x1000-0x1002 (2) + | | | timestamp: 16139 (1970-01-01T04:28:59Z) 0x1000| 00 | . | id_prefix_size: 0 0x1002-0x1003 (1) 0x1000| 02 | . | mode: "idlist" (2) 0x1003-0x1004 (1) | | | idlist{}: 0x1004-0x1005 (1) 0x1000| 00 | . | num: 0 0x1004-0x1005 (1) | | | ids[0:0]: 0x1005-0x1005 (0) | | | [172]{}: bound 0x1005-0x100a (5) -0x1000| 82 3b | .; | timestamp: 16453 (315) (1970-01-01 04:34:13 UTC) 0x1005-0x1007 (2) +0x1000| 82 3b | .; | timestamp_delta: 314 (315) 0x1005-0x1007 (2) + | | | timestamp: 16453 (1970-01-01T04:34:13Z) 0x1000| 00 | . | id_prefix_size: 0 0x1007-0x1008 (1) 0x1000| 02 | . | mode: "idlist" (2) 0x1008-0x1009 (1) | | | idlist{}: 0x1009-0x100a (1) 0x1000| 00 | . | num: 0 0x1009-0x100a (1) | | | ids[0:0]: 0x100a-0x100a (0) | | | [173]{}: bound 0x100a-0x100f (5) -0x1000| 82 3b | .; | timestamp: 16767 (315) (1970-01-01 04:39:27 UTC) 0x100a-0x100c (2) +0x1000| 82 3b | .; | timestamp_delta: 314 (315) 0x100a-0x100c (2) + | | | timestamp: 16767 (1970-01-01T04:39:27Z) 0x1000| 00 | . | id_prefix_size: 0 0x100c-0x100d (1) 0x1000| 02 | . | mode: "idlist" (2) 0x100d-0x100e (1) | | | idlist{}: 0x100e-0x100f (1) 0x1000| 00 | . | num: 0 0x100e-0x100f (1) | | | ids[0:0]: 0x100f-0x100f (0) | | | [174]{}: bound 0x100f-0x1014 (5) -0x1000| 82| .| timestamp: 17081 (315) (1970-01-01 04:44:41 UTC) 0x100f-0x1011 (2) +0x1000| 82| .| timestamp_delta: 314 (315) 0x100f-0x1011 (2) 0x1010|3b |; | + | | | timestamp: 17081 (1970-01-01T04:44:41Z) 0x1010| 00 | . | id_prefix_size: 0 0x1011-0x1012 (1) 0x1010| 02 | . | mode: "idlist" (2) 0x1012-0x1013 (1) | | | idlist{}: 0x1013-0x1014 (1) 0x1010| 00 | . | num: 0 0x1013-0x1014 (1) | | | ids[0:0]: 0x1014-0x1014 (0) | | | [175]{}: bound 0x1014-0x1019 (5) -0x1010| 82 3b | .; | timestamp: 17395 (315) (1970-01-01 04:49:55 UTC) 0x1014-0x1016 (2) +0x1010| 82 3b | .; | timestamp_delta: 314 (315) 0x1014-0x1016 (2) + | | | timestamp: 17395 (1970-01-01T04:49:55Z) 0x1010| 00 | . | id_prefix_size: 0 0x1016-0x1017 (1) 0x1010| 02 | . | mode: "idlist" (2) 0x1017-0x1018 (1) | | | idlist{}: 0x1018-0x1019 (1) 0x1010| 00 | . | num: 0 0x1018-0x1019 (1) | | | ids[0:0]: 0x1019-0x1019 (0) | | | [176]{}: bound 0x1019-0x101e (5) -0x1010| 82 3b | .; | timestamp: 17709 (315) (1970-01-01 04:55:09 UTC) 0x1019-0x101b (2) +0x1010| 82 3b | .; | timestamp_delta: 314 (315) 0x1019-0x101b (2) + | | | timestamp: 17709 (1970-01-01T04:55:09Z) 0x1010| 00 | . | id_prefix_size: 0 0x101b-0x101c (1) 0x1010| 02 | . | mode: "idlist" (2) 0x101c-0x101d (1) | | | idlist{}: 0x101d-0x101e (1) 0x1010| 00 | . | num: 0 0x101d-0x101e (1) | | | ids[0:0]: 0x101e-0x101e (0) | | | [177]{}: bound 0x101e-0x1023 (5) -0x1010| 82 3a| .:| timestamp: 18022 (314) (1970-01-01 05:00:22 UTC) 0x101e-0x1020 (2) +0x1010| 82 3a| .:| timestamp_delta: 313 (314) 0x101e-0x1020 (2) + | | | timestamp: 18022 (1970-01-01T05:00:22Z) 0x1020|00 |. | id_prefix_size: 0 0x1020-0x1021 (1) 0x1020| 02 | . | mode: "idlist" (2) 0x1021-0x1022 (1) | | | idlist{}: 0x1022-0x1023 (1) 0x1020| 00 | . | num: 0 0x1022-0x1023 (1) | | | ids[0:0]: 0x1023-0x1023 (0) | | | [178]{}: bound 0x1023-0x1028 (5) -0x1020| 82 3a | .: | timestamp: 18335 (314) (1970-01-01 05:05:35 UTC) 0x1023-0x1025 (2) +0x1020| 82 3a | .: | timestamp_delta: 313 (314) 0x1023-0x1025 (2) + | | | timestamp: 18335 (1970-01-01T05:05:35Z) 0x1020| 00 | . | id_prefix_size: 0 0x1025-0x1026 (1) 0x1020| 02 | . | mode: "idlist" (2) 0x1026-0x1027 (1) | | | idlist{}: 0x1027-0x1028 (1) 0x1020| 00 | . | num: 0 0x1027-0x1028 (1) | | | ids[0:0]: 0x1028-0x1028 (0) | | | [179]{}: bound 0x1028-0x102d (5) -0x1020| 82 3a | .: | timestamp: 18648 (314) (1970-01-01 05:10:48 UTC) 0x1028-0x102a (2) +0x1020| 82 3a | .: | timestamp_delta: 313 (314) 0x1028-0x102a (2) + | | | timestamp: 18648 (1970-01-01T05:10:48Z) 0x1020| 00 | . | id_prefix_size: 0 0x102a-0x102b (1) 0x1020| 02 | . | mode: "idlist" (2) 0x102b-0x102c (1) | | | idlist{}: 0x102c-0x102d (1) 0x1020| 00 | . | num: 0 0x102c-0x102d (1) | | | ids[0:0]: 0x102d-0x102d (0) | | | [180]{}: bound 0x102d-0x1032 (5) -0x1020| 82 3a | .: | timestamp: 18961 (314) (1970-01-01 05:16:01 UTC) 0x102d-0x102f (2) +0x1020| 82 3a | .: | timestamp_delta: 313 (314) 0x102d-0x102f (2) + | | | timestamp: 18961 (1970-01-01T05:16:01Z) 0x1020| 00| .| id_prefix_size: 0 0x102f-0x1030 (1) 0x1030|02 |. | mode: "idlist" (2) 0x1030-0x1031 (1) | | | idlist{}: 0x1031-0x1032 (1) 0x1030| 00 | . | num: 0 0x1031-0x1032 (1) | | | ids[0:0]: 0x1032-0x1032 (0) | | | [181]{}: bound 0x1032-0x1037 (5) -0x1030| 82 3a | .: | timestamp: 19274 (314) (1970-01-01 05:21:14 UTC) 0x1032-0x1034 (2) +0x1030| 82 3a | .: | timestamp_delta: 313 (314) 0x1032-0x1034 (2) + | | | timestamp: 19274 (1970-01-01T05:21:14Z) 0x1030| 00 | . | id_prefix_size: 0 0x1034-0x1035 (1) 0x1030| 02 | . | mode: "idlist" (2) 0x1035-0x1036 (1) | | | idlist{}: 0x1036-0x1037 (1) 0x1030| 00 | . | num: 0 0x1036-0x1037 (1) | | | ids[0:0]: 0x1037-0x1037 (0) | | | [182]{}: bound 0x1037-0x103c (5) -0x1030| 82 3a | .: | timestamp: 19587 (314) (1970-01-01 05:26:27 UTC) 0x1037-0x1039 (2) +0x1030| 82 3a | .: | timestamp_delta: 313 (314) 0x1037-0x1039 (2) + | | | timestamp: 19587 (1970-01-01T05:26:27Z) 0x1030| 00 | . | id_prefix_size: 0 0x1039-0x103a (1) 0x1030| 02 | . | mode: "idlist" (2) 0x103a-0x103b (1) | | | idlist{}: 0x103b-0x103c (1) 0x1030| 00 | . | num: 0 0x103b-0x103c (1) | | | ids[0:0]: 0x103c-0x103c (0) | | | [183]{}: bound 0x103c-0x1050 (20) -0x1030| 81 63 | .c | timestamp: 19813 (227) (1970-01-01 05:30:13 UTC) 0x103c-0x103e (2) +0x1030| 81 63 | .c | timestamp_delta: 226 (227) 0x103c-0x103e (2) + | | | timestamp: 19813 (1970-01-01T05:30:13Z) 0x1030| 00 | . | id_prefix_size: 0 0x103e-0x103f (1) 0x1030| 01| .| mode: "fingerprint" (1) 0x103f-0x1040 (1) 0x1040|44 82 bb 2d 0b 69 db c7 1e e9 26 61 c3 78 77 9f|D..-.i....&a.xw.| fingerprint: "4482bb2d0b69dbc71ee92661c378779f" (raw bits) 0x1040-0x1050 (16) | | | [184]{}: bound 0x1050-0x1063 (19) -0x1050|0e |. | timestamp: 19826 (14) (1970-01-01 05:30:26 UTC) 0x1050-0x1051 (1) +0x1050|0e |. | timestamp_delta: 13 (14) 0x1050-0x1051 (1) + | | | timestamp: 19826 (1970-01-01T05:30:26Z) 0x1050| 00 | . | id_prefix_size: 0 0x1051-0x1052 (1) 0x1050| 01 | . | mode: "fingerprint" (1) 0x1052-0x1053 (1) 0x1050| a2 c6 aa 65 92 32 9c fa 91 06 41 45 13| ...e.2....AE.| fingerprint: "a2c6aa6592329cfa9106414513a3c79e" (raw bits) 0x1053-0x1063 (16) 0x1060|a3 c7 9e |... | | | | [185]{}: bound 0x1063-0x1076 (19) -0x1060| 0e | . | timestamp: 19839 (14) (1970-01-01 05:30:39 UTC) 0x1063-0x1064 (1) +0x1060| 0e | . | timestamp_delta: 13 (14) 0x1063-0x1064 (1) + | | | timestamp: 19839 (1970-01-01T05:30:39Z) 0x1060| 00 | . | id_prefix_size: 0 0x1064-0x1065 (1) 0x1060| 01 | . | mode: "fingerprint" (1) 0x1065-0x1066 (1) 0x1060| d1 5f 5e c1 4a e0 26 48 c4 eb| ._^.J.&H..| fingerprint: "d15f5ec14ae02648c4eb20f82bfa9022" (raw bits) 0x1066-0x1076 (16) 0x1070|20 f8 2b fa 90 22 | .+.." | | | | [186]{}: bound 0x1076-0x1089 (19) -0x1070| 0e | . | timestamp: 19852 (14) (1970-01-01 05:30:52 UTC) 0x1076-0x1077 (1) +0x1070| 0e | . | timestamp_delta: 13 (14) 0x1076-0x1077 (1) + | | | timestamp: 19852 (1970-01-01T05:30:52Z) 0x1070| 00 | . | id_prefix_size: 0 0x1077-0x1078 (1) 0x1070| 01 | . | mode: "fingerprint" (1) 0x1078-0x1079 (1) 0x1070| ee 00 03 19 ca 9e 28| ......(| fingerprint: "ee000319ca9e2894cfd9ee1587379343" (raw bits) 0x1079-0x1089 (16) 0x1080|94 cf d9 ee 15 87 37 93 43 |......7.C | | | | [187]{}: bound 0x1089-0x109c (19) -0x1080| 0e | . | timestamp: 19865 (14) (1970-01-01 05:31:05 UTC) 0x1089-0x108a (1) +0x1080| 0e | . | timestamp_delta: 13 (14) 0x1089-0x108a (1) + | | | timestamp: 19865 (1970-01-01T05:31:05Z) 0x1080| 00 | . | id_prefix_size: 0 0x108a-0x108b (1) 0x1080| 01 | . | mode: "fingerprint" (1) 0x108b-0x108c (1) 0x1080| b7 27 3e a6| .'>.| fingerprint: "b7273ea681c69473bd5d78920bf8c4cc" (raw bits) 0x108c-0x109c (16) 0x1090|81 c6 94 73 bd 5d 78 92 0b f8 c4 cc |...s.]x..... | | | | [188]{}: bound 0x109c-0x10af (19) -0x1090| 0e | . | timestamp: 19878 (14) (1970-01-01 05:31:18 UTC) 0x109c-0x109d (1) +0x1090| 0e | . | timestamp_delta: 13 (14) 0x109c-0x109d (1) + | | | timestamp: 19878 (1970-01-01T05:31:18Z) 0x1090| 00 | . | id_prefix_size: 0 0x109d-0x109e (1) 0x1090| 01 | . | mode: "fingerprint" (1) 0x109e-0x109f (1) 0x1090| ba| .| fingerprint: "bab1306933cc16d8327b53a2eebeead6" (raw bits) 0x109f-0x10af (16) 0x10a0|b1 30 69 33 cc 16 d8 32 7b 53 a2 ee be ea d6 |.0i3...2{S..... | | | | [189]{}: bound 0x10af-0x10c2 (19) -0x10a0| 0e| .| timestamp: 19891 (14) (1970-01-01 05:31:31 UTC) 0x10af-0x10b0 (1) +0x10a0| 0e| .| timestamp_delta: 13 (14) 0x10af-0x10b0 (1) + | | | timestamp: 19891 (1970-01-01T05:31:31Z) 0x10b0|00 |. | id_prefix_size: 0 0x10b0-0x10b1 (1) 0x10b0| 01 | . | mode: "fingerprint" (1) 0x10b1-0x10b2 (1) 0x10b0| bb 23 2a 83 40 8f 53 d7 86 85 18 99 74 66| .#*.@.S.....tf| fingerprint: "bb232a83408f53d7868518997466a49e" (raw bits) 0x10b2-0x10c2 (16) 0x10c0|a4 9e |.. | | | | [190]{}: bound 0x10c2-0x10d5 (19) -0x10c0| 0e | . | timestamp: 19904 (14) (1970-01-01 05:31:44 UTC) 0x10c2-0x10c3 (1) +0x10c0| 0e | . | timestamp_delta: 13 (14) 0x10c2-0x10c3 (1) + | | | timestamp: 19904 (1970-01-01T05:31:44Z) 0x10c0| 00 | . | id_prefix_size: 0 0x10c3-0x10c4 (1) 0x10c0| 01 | . | mode: "fingerprint" (1) 0x10c4-0x10c5 (1) 0x10c0| 9c 9c 24 8d 0f fe ed d7 a7 d3 b1| ..$........| fingerprint: "9c9c248d0ffeedd7a7d3b197a86b95b3" (raw bits) 0x10c5-0x10d5 (16) 0x10d0|97 a8 6b 95 b3 |..k.. | | | | [191]{}: bound 0x10d5-0x10e8 (19) -0x10d0| 0d | . | timestamp: 19916 (13) (1970-01-01 05:31:56 UTC) 0x10d5-0x10d6 (1) +0x10d0| 0d | . | timestamp_delta: 12 (13) 0x10d5-0x10d6 (1) + | | | timestamp: 19916 (1970-01-01T05:31:56Z) 0x10d0| 00 | . | id_prefix_size: 0 0x10d6-0x10d7 (1) 0x10d0| 01 | . | mode: "fingerprint" (1) 0x10d7-0x10d8 (1) 0x10d0| 91 d2 bb 33 5e 31 6f f5| ...3^1o.| fingerprint: "91d2bb335e316ff52319f72c60591d6d" (raw bits) 0x10d8-0x10e8 (16) 0x10e0|23 19 f7 2c 60 59 1d 6d |#..,`Y.m | | | | [192]{}: bound 0x10e8-0x10fb (19) -0x10e0| 0d | . | timestamp: 19928 (13) (1970-01-01 05:32:08 UTC) 0x10e8-0x10e9 (1) +0x10e0| 0d | . | timestamp_delta: 12 (13) 0x10e8-0x10e9 (1) + | | | timestamp: 19928 (1970-01-01T05:32:08Z) 0x10e0| 00 | . | id_prefix_size: 0 0x10e9-0x10ea (1) 0x10e0| 01 | . | mode: "fingerprint" (1) 0x10ea-0x10eb (1) 0x10e0| 9b ed 93 40 b8| ...@.| fingerprint: "9bed9340b806197bc5aaa1ccd21cc019" (raw bits) 0x10eb-0x10fb (16) 0x10f0|06 19 7b c5 aa a1 cc d2 1c c0 19 |..{........ | | | | [193]{}: bound 0x10fb-0x110e (19) -0x10f0| 0d | . | timestamp: 19940 (13) (1970-01-01 05:32:20 UTC) 0x10fb-0x10fc (1) +0x10f0| 0d | . | timestamp_delta: 12 (13) 0x10fb-0x10fc (1) + | | | timestamp: 19940 (1970-01-01T05:32:20Z) 0x10f0| 00 | . | id_prefix_size: 0 0x10fc-0x10fd (1) 0x10f0| 01 | . | mode: "fingerprint" (1) 0x10fd-0x10fe (1) 0x10f0| 80 ed| ..| fingerprint: "80ed383eb295422af66b4d7905f5f862" (raw bits) 0x10fe-0x110e (16) 0x1100|38 3e b2 95 42 2a f6 6b 4d 79 05 f5 f8 62 |8>..B*.kMy...b | | | | [194]{}: bound 0x110e-0x1121 (19) -0x1100| 0d | . | timestamp: 19952 (13) (1970-01-01 05:32:32 UTC) 0x110e-0x110f (1) +0x1100| 0d | . | timestamp_delta: 12 (13) 0x110e-0x110f (1) + | | | timestamp: 19952 (1970-01-01T05:32:32Z) 0x1100| 00| .| id_prefix_size: 0 0x110f-0x1110 (1) 0x1110|01 |. | mode: "fingerprint" (1) 0x1110-0x1111 (1) 0x1110| bd 82 0c d0 b9 b5 c1 5a 30 9b ec 6f a7 ae 53| .......Z0..o..S| fingerprint: "bd820cd0b9b5c15a309bec6fa7ae530a" (raw bits) 0x1111-0x1121 (16) 0x1120|0a |. | | | | [195]{}: bound 0x1121-0x1134 (19) -0x1120| 0d | . | timestamp: 19964 (13) (1970-01-01 05:32:44 UTC) 0x1121-0x1122 (1) +0x1120| 0d | . | timestamp_delta: 12 (13) 0x1121-0x1122 (1) + | | | timestamp: 19964 (1970-01-01T05:32:44Z) 0x1120| 00 | . | id_prefix_size: 0 0x1122-0x1123 (1) 0x1120| 01 | . | mode: "fingerprint" (1) 0x1123-0x1124 (1) 0x1120| 2b 91 a0 10 5f 4c a6 90 3d 3b a1 d6| +..._L..=;..| fingerprint: "2b91a0105f4ca6903d3ba1d615e52216" (raw bits) 0x1124-0x1134 (16) 0x1130|15 e5 22 16 |..". | | | | [196]{}: bound 0x1134-0x1147 (19) -0x1130| 0d | . | timestamp: 19976 (13) (1970-01-01 05:32:56 UTC) 0x1134-0x1135 (1) +0x1130| 0d | . | timestamp_delta: 12 (13) 0x1134-0x1135 (1) + | | | timestamp: 19976 (1970-01-01T05:32:56Z) 0x1130| 00 | . | id_prefix_size: 0 0x1135-0x1136 (1) 0x1130| 01 | . | mode: "fingerprint" (1) 0x1136-0x1137 (1) 0x1130| 18 37 44 10 7b c1 b3 06 6a| .7D.{...j| fingerprint: "183744107bc1b3066a12c22d0dabe511" (raw bits) 0x1137-0x1147 (16) 0x1140|12 c2 2d 0d ab e5 11 |..-.... | | | | [197]{}: bound 0x1147-0x115a (19) -0x1140| 0d | . | timestamp: 19988 (13) (1970-01-01 05:33:08 UTC) 0x1147-0x1148 (1) +0x1140| 0d | . | timestamp_delta: 12 (13) 0x1147-0x1148 (1) + | | | timestamp: 19988 (1970-01-01T05:33:08Z) 0x1140| 00 | . | id_prefix_size: 0 0x1148-0x1149 (1) 0x1140| 01 | . | mode: "fingerprint" (1) 0x1149-0x114a (1) 0x1140| f1 4b a3 a9 3a 86| .K..:.| fingerprint: "f14ba3a93a86e8559cdad080bf03b632" (raw bits) 0x114a-0x115a (16) 0x1150|e8 55 9c da d0 80 bf 03 b6 32 |.U.......2 | | | | [198]{}: bound 0x115a-0x116d (19) -0x1150| 00 | . | timestamp: 0 (infinity) 0x115a-0x115b (1) +0x1150| 00 | . | timestamp_delta: -1 (0) (infinity) 0x115a-0x115b (1) + | | | timestamp: 0 (infinity) 0x1150| 00 | . | id_prefix_size: 0 0x115b-0x115c (1) 0x1150| 01 | . | mode: "fingerprint" (1) 0x115c-0x115d (1) 0x1150| a9 79 ff| .y.| fingerprint: "a979ff1bf1e404a68bc3339f18a16dea" (raw bits) 0x115d-0x116d (16) diff --git a/format/negentropy/testdata/smalljustfingerprints.fqtest b/format/negentropy/testdata/smalljustfingerprints.fqtest index 0727f7d03..454e253f7 100644 --- a/format/negentropy/testdata/smalljustfingerprints.fqtest +++ b/format/negentropy/testdata/smalljustfingerprints.fqtest @@ -3,108 +3,124 @@ $ fq -d negentropy dv smalljustfingerprints 0x000|61 |a | version: 97 0x0-0x1 (1) | | | bounds[0:16]: 0x1-0x140 (319) | | | [0]{}: bound 0x1-0x18 (23) -0x000| 86 b7 ab b4 7c | ....| | timestamp: 1726667387 (1726667388) (2024-09-18 13:49:47 UTC) 0x1-0x6 (5) +0x000| 86 b7 ab b4 7c | ....| | timestamp_delta: 1726667387 (1726667388) 0x1-0x6 (5) + | | | timestamp: 1726667387 (2024-09-18T13:49:47Z) 0x000| 00 | . | id_prefix_size: 0 0x6-0x7 (1) 0x000| 01 | . | mode: "fingerprint" (1) 0x7-0x8 (1) 0x000| 10 8e 42 06 82 8e e3 bf| ..B.....| fingerprint: "108e4206828ee3bf34258465809a337c" (raw bits) 0x8-0x18 (16) 0x010|34 25 84 65 80 9a 33 7c |4%.e..3| | | | | [1]{}: bound 0x18-0x2b (19) -0x010| 6c | l | timestamp: 1726667494 (108) (2024-09-18 13:51:34 UTC) 0x18-0x19 (1) +0x010| 6c | l | timestamp_delta: 107 (108) 0x18-0x19 (1) + | | | timestamp: 1726667494 (2024-09-18T13:51:34Z) 0x010| 00 | . | id_prefix_size: 0 0x19-0x1a (1) 0x010| 01 | . | mode: "fingerprint" (1) 0x1a-0x1b (1) 0x010| 9a 68 e3 7b 17| .h.{.| fingerprint: "9a68e37b177a50b3ae7164ccc628b962" (raw bits) 0x1b-0x2b (16) 0x020|7a 50 b3 ae 71 64 cc c6 28 b9 62 |zP..qd..(.b | | | | [2]{}: bound 0x2b-0x3f (20) -0x020| 02 | . | timestamp: 1726667495 (2) (2024-09-18 13:51:35 UTC) 0x2b-0x2c (1) +0x020| 02 | . | timestamp_delta: 1 (2) 0x2b-0x2c (1) + | | | timestamp: 1726667495 (2024-09-18T13:51:35Z) 0x020| 01 | . | id_prefix_size: 1 0x2c-0x2d (1) 0x020| 14 | . | id_prefix: "14" (raw bits) 0x2d-0x2e (1) 0x020| 01 | . | mode: "fingerprint" (1) 0x2e-0x2f (1) 0x020| 9c| .| fingerprint: "9c1381281c9e3849d5fbd514b7bb65ad" (raw bits) 0x2f-0x3f (16) 0x030|13 81 28 1c 9e 38 49 d5 fb d5 14 b7 bb 65 ad |..(..8I......e. | | | | [3]{}: bound 0x3f-0x53 (20) -0x030| 01| .| timestamp: 1726667495 (1) (2024-09-18 13:51:35 UTC) 0x3f-0x40 (1) +0x030| 01| .| timestamp_delta: 0 (1) 0x3f-0x40 (1) + | | | timestamp: 1726667495 (2024-09-18T13:51:35Z) 0x040|01 |. | id_prefix_size: 1 0x40-0x41 (1) 0x040| e6 | . | id_prefix: "e6" (raw bits) 0x41-0x42 (1) 0x040| 01 | . | mode: "fingerprint" (1) 0x42-0x43 (1) 0x040| fb f7 45 1f 5d 22 e7 fa 36 ae 3e 91 0e| ..E.]"..6.>..| fingerprint: "fbf7451f5d22e7fa36ae3e910e9f5215" (raw bits) 0x43-0x53 (16) 0x050|9f 52 15 |.R. | | | | [4]{}: bound 0x53-0x67 (20) -0x050| 02 | . | timestamp: 1726667496 (2) (2024-09-18 13:51:36 UTC) 0x53-0x54 (1) +0x050| 02 | . | timestamp_delta: 1 (2) 0x53-0x54 (1) + | | | timestamp: 1726667496 (2024-09-18T13:51:36Z) 0x050| 01 | . | id_prefix_size: 1 0x54-0x55 (1) 0x050| 57 | W | id_prefix: "57" (raw bits) 0x55-0x56 (1) 0x050| 01 | . | mode: "fingerprint" (1) 0x56-0x57 (1) 0x050| 4a 1b 26 85 3e 06 e9 c3 2e| J.&.>....| fingerprint: "4a1b26853e06e9c32eb41b1df4f9ab30" (raw bits) 0x57-0x67 (16) 0x060|b4 1b 1d f4 f9 ab 30 |......0 | | | | [5]{}: bound 0x67-0x7b (20) -0x060| 02 | . | timestamp: 1726667497 (2) (2024-09-18 13:51:37 UTC) 0x67-0x68 (1) +0x060| 02 | . | timestamp_delta: 1 (2) 0x67-0x68 (1) + | | | timestamp: 1726667497 (2024-09-18T13:51:37Z) 0x060| 01 | . | id_prefix_size: 1 0x68-0x69 (1) 0x060| e6 | . | id_prefix: "e6" (raw bits) 0x69-0x6a (1) 0x060| 01 | . | mode: "fingerprint" (1) 0x6a-0x6b (1) 0x060| 18 40 e2 73 c8| .@.s.| fingerprint: "1840e273c84bb1344f1d4e15d9aa6792" (raw bits) 0x6b-0x7b (16) 0x070|4b b1 34 4f 1d 4e 15 d9 aa 67 92 |K.4O.N...g. | | | | [6]{}: bound 0x7b-0x8e (19) -0x070| 02 | . | timestamp: 1726667498 (2) (2024-09-18 13:51:38 UTC) 0x7b-0x7c (1) +0x070| 02 | . | timestamp_delta: 1 (2) 0x7b-0x7c (1) + | | | timestamp: 1726667498 (2024-09-18T13:51:38Z) 0x070| 00 | . | id_prefix_size: 0 0x7c-0x7d (1) 0x070| 01 | . | mode: "fingerprint" (1) 0x7d-0x7e (1) 0x070| 6f 12| o.| fingerprint: "6f12ee2340888653f10b0ec2d438ac9f" (raw bits) 0x7e-0x8e (16) 0x080|ee 23 40 88 86 53 f1 0b 0e c2 d4 38 ac 9f |.#@..S.....8.. | | | | [7]{}: bound 0x8e-0xa2 (20) -0x080| 01 | . | timestamp: 1726667498 (1) (2024-09-18 13:51:38 UTC) 0x8e-0x8f (1) +0x080| 01 | . | timestamp_delta: 0 (1) 0x8e-0x8f (1) + | | | timestamp: 1726667498 (2024-09-18T13:51:38Z) 0x080| 01| .| id_prefix_size: 1 0x8f-0x90 (1) 0x090|84 |. | id_prefix: "84" (raw bits) 0x90-0x91 (1) 0x090| 01 | . | mode: "fingerprint" (1) 0x91-0x92 (1) 0x090| 56 d2 d7 96 f4 df f0 04 ab 36 9b 9b cf a4| V........6....| fingerprint: "56d2d796f4dff004ab369b9bcfa4d81e" (raw bits) 0x92-0xa2 (16) 0x0a0|d8 1e |.. | | | | [8]{}: bound 0xa2-0xb6 (20) -0x0a0| 02 | . | timestamp: 1726667499 (2) (2024-09-18 13:51:39 UTC) 0xa2-0xa3 (1) +0x0a0| 02 | . | timestamp_delta: 1 (2) 0xa2-0xa3 (1) + | | | timestamp: 1726667499 (2024-09-18T13:51:39Z) 0x0a0| 01 | . | id_prefix_size: 1 0xa3-0xa4 (1) 0x0a0| 87 | . | id_prefix: "87" (raw bits) 0xa4-0xa5 (1) 0x0a0| 01 | . | mode: "fingerprint" (1) 0xa5-0xa6 (1) 0x0a0| 3f 1b 3c 8a 01 98 00 d5 76 4e| ?.<.....vN| fingerprint: "3f1b3c8a019800d5764e2de6bdfd2785" (raw bits) 0xa6-0xb6 (16) 0x0b0|2d e6 bd fd 27 85 |-...'. | | | | [9]{}: bound 0xb6-0xca (20) -0x0b0| 02 | . | timestamp: 1726667500 (2) (2024-09-18 13:51:40 UTC) 0xb6-0xb7 (1) +0x0b0| 02 | . | timestamp_delta: 1 (2) 0xb6-0xb7 (1) + | | | timestamp: 1726667500 (2024-09-18T13:51:40Z) 0x0b0| 01 | . | id_prefix_size: 1 0xb7-0xb8 (1) 0x0b0| 14 | . | id_prefix: "14" (raw bits) 0xb8-0xb9 (1) 0x0b0| 01 | . | mode: "fingerprint" (1) 0xb9-0xba (1) 0x0b0| 7c aa f0 ac b5 df| |.....| fingerprint: "7caaf0acb5dfe249aa0f7f742402168a" (raw bits) 0xba-0xca (16) 0x0c0|e2 49 aa 0f 7f 74 24 02 16 8a |.I...t$... | | | | [10]{}: bound 0xca-0xde (20) -0x0c0| 01 | . | timestamp: 1726667500 (1) (2024-09-18 13:51:40 UTC) 0xca-0xcb (1) +0x0c0| 01 | . | timestamp_delta: 0 (1) 0xca-0xcb (1) + | | | timestamp: 1726667500 (2024-09-18T13:51:40Z) 0x0c0| 01 | . | id_prefix_size: 1 0xcb-0xcc (1) 0x0c0| 83 | . | id_prefix: "83" (raw bits) 0xcc-0xcd (1) 0x0c0| 01 | . | mode: "fingerprint" (1) 0xcd-0xce (1) 0x0c0| e7 b8| ..| fingerprint: "e7b8c4decb1eae455ca5714281e32453" (raw bits) 0xce-0xde (16) 0x0d0|c4 de cb 1e ae 45 5c a5 71 42 81 e3 24 53 |.....E\.qB..$S | | | | [11]{}: bound 0xde-0xf2 (20) -0x0d0| 02 | . | timestamp: 1726667501 (2) (2024-09-18 13:51:41 UTC) 0xde-0xdf (1) +0x0d0| 02 | . | timestamp_delta: 1 (2) 0xde-0xdf (1) + | | | timestamp: 1726667501 (2024-09-18T13:51:41Z) 0x0d0| 01| .| id_prefix_size: 1 0xdf-0xe0 (1) 0x0e0|7a |z | id_prefix: "7a" (raw bits) 0xe0-0xe1 (1) 0x0e0| 01 | . | mode: "fingerprint" (1) 0xe1-0xe2 (1) 0x0e0| 40 9c 22 63 6b 09 73 62 df 12 5d df fb 6d| @."ck.sb..]..m| fingerprint: "409c22636b097362df125ddffb6d9443" (raw bits) 0xe2-0xf2 (16) 0x0f0|94 43 |.C | | | | [12]{}: bound 0xf2-0x106 (20) -0x0f0| 02 | . | timestamp: 1726667502 (2) (2024-09-18 13:51:42 UTC) 0xf2-0xf3 (1) +0x0f0| 02 | . | timestamp_delta: 1 (2) 0xf2-0xf3 (1) + | | | timestamp: 1726667502 (2024-09-18T13:51:42Z) 0x0f0| 01 | . | id_prefix_size: 1 0xf3-0xf4 (1) 0x0f0| 5b | [ | id_prefix: "5b" (raw bits) 0xf4-0xf5 (1) 0x0f0| 01 | . | mode: "fingerprint" (1) 0xf5-0xf6 (1) 0x0f0| f3 32 20 8b ee 82 ac f8 ed 92| .2 .......| fingerprint: "f332208bee82acf8ed922853ee54057f" (raw bits) 0xf6-0x106 (16) 0x100|28 53 ee 54 05 7f |(S.T.. | | | | [13]{}: bound 0x106-0x119 (19) -0x100| 02 | . | timestamp: 1726667503 (2) (2024-09-18 13:51:43 UTC) 0x106-0x107 (1) +0x100| 02 | . | timestamp_delta: 1 (2) 0x106-0x107 (1) + | | | timestamp: 1726667503 (2024-09-18T13:51:43Z) 0x100| 00 | . | id_prefix_size: 0 0x107-0x108 (1) 0x100| 01 | . | mode: "fingerprint" (1) 0x108-0x109 (1) 0x100| fc 3e 51 fd b0 b9 29| .>Q...)| fingerprint: "fc3e51fdb0b92966e38017f795990385" (raw bits) 0x109-0x119 (16) 0x110|66 e3 80 17 f7 95 99 03 85 |f........ | | | | [14]{}: bound 0x119-0x12d (20) -0x110| 01 | . | timestamp: 1726667503 (1) (2024-09-18 13:51:43 UTC) 0x119-0x11a (1) +0x110| 01 | . | timestamp_delta: 0 (1) 0x119-0x11a (1) + | | | timestamp: 1726667503 (2024-09-18T13:51:43Z) 0x110| 01 | . | id_prefix_size: 1 0x11a-0x11b (1) 0x110| cc | . | id_prefix: "cc" (raw bits) 0x11b-0x11c (1) 0x110| 01 | . | mode: "fingerprint" (1) 0x11c-0x11d (1) 0x110| 42 8c e0| B..| fingerprint: "428ce0c96d49f15b50143e4fb228cb93" (raw bits) 0x11d-0x12d (16) 0x120|c9 6d 49 f1 5b 50 14 3e 4f b2 28 cb 93 |.mI.[P.>O.(.. | | | | [15]{}: bound 0x12d-0x140 (19) -0x120| 00 | . | timestamp: 0 (infinity) 0x12d-0x12e (1) +0x120| 00 | . | timestamp_delta: -1 (0) (infinity) 0x12d-0x12e (1) + | | | timestamp: 0 (infinity) 0x120| 00 | . | id_prefix_size: 0 0x12e-0x12f (1) 0x120| 01| .| mode: "fingerprint" (1) 0x12f-0x130 (1) 0x130|31 71 2d 30 e5 29 6a 7a 45 d0 7b ba 45 2d 61 cd|1q-0.)jzE.{.E-a.| fingerprint: "31712d30e5296a7a45d07bba452d61cd" (raw bits) 0x130-0x140 (16) From e3c7b1a34b395f0d5329243ac8517d3315dca86c Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Thu, 19 Sep 2024 21:47:09 -0300 Subject: [PATCH 4/4] negentropy: another test from a different source, another doc entry, comments on source of test samples. --- doc/formats.md | 6 + format/negentropy/negentropy.go | 10 +- format/negentropy/negentropy.md | 6 + .../testdata/bigmessagewitheverything.fqtest | 1 + .../testdata/smalljustfingerprints.fqtest | 1 + format/negentropy/testdata/strfrybigmessage | Bin 0 -> 13883 bytes .../testdata/strfrybigmessage.fqtest | 1392 +++++++++++++++++ 7 files changed, 1410 insertions(+), 6 deletions(-) create mode 100644 format/negentropy/testdata/strfrybigmessage create mode 100644 format/negentropy/testdata/strfrybigmessage.fqtest diff --git a/doc/formats.md b/doc/formats.md index 92dbee9af..83b843af5 100644 --- a/doc/formats.md +++ b/doc/formats.md @@ -1026,6 +1026,12 @@ Negentropy message. $ fq -d negentropy dd file ``` +### Or from hex + +``` +$ echo '6186b7abb47c0001108e4206828ee3bf34258465809a337c6c00019a68e37b177a50b3ae7164ccc628b962020114019c1381281c9e3849d5fbd514b7bb65ad0101e601fbf7451f5d22e7fa36ae3e910e9f5215020157014a1b26853e06e9c32eb41b1df4f9ab300201e6011840e273c84bb1344f1d4e15d9aa67920200016f12ee2340888653f10b0ec2d438ac9f0101840156d2d796f4dff004ab369b9bcfa4d81e020187013f1b3c8a019800d5764e2de6bdfd2785020114017caaf0acb5dfe249aa0f7f742402168a01018301e7b8c4decb1eae455ca5714281e3245302017a01409c22636b097362df125ddffb6d944302015b01f332208bee82acf8ed922853ee54057f020001fc3e51fdb0b92966e38017f7959903850101cc01428ce0c96d49f15b50143e4fb228cb9300000131712d30e5296a7a45d07bba452d61cd' | fq -R 'from_hex | negentropy | dd' +``` + ### Check how many ranges the message has and how many of those are of 'fingerprint' mode ``` diff --git a/format/negentropy/negentropy.go b/format/negentropy/negentropy.go index 8020de3e8..db22e03a7 100644 --- a/format/negentropy/negentropy.go +++ b/format/negentropy/negentropy.go @@ -119,15 +119,13 @@ func decodeNegentropyMessage(d *decode.D) any { } func decodeVarInt(d *decode.D) int64 { - var res int64 = 0 - + res := 0 for { - b := d.U8() - res = (res << 7) | (int64(b) & 127) + b := int(d.U8()) + res = (res << 7) | (b & 127) if (b & 128) == 0 { break } } - - return res + return int64(res) } diff --git a/format/negentropy/negentropy.md b/format/negentropy/negentropy.md index fe02f0fc1..61577a3c4 100644 --- a/format/negentropy/negentropy.md +++ b/format/negentropy/negentropy.md @@ -4,6 +4,12 @@ $ fq -d negentropy dd file ``` +### Or from hex + +``` +$ echo '6186b7abb47c0001108e4206828ee3bf34258465809a337c6c00019a68e37b177a50b3ae7164ccc628b962020114019c1381281c9e3849d5fbd514b7bb65ad0101e601fbf7451f5d22e7fa36ae3e910e9f5215020157014a1b26853e06e9c32eb41b1df4f9ab300201e6011840e273c84bb1344f1d4e15d9aa67920200016f12ee2340888653f10b0ec2d438ac9f0101840156d2d796f4dff004ab369b9bcfa4d81e020187013f1b3c8a019800d5764e2de6bdfd2785020114017caaf0acb5dfe249aa0f7f742402168a01018301e7b8c4decb1eae455ca5714281e3245302017a01409c22636b097362df125ddffb6d944302015b01f332208bee82acf8ed922853ee54057f020001fc3e51fdb0b92966e38017f7959903850101cc01428ce0c96d49f15b50143e4fb228cb9300000131712d30e5296a7a45d07bba452d61cd' | fq -R 'from_hex | negentropy | dd' +``` + ### Check how many ranges the message has and how many of those are of 'fingerprint' mode ``` diff --git a/format/negentropy/testdata/bigmessagewitheverything.fqtest b/format/negentropy/testdata/bigmessagewitheverything.fqtest index dfc74448d..5ee038c57 100644 --- a/format/negentropy/testdata/bigmessagewitheverything.fqtest +++ b/format/negentropy/testdata/bigmessagewitheverything.fqtest @@ -1,3 +1,4 @@ +# message produced by https://github.com/nbd-wtf/go-nostr/blob/e9e96be95e181ccf22e3f54965440147520cea88/nip77/negentropy/whatever_test.go $ fq -d negentropy dv bigmessagewitheverything |00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: bigmessagewitheverything (negentropy) 0x0-0x116d (4461) 0x0000|61 |a | version: 97 0x0-0x1 (1) diff --git a/format/negentropy/testdata/smalljustfingerprints.fqtest b/format/negentropy/testdata/smalljustfingerprints.fqtest index 454e253f7..b7dcef59d 100644 --- a/format/negentropy/testdata/smalljustfingerprints.fqtest +++ b/format/negentropy/testdata/smalljustfingerprints.fqtest @@ -1,3 +1,4 @@ +# message produced by https://github.com/nbd-wtf/go-nostr/blob/e9e96be95e181ccf22e3f54965440147520cea88/nip77/negentropy/whatever_test.go $ fq -d negentropy dv smalljustfingerprints |00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: smalljustfingerprints (negentropy) 0x0-0x140 (320) 0x000|61 |a | version: 97 0x0-0x1 (1) diff --git a/format/negentropy/testdata/strfrybigmessage b/format/negentropy/testdata/strfrybigmessage new file mode 100644 index 0000000000000000000000000000000000000000..58d8efe7f5abb3a4caa0c15a93805c958f3d98b7 GIT binary patch literal 13883 zcmV-BHpIzc6952)x0I9w00J9T*SOi1pq?HF6b&xy5mC^p!+(nwYH#xQzb7?3lUrVJ zp2Fe{b5z|_ZUrguQ?fWo**}g3s2ztm*MfJ!IY^(Cxvz5t*MhPhB1`KwG`~dFo-=bx zN0iNDgG0PBbgq^P>IMUK4`86iVLtp2R-m!-UZH-eNQRuC=F}5CMpa#uaP}-N6#JR_ zBAZ$c8*$-$8_?k(jZSDH-|!(vQsgSlgEH2`}8 z)LZKw)5=%H5?D}=J|~hL5Xl8+T2L={vve$F%yVsytgcSCx?&G- zUO`8gWjg*)3yMXs(P?2giU^#r9wh5V2k6)qScr}W?7B+|A(r;vf(EcRqK}eLX+7~- z8K3i7gzrEFw)vDDUzH=s6LnJQ9NB#9TE4zhxpxtynV#6HB%v0k(WrBlbwuzuBA3u$ z4x@{pYd03IqEwJj93w0iHCG=lg(_l~(i&Li>QHiQ5SL2edphcaKG{Xc z1#_nQed{7QeB;&j1t(P-tQEOzs>EYa|7aI(9vE~2Kd*`gfCYa2G7YRLFaV%{%X=7c z>o0epf2M@S=1#ObrPhX+ziW+EqV3ycN3f7exj*lC-da;>HPQaAO2Fg5%Bd7+EU7jC zzQ3E=*eRJbvFzG{Iw>KB9rUBHddXyxShv0IdK+?$c#xghgj(6m7UbB7AsU4bn8K0k z3q;Fl2-s{k)>V}09FWb#x_9DRT`LWk0~HWcZ7f9)z%s5Kz-qzB%ZatUeo(grm0`k} z4u2x2jUra_?9|&V{vG14DPKf1A0T%^d1(HyP0cHYuCwZ{0Pyx7D2mrnsUXOvcZwMy z0^c8*m%GxG@AEVD5Tg{)At0bMCca-iUP8GX4qt02yP0a$#-i&Zs4xO)tEHdf4WL!$ zVWG()pKIn+o_eoyL;OgEqHxdtxE)^bifvn|!wT5KaQFLMyE)>qu2 z(svJ(TLF9Xv&o2&-yh3ZXu|`7hpIXgnjbO|w2@ct=eo+d|0Y27(dA=DGGP9!#f!3K zZ0`|0*geV{>vF!v+X5+873?_v`3cgCslK7e)_5Z-&SF*KFH8OVPggbgkm`I=Fb4Sx z0c!#q0;F#Eh1e~@fdkWaG|$(c5aMJ$&kduZ%#OYhD#3=+ ztoA<~b~#es(fu9uEbTvv6tiy4@mY%BS4UA+MaT_{e5|e0HaMylLFZq`MB`K>Jz0$% zI2d?)Ja*A!S_BoXXes~m;E8iyy@qPvIep<_LN>`%%X^so|eWjue@qp75 zvBUwBNvMM&*_Up&tDtd4s8Gb`6s%Txg8&XN(!Yb|97r+v^t=k_+C)pjp?DbR?-FlH zW74}BgV$Lfir%V~pmWOa$OR8@1-KP&Z76`0^C!$YslcJN_sy2elVu^rtPa`l;G2qygY}0 zZBzwFof;_UkPpm-kMD~cXVd)ldWCgjxQ)n?`iYC}UK=PH7ycIf5U*I@%5 zuYqVr%N?=Sp(mK=6-LKq;;DO25QxA>rZ-*WD>B#1CwxX2GJ-BSxrOmaW?^po)HFfpzCYHMLx#!EJ z6(Of`VSgw0-Tw$cVEPZg$V%E2oO`}UdsEYblId;cu;QqQW0EO<+JJYGHPB(KaVN^{_DYgtsGu zJ%~UH$z%jA799D|qP&K_6sG+LN{P>yA?ppNZ*PnltCIJ?%@>3Pom25-f^ZZda75{u zJG4fkkWGkT##!B}Se5^qoR9P}3?Pb9*S~VzmDhx2J9ME|%XhuUHNc7{#GXNglp9gw z(ea{4GK^OdT^+KXv~&$T&*KZS-96ag1E6a7|D!688a2?5OR*Sl+$NCHM5H)h7L3qBVy*WgxY+IXv)&>? zEF0#{0)+kb7UqauWB`TqIsCQ>AUq`O?ldgIGWMtKbZ5a1zjinHIzTS%M=pXWXr_J; z0u9wGk$?*IHu}urdZ>33V_U^lL-)m0&#eAhM}MHjyVLI93bQg8W{z{CY))eQGg;Z9MI0ISx+)Lc*-qy>)# z`Uu`KIP(of&eOeh={fVgo>*u)#k{Ci_00CEO=|T?rxU`v|DP~ac|&GN(N@1T5H`mr zE6c?%qH%Iolm{0exEQkbK?qiukkA&1?xWW{$@!~N;SNK0Vr9{FyVe@Qmo1abkl>`` z3%bVVDX+lAX^- zX`#kjx_#l0Hb+sE9BCSrB6uJsf0f5Up4mU{`jm7y+q6_$KfpK%KX?^__Gt6bH-qi1 z5~?@jra43Xa6>FF*+Pp-j)Pzu^e3&uh|&S^%#^pt(OWbA$Aff_r8rD2#%c0v%(+XS z?7gg3_v;0r?5~~3O%oxb3@PzVDu()LKjlrqqSKN}u z)CsQov=#Nc_?yrtP)OiqcvMBZ1q%W80vo&9qAn^lEPI)ldpSx;gL+g|a21&LpGF1+ z4H!PqcQ(mHN~x^>gTHYkYBVF9j`k&G#7+5gZ{ZUq&9c8@Hc{Wk=fUgbLQ{wUo!|Na z(ozL4EqEgLw2an*4T-5v4Cd#6CL3(w@v3${rIQ#(h3sg`ISGT^COnK1=~AUy7h>`? zs;m$M!$9+iOb5`$LV@B|(yO6Wg0|hibGRJ<-g5L*0~RRGnw#x-dEY)Hi^0w|dYVPO zzI3vaMkC=Y5!UylxMt*d9aoBe9n4^?B}2(zDy90^AiSoEV~U zs4*Qo`Oz2qejHX}`vXN1q3IxBUFBSjNDaj2WZPEWwtIRs9bI%GXgY*}#6J(=AmIj$ zAUX*BlI-{NIi3heBL8`R$41oHp}saVh7Z-)gkT%vsYMcVEG_Fn`2ZLfL@TaG#g+`q z;7ZWpO0Y*!9E%&wLgyVn@12Cb*#o%9kqarSXg&{f*;-@yg8zz=0s#a!R=*<*XG)M5 z&d0>m0lTntKPA1$E6dUHWd^A`a#Je&tHCvyrYnBiTUUeu04vR@PJKCe`@uFfg)7G3A;C5$E^-Z|&qNDh!#4snaYbpPfg!0Ut%#d*SIJYeQUG0e^%5rAs|uhJ!G9P*V)`^L5V z#}8kkk^BUDO>dw?xnrUF-f^R))V6aL{I_;Ee?&2OE`vM!v)zhiZa2Eo$m7~iM# z&ly|->hKi-L;@T3^{xQjs?zdO3>oo0T-|p`oLcMDY?@db9vQ6DQJXBnQ=2}nXhk@#(me?@*?;TjG4a` z5mw>?Ln3tBi$p>h|39N*3-DdKaH**bBNbHPl%~2yByB(0O+!vd71HSzpE;B9i;(WYf9jO5UNidbo*fUMtN*wG3H72r`t-b*gyk{D>)*A zMytFx9Vl-mkcsj*l#dD2%koN%5`C6_na1T;cA@7bh9h=p=Ze576*M629l|x{PEjiv zT-a!x%Bn`*wczVMZ~Xf-;njILs}JzTT!(n|kCZU6x z&TQjGd6cvpw&(u_vhI++PxE_k?Zy!G-FXg6;PH!H+6r$Vpe^L9-LfpG0^F{TbOAP) zQaltxaFvJ7(+gRC2VenLmYMaF+3Gd*^t7K%;xsPG|@VvsCjPo<=i)IUTNvIp0p=mx= zu49}g&^j;0TQhyZ0Kx{<54kYUip+wQez3KgH(CCHbyHiEMRj51?_H+%Pi5QIuhJqh zgYFl@d4H5?j%lvyIC|_+1SPTOCm#DoFvUyYq}~zNuxV1W5Y+_Sl@zx0B8hR%9oDUA zFbk6NPp^aHCV{{4$ISS)tPUCMZO^tBMjBUTxeH~Ec$-v%N=qOAFhfBMiw}q!T&O@Q zhSXEqmpelkIF|@%TXu>Y7}!=8S2yuEmR2^FC4pB8s`%V6wKf`!ZRynJ69W{pm-}WI zzN%N|M&Vc=S^NS04Z*apDm)Y{DFKi70yN9TRa5FG?u>lr+Rev@=&DD#gWPc(A8qe? z7s&JILO)rXuORY3M3kis=*cGc@9&1y0@tjg`mj0B%JaQCqw~=hUsE|t0)Tn~8$`f8 z%1=vf_kBcebDGoz(iF)5AZQk8o)q=9uGY67r)PNvVMYeLh8geiX z{#wRe{E53h&d3gYPM)f5U-H`alh9Qhm9h3J;b#BS!f-6lF2kT6;4>bQZ=$RGqwdgu z?b$Br>i<<`wVJ{=wm5k{hqlh zq!B5~qC^ecSq+$_h^E97G0I$oS|U~$mP9TB`}oxy={2_%-GK`Q3wbf9vlsaRq02PF zEnlP>M4`yNFO&Rrt^}u8^O#+^JWjSHL%ZTFzGb$*Zx~f)dL`+B;_~(2zjmRBhD5YiXk&=8Kk^N(h{AyaOZPUz|hfrwE=d|7% zwkP8yA0+J>Z8VDAz$V~%b7oix#Puj9)K^|zsdB(60Zb56*SOz(&3W!Tg<4LXHK6Kt zMw!5jE?6UR>kgnkg`iUEr)~`^^4`1{Tj8NR*y{fvQiW_EA!x0O&QaLv>;p!R`U=yT zEpQh{Rpjp%U9kyxD4p`dK5{R;yi`b<;P?w;#i81q*o_p%@n+03WX<~<*r0p|tB3RBJYQtY{I#fXj0o#ms@?#i_B!{s+$!S4q@mk8MtLi6Lb)}DJ z?Ku=M#4(Wn+%)PN#-<3c3x;{_+9K41L$hmJ<<3gH{U@zv;poA;l;n!H`9w$%8uIs) zIRl<$vwLn#lKf?rs>>v)cG<#i#-6&OlWP&RB3oy>diq%KL1f6J4#!HkMy&0(rcuu@ zXw!eIfQu^W97G=v9&VBkvfQq=Ibd)#fGT zuUxNkLL^w5G^ef&$bsMIv}gb+yJa zMDaoIE*A(6QIhV4FYduLzaX!LyVJxTf_YR?o5`oTYmi{%`z!7ZS`ubMvV zEh4^3H&1;JT4=LZA_DH^nvZP&)SCZ;KRbW;C3hya74fHR@kWBJbOw#PWs2`WSB;P2 z!7xwxcPGE~F_}0%pl~P9s9S^0)w%{~p5;$bPm}zul8>7q!=4bfO1#Oa^Dx>{RlA3; z%8k!I5%LC+&FK(~oLHG(>5M5*Yoz5~GXu`9`Lv6QY@L5`bpE_`kjC?efPqSE$*KyT z9MeR;`@|{ii!PSn-Q(9<-TFrI@j!(nXVD2>vtxQQvXQ2d-8lt!Bx9}#!Q*n%=j7JQ zH+oq9>|KtheVc#;XW##3N$_n zQ3Annqhv4+$Re9rtxOuG=1~OnH0@eqtC0|Zv+TIY!S~&PK0z2a$bL*-c_0t*8_&I` ztWq2ME%hgx$3b#rk&zVvV*(rWzt9*9Z}NxXmsE>347^qrkZVj2I{|+gL)IHhtpgwV zH!XCW7&h{?(%u_Ku>cD8gbd!?sBk*S_k^(Au4wHFoQuN3(3m1IOCWVsTs`%tEMgkf zGUbxj%}TfApI>tsK3V=wP<8^YGWgr&a6rD6O(}!rwvVeQoJ35$#Wyn|ZZv^lD4u%% z|F3+f`r4o9rghyrtvOn!a~e+*}YSiUAhIO=x%Jy=5NX!^w~=@PbbGfgo^LHot9(N9qcfE#>XThc+j|_j`CG)gsaWMQ2 zUHAVhJZ9-r^r9F?!vy@;?CX}MdoKm4oNdu+Wf_8RCr#hs(bnGWbm!ZWS+=n)(Gl#g zg)1v4fnv^xB7B1$U#}f1njC(kCqq%pFn4hfi_dA$cI=Z(7c8)f<^+RMM&_oryTQ0ngIm-ZD8EQNc<-g4V4biMtWOq=y|a24xzr{S5g;Fk z8p;w4yY`Si=x+F~Bj>q0@{?a5Zih(e*B;$v+?6fatKFMMz`A9vy%RRj~UWhHJCg0$cHE%CQ zJVUI$HjnHydcTl1LTRB}Ei|IQ{<*1SVJQDq1h=+AOr@H{SN5XGNPt$;5MGGD8D1I7 zN$@>)T@oR2Fsa4gTLTX96)5y7?!ug2b_E4iMDg1}2>{&;st>_qIS1iI*C^-_V;Qw_ zmUO6u*AhGdcbVsz^msDSRGCvuA|%HK8=B=M{W7^j&?P}-x*G2F)hN-Uib)a~nqGGOhxy{d1=qGK6uI5#8b-V~(#Liu z&*-C&$&LS4mkA`r(#i#LUqB{`RZp5uiAHw{sRHGRcyL&mp_!Omq4KPF?y7 z0gnP3V|b2#OkJIVIpB+m%O_B{*u)f!quCZUB*IdD)9PQgZ;DZ^KpTNqB8}r3y|`JH)Qb;ZCPG0wVP{<@ZkcO`g0d07YZQGa|5I_N8rO$yO0k6Od- z@t!p^NhKx(m_PnSn8ZbXxNrIKQ2Ci_+UUmOkeEK@xnvh`J`P ztB=%^!~-i|cS3_mBk1saW2W57L# z4LefC=zpMHMvyk8>;oboZ0l*rixahZ;j_7F((d*V>fV_#^}aT$!L3s3M6+secD^+K zWt}OmT}+C+XZ>Z&?^c>ZP}0=@!F(Q2lte8J~2{ zPp0JbEw*EwMpqLZbBMhm7>p}qrQmpB$=KQTB>6K0O8HU1oW?ibFcFL+Evw^q87VPH zsODg1jwb*!C>x=_vq~go8qos13I|S%s{W0W$5|T78|Hh3k6traE~;W5z^;Zo5FKWQ zk=Yhj^Xc8Bo5JuT!D${zOTV@GKJtJp`DD~wL+s`jHat3lYwhMvafX*xh*Qp1@FylT zN|W()d$<{nC~hM{#i#+`pmJxu;2vmN+s;&5A?Tl5jS8(EoYmoj`PflS5 zTCY!XuIus&_8Ws^9zpxC$rHC>$98OOy*!p%wx|>PQdZ9^P`#OCd4|Bz%WxyN` zGImsqj>9E4tG-IvBJu+GG3jx>y8;`}|Bc(Wo?M~hZ z*8@N~CmlTDCj5jDd)PFzXX!1#N5NyjuVg z=xMMeIn#Y1sJVwdgz1``sx`QEu$Xfy7Q8SvXFSAkxMZ1Kq#q2>U=vuCe(~9OXND44 zW~3sQb_C-dVcXaopZ-EqfL+vVbMtVFN1LP)=r{}~yi~QPdloq376pEK>um08 z1my)48}$>A1@GaD3ib*yDHO4{{iwPTG|%5In9Tyf)vEP;APQxZ89YYvQr!2Dwt}85 z3o;r_(v{V+syZw9dr^2J{}u7%qOHAPewhX5hsN4b{8_^+J;AJRoQtRo9YLJca~jr0 zK?jU#Dt@17QY7FGd8X6V&a$e-@*KZa_+91)6gR)=-#aZ*XpDAUI_mpx3R%yK$0unO z9}kdy;+K{|{7(9&)PL903KO(nb@sa;J{j%wFB9O!sIg);j9pb;##QquR2(~Mu8HzM zZiCj-zeIvy3McI8+CXHeB|fI|UsvV?K5j<_k1`S?_@9@5h>cudl-+pJMCgtst!58> zE@i838+3-Xjy7Ro3ExF_Kt_F`fkqn99^*@algCCekadSNz=fy@ZG&zIUAxW!L2@K6 zNuG6s2G23k=j~>k?smi1?hrAFma2sItA#uWDtMn}fp3V;EmjIok~7uzg@?ghg_wB` zjUFJ#oY)k0uLEl6RKQE%-g)s@b@#wsEs1N7W3|kI11Vz?1bXmm99f}J26;S8)zv$& zZJUy}-;LCc&hM*F>cDIvDHkeZ$+0LcT%SCrZ@SfOjVc>_6_OJh*o>UYF4a4rNq8N{ z-2Atf>DO2E|1SWdWvl$X2$EsNBJG_&xKeLmRnooyh5ygdoe_J;aXbIM!|bB$EtGyg zUs>;7YqY{H_=~7~0P{0^;l_5O&NxF=c^|IrH=UQXJ4&8Gy~r@^Ad#mI#vdu)XqPQX zo$|xJt6n&@gTIVJ4vsiwU`!Q;GW?QVJA|9LNfW$VD@;Ik(Wj^$4VySQ%4g%X zJdu(UZx{)_OyDNpU?Evpk_Q3helTAgLt9(MR7}b(^Xpg{7#IL0K^wz!s@iur z{kU1klg}f4gx~tPgtS+-DLN~ouV*jKzb!9>`|qxNKT>Xz)&<9Q+a{;1WvSL-vxY2` zgMO!i86`xky7`95Dj^Xe>%SnOD>=WP$1ftlmB1}fxFW@U{R7%E4+|~AJr^{B^m*6R z2>>?XXnzNi4e>nd-Xs{!?kVLmR8!uRi}UW&90hOi#TJ zxYvB7XlP5E^g#u~7?e$y_A6w&@iGyiT5TYQyZ5FYm+^iaTU+AJB24B30$L@i?J_eM zI(vSV6%z2T@W(t1(*c~PL@h$s;pO`Lz9tW;9H+C`pn!~gh9G~W-st?jDUl#;C?C3w&7RwkhJN8v zQ6UNbL`>)sSOrr)CqH$wRK_TRy|TikXii{v0V(AOFjpOEVk#+!e{t9ZFBQJJ4InGS z{RNX@^+$5!>=c0Wpsyk8&Lsv(&8O>dVb~385YzX!!g({E{WM89B!Eo)6wfgai#5p; zRlvY+$325`H4P_{ST^XOVvH=V}iU4BC`f}BX@uQUfwvsVOc zy%TsUPNAHvCjqts8&!8voO5e=XS;Fg|63n-56rUIGETH!%5k$u1vPH>@Mi1Ip`Toh zgu(#D_-K5@IHXn;>}Z$#(vB^oLVnLNs&Rqr?1^()I>i$N=BT|-J%Gps|G0Nn6zO~6 z`_`aO8m%yJ=!T%eDZ;F;?Vj<1-g_4|i20PJh?c3s49*BA z0j@z=s_{q^x`ru9TZ7Lq#V6SeIzgvr0c_M=bky-$2hje#E2OAOmpbP2RyUc$b2GKt zY2M-pTtWtSeb_V!0`IxYX1&OL+1SUO;@rQh`2zX{ zXdlX|RWYTij=0{LiVVf$)g4-;{mpD|+heuvmU5(h#`402qW;zN^NML|Sx4zJ=rid$2gHu|LQ0;GPY*=6Hy@ zWf_N&C|Ved${`_fXqNqs#D5vdU^upgph0ngC;6e7M^^u|imKJY$n_^Vw-o>a8@9q3 zUkgqo?O)`8F6>56843#SHe-#)rjvFiPJ)l1lFN*y56fA8FNKCfwJ8W#uXYn=>Ds^> z)6w2e|Z zJo*^at`cpuM%LT=u`y(;sTh*ssjcuSi+^nbvpIaR#`!X(qbsxG}@ENVTMUu;092DVN!-t9qwj+5SMr!bF zakE-dR3ywJ4Zq_nCkMqE>?Yl$fbLiFC@;6B3AzL_DJMXIR@HFUk@i+JU%r2at_?3L z+g6Il)H0mHm6f#g>ZdwqkH?GNAOQhfQGvSRzLmwQaZ6qBhf(_0gY%=sh919>#Judo z(L0B%!|hZYwa0{as0%OXSYFjU@pa~_NR~@|J1qqjs_%8BjR5#W?DPBv8{^)kxMl;K zjrljH(ASL4w4Yy|#Zy0ymEYEA8Nty`q-W4Mb!MT=W*o^4nn49k;T=E`Iz6Vk7^1`gXWM8u z_QUMy41SEtR9B0u!o%xh&4OAmPyiG- z_elSAslJ-TjwsIqzxG~?@bJW#^MI3ZnD`YZtY;)_BfGV4`sY8}V9eeN;7Ec&yHKJ3 zW=6rbNkzj@t!ul`)45#eXz2trTPXHhMxs|rw#cV#k7efN)C*D;AK3LFxqHgK>iPNi zSu~IUq__C!QsF&fbg40u$NvlxS_wKRrP;E9q6+~%0vi#I(8?6f*!dYH9s@GHu{T~w zxw5mi^m;x-ct}D0RzEUcRoes=`H1EoyvTT#auX5(nqsKP?STOBh)heO59>C)IZEWK zck*gvUFOTzH67Anz1zD$AW^|mC}bzKmo_(1D@U!atx%uZNyG%5!OMRVDkyRpQK1@r zVlv+)AYn%odCFqoslZqN_WI2}Qx*Z^I~Xhs%@Z%Aj3#?iDTGheZYQo*r^p zT zYTM3aDrStaQ84H{#*ssAm)14%>TaY8q7`JrX$k zg+y2~yGg--Vmq+7M3In2yzBzl{6m*YVmbElCov%WWZW~U`N7_4{lmREblp=AfD%(5 zXFZzAShCtec4NBGpVz7%ZTxn@dWE0Lc9fI zwR3SZuNtuVr4oLT_$W4=4I7c^@=uuJLyYnNpV_n<-QV+}c-ylH0@2Rz>|-Jo}xqu8Pnvn|PFZu6&EQm6Ma978mJ&(VV(ZbD?E7miN8>L&76;pQg zaWaX?MgRAI{~Ib7{@b!R4^p)&beTB`yTeG`OA|CYZ;_hyR;qN=xJN_759LZA(#YJGh=1_J4 zLH-aOf@Pfoy`W6+A-M|ypaL5`vJ!&ET;h}HnUPl;yQy!+mkxa7)oIno9!0Qo5$}hm;|c?C}y*<3{*mG4!ekrE4No47SA+m zZAO-_5K=y{9c%9g#(V74aMuIz{!Q%la21}as3%a_NLIYY76k6?ugUCD?gJmP>%)rP zo9fF0!V^&UqA6U|{}RafEl zK5UI0wXHoXU;R~6t6Te>XgF)GOPpwpp2dfTwiPNEI41qsaqz2U0II9IXYeR7 z9MOVr-0?)X~%Yrw98@l*~Ufkh1v=r!ZOf>z>k<4iEYLHgE;A zCGdCi!>r95g5^Et&$xAEPAGOBf0Ti0`%9&UoW zh61qsD_l}Iig>^!J4X3TS$Lrwa6ZuOtSTTc^fE@x=oYsLPY{V=&;8dYG7&OjKHo=E zGZwhS6~uMD-7xh{P*pfkzgfe2#Bm@s4>}DUy9{M{?Tk1HVsx10g2v=hB6$oV!;9F4 zmf8JeUylA)^-LkwMOUz%i6Gx&E&zm+I|gX`qp@u^`G zj*9-nTuGQQ_+*Ppj6zdbqwUXl6U|Uha{w||)$#{dqo;K-0f1np+AloEhqfwXWqbt4 zD_aFC&@iSbtmU}G$)|uli_P)R?xud_5qE86t5_|22RHpQ0Pm2u+sEPZ{>LO71_DLw zxTR>>s)1^8a78=_4?s|NFMs<#!l=d_Rvi}9O4za}0`OY^r;hTNUimD8R%~)Cy+N45 zY_O#);8yNP_Fn}|mmy?`8gOEq<=G+1};lsbt^@cGv)MSS}I6*F#x+Ve68`|A-JJU0Toz;|}gD zNoS^Za^geAvVBfj6Nbx9JYOSmSGuTHSR zy&sNpPhEMO$DsJEZ{OH3#;A$Vh#)0E!OS<&TD_8==Y(@BJMJ!foqTYudz%r+I#xZc&U6g*Q|7OqXwv&4-{ed;BF{T7%lI{Qdm z;P+<^c7=T`K3dc<^L$x>m%|LFm5Idh8Guv5VzXh--*kE?&HD=AeyY=Omo0f+z*>d* zp0Q7~1&|5dNJ=F!D)dC5_Hz@GBdJ^>o1=OlLgMv=S}wD6dG8L>X$m*AK@VMix=&nj z=XP$=t3Q3zbkkQ)2g~78jXUZqXC@Ass>EYa@MNQURX@%0Gme0{Qrlf}Dao;D?ZH7Q z7e!=unthT)NDJE@^4{hbr>lx2#vF4Tj%6S#0LlHOp<=Nv?v-L-y9AUAYisgT-b9ab z2A+{TX>OAGFr-YZJA63~m0>Rx`{$?sB7BHz|8ACIF!m6ZZ!gZrp^Z;av(0D2=u0M< z!#yC;im9Ok5*DIMp#AlHp^ZBJTgsq`P4?9OI4Md5M_(0p`DmLy-50R3TIA>c_Ua{j zbi{phX(3mn{-~Qm4M*YBxgAwiAC$8-9|Relvib}{JcYmDo?=3jUt_Ukgl4GIXpHJN zuz$b|2Vzj)A7hRtcw%Ei$Z@f6wf}t?tmqTkaLw(Ed%nPWb^WT_DpEsD4IRB_cZLNK zul3Fv508$|gBBxc1ns&r8&|A4HG&W zyImL&?;xipgQB}PK}fjlTgP#ecwNA#XI$yt9@*(RMk7BMpwLFmlg~@@bl?BQ%LTZ1 J!d_6JO|jol^TYrE literal 0 HcmV?d00001 diff --git a/format/negentropy/testdata/strfrybigmessage.fqtest b/format/negentropy/testdata/strfrybigmessage.fqtest new file mode 100644 index 000000000..e020b740c --- /dev/null +++ b/format/negentropy/testdata/strfrybigmessage.fqtest @@ -0,0 +1,1392 @@ +# message taken from a message sent by https://github.com/hoytech/strfry/tree/08f06338f32a91a6195973357f40b09bb2f6b076 +$ fq -d negentropy dv strfrybigmessage + |00 01 02 03 04 05 06 07 08 09 0a 0b 0c 0d 0e 0f|0123456789abcdef|.{}: strfrybigmessage (negentropy) 0x0-0x363b (13883) +0x0000|61 |a | version: 97 0x0-0x1 (1) + | | | bounds[0:17]: 0x1-0x363b (13882) + | | | [0]{}: bound 0x1-0x4 (3) +0x0000| 13 | . | timestamp_delta: 18 (19) 0x1-0x2 (1) + | | | timestamp: 18 (1970-01-01T00:00:18Z) +0x0000| 00 | . | id_prefix_size: 0 0x2-0x3 (1) +0x0000| 00 | . | mode: "skip" (0) 0x3-0x4 (1) + | | | [1]{}: bound 0x4-0x36c (872) +0x0000| 86 b7 94 94 04 | ..... | timestamp_delta: 1726286339 (1726286340) 0x4-0x9 (5) + | | | timestamp: 1726286357 (2024-09-14T03:59:17Z) +0x0000| 00 | . | id_prefix_size: 0 0x9-0xa (1) +0x0000| 02 | . | mode: "idlist" (2) 0xa-0xb (1) + | | | idlist{}: 0xb-0x36c (865) +0x0000| 1b | . | num: 27 0xb-0xc (1) + | | | ids[0:27]: 0xc-0x36c (864) +0x0000| 55 d7 b8 d9| U...| [0]: "55d7b8d996a09e1e07140d2eec1151d0aac37f8b166a6ff2f7bf27353c935b5e" (raw bits) id 0xc-0x2c (32) +0x0010|96 a0 9e 1e 07 14 0d 2e ec 11 51 d0 aa c3 7f 8b|..........Q.....| +0x0020|16 6a 6f f2 f7 bf 27 35 3c 93 5b 5e |.jo...'5<.[^ | +0x0020| 70 9e c2 e2| p...| [1]: "709ec2e20d7354dd546e0529f053b23849d93f8e06a81d8738d78277c139489f" (raw bits) id 0x2c-0x4c (32) +0x0030|0d 73 54 dd 54 6e 05 29 f0 53 b2 38 49 d9 3f 8e|.sT.Tn.).S.8I.?.| +0x0040|06 a8 1d 87 38 d7 82 77 c1 39 48 9f |....8..w.9H. | +0x0040| 95 b9 af 73| ...s| [2]: "95b9af7305d782b21e224beb3634bf44d69e33734b4794cd638343bc3274ae96" (raw bits) id 0x4c-0x6c (32) +0x0050|05 d7 82 b2 1e 22 4b eb 36 34 bf 44 d6 9e 33 73|....."K.64.D..3s| +0x0060|4b 47 94 cd 63 83 43 bc 32 74 ae 96 |KG..c.C.2t.. | +0x0060| 0a ea 06 03| ....| [3]: "0aea0603750f60a0c6613efc1056a0b1f35ea17ea948869ca0e6d4133d46555d" (raw bits) id 0x6c-0x8c (32) +0x0070|75 0f 60 a0 c6 61 3e fc 10 56 a0 b1 f3 5e a1 7e|u.`..a>..V...^.~| +0x0080|a9 48 86 9c a0 e6 d4 13 3d 46 55 5d |.H......=FU] | +0x0080| 94 70 f6 2c| .p.,| [4]: "9470f62c2e14fb99fa229b5a0e1b965c86bec0ba43a9e95f1b355fdfba4be0af" (raw bits) id 0x8c-0xac (32) +0x0090|2e 14 fb 99 fa 22 9b 5a 0e 1b 96 5c 86 be c0 ba|.....".Z...\....| +0x00a0|43 a9 e9 5f 1b 35 5f df ba 4b e0 af |C.._.5_..K.. | +0x00a0| a6 73 6b 3c| .sk<| [5]: "a6736b3c2ac9c19132ee2de521579a4d13c3624c6e83b9636d35007b02d45beb" (raw bits) id 0xac-0xcc (32) +0x00b0|2a c9 c1 91 32 ee 2d e5 21 57 9a 4d 13 c3 62 4c|*...2.-.!W.M..bL| +0x00c0|6e 83 b9 63 6d 35 00 7b 02 d4 5b eb |n..cm5.{..[. | +0x00c0| 1e d3 ca 57| ...W| [6]: "1ed3ca57c51258508f3e27921d10c905675a502f77b3742c65cc736d9b57e600" (raw bits) id 0xcc-0xec (32) +0x00d0|c5 12 58 50 8f 3e 27 92 1d 10 c9 05 67 5a 50 2f|..XP.>'.....gZP/| +0x00e0|77 b3 74 2c 65 cc 73 6d 9b 57 e6 00 |w.t,e.sm.W.. | +0x00e0| 27 27 b1 97| ''..| [7]: "2727b1978482c7e2b9acae4eb7ba620f705e414798653afe500b8a45b0d16961" (raw bits) id 0xec-0x10c (32) +0x00f0|84 82 c7 e2 b9 ac ae 4e b7 ba 62 0f 70 5e 41 47|.......N..b.p^AG| +0x0100|98 65 3a fe 50 0b 8a 45 b0 d1 69 61 |.e:.P..E..ia | +0x0100| 38 8a 08 9c| 8...| [8]: "388a089cb01e24eb4607e8d81658888e06ecba4b0a2196f6df8206b037a28f92" (raw bits) id 0x10c-0x12c (32) +0x0110|b0 1e 24 eb 46 07 e8 d8 16 58 88 8e 06 ec ba 4b|..$.F....X.....K| +0x0120|0a 21 96 f6 df 82 06 b0 37 a2 8f 92 |.!......7... | +0x0120| 50 69 3d f1| Pi=.| [9]: "50693df159199ff35a84ef4005b6f9941d5f9523c8137552e91cd97ceb5abebe" (raw bits) id 0x12c-0x14c (32) +0x0130|59 19 9f f3 5a 84 ef 40 05 b6 f9 94 1d 5f 95 23|Y...Z..@....._.#| +0x0140|c8 13 75 52 e9 1c d9 7c eb 5a be be |..uR...|.Z.. | +0x0140| 53 b9 77 11| S.w.| [10]: "53b97711a4999ed8aa24a116a7d1a873967544f0382297d0600f2004b235118f" (raw bits) id 0x14c-0x16c (32) +0x0150|a4 99 9e d8 aa 24 a1 16 a7 d1 a8 73 96 75 44 f0|.....$.....s.uD.| +0x0160|38 22 97 d0 60 0f 20 04 b2 35 11 8f |8"..`. ..5.. | +0x0160| 6a eb 8c 58| j..X| [11]: "6aeb8c58b76b3716aea25490501c232c1635571f2e852a6297d21a58e6ea5072" (raw bits) id 0x16c-0x18c (32) +0x0170|b7 6b 37 16 ae a2 54 90 50 1c 23 2c 16 35 57 1f|.k7...T.P.#,.5W.| +0x0180|2e 85 2a 62 97 d2 1a 58 e6 ea 50 72 |..*b...X..Pr | +0x0180| 6c 10 97 4a| l..J| [12]: "6c10974ae07b3aea833ed945c80573a6fa7deb22397ce3d5f60527551bac15b9" (raw bits) id 0x18c-0x1ac (32) +0x0190|e0 7b 3a ea 83 3e d9 45 c8 05 73 a6 fa 7d eb 22|.{:..>.E..s..}."| +0x01a0|39 7c e3 d5 f6 05 27 55 1b ac 15 b9 |9|....'U.... | +0x01a0| 6c aa c4 63| l..c| [13]: "6caac46351ff68176e1e1874023faf8a0680057efd320dac293000a080cb7b18" (raw bits) id 0x1ac-0x1cc (32) +0x01b0|51 ff 68 17 6e 1e 18 74 02 3f af 8a 06 80 05 7e|Q.h.n..t.?.....~| +0x01c0|fd 32 0d ac 29 30 00 a0 80 cb 7b 18 |.2..)0....{. | +0x01c0| 71 eb 2f 77| q./w| [14]: "71eb2f77a07fa684c6e64eb43ba5d68698bf6b8d55a2eddb6447b0904ab93fef" (raw bits) id 0x1cc-0x1ec (32) +0x01d0|a0 7f a6 84 c6 e6 4e b4 3b a5 d6 86 98 bf 6b 8d|......N.;.....k.| +0x01e0|55 a2 ed db 64 47 b0 90 4a b9 3f ef |U...dG..J.?. | +0x01e0| 78 de 5a 53| x.ZS| [15]: "78de5a536935d1feae4ac0e3c0caa914682ca93600bebf9bdad8299934b1ecda" (raw bits) id 0x1ec-0x20c (32) +0x01f0|69 35 d1 fe ae 4a c0 e3 c0 ca a9 14 68 2c a9 36|i5...J......h,.6| +0x0200|00 be bf 9b da d8 29 99 34 b1 ec da |......).4... | +0x0200| 82 3a 29 21| .:)!| [16]: "823a2921861df4a3b07ac9649258b7bdee7a1b728d78909dd9845ad9cc16e4d8" (raw bits) id 0x20c-0x22c (32) +0x0210|86 1d f4 a3 b0 7a c9 64 92 58 b7 bd ee 7a 1b 72|.....z.d.X...z.r| +0x0220|8d 78 90 9d d9 84 5a d9 cc 16 e4 d8 |.x....Z..... | +0x0220| 88 21 1a 85| .!..| [17]: "88211a850f98c291eb0b44cb6908d86c36d65594e91c90cdc4ba77e25b5d2b0d" (raw bits) id 0x22c-0x24c (32) +0x0230|0f 98 c2 91 eb 0b 44 cb 69 08 d8 6c 36 d6 55 94|......D.i..l6.U.| +0x0240|e9 1c 90 cd c4 ba 77 e2 5b 5d 2b 0d |......w.[]+. | +0x0240| 98 03 15 10| ....| [18]: "98031510536d2c4510c032ae1dc06ac1c8cb89b5bd7e50b7049561c2990e7f22" (raw bits) id 0x24c-0x26c (32) +0x0250|53 6d 2c 45 10 c0 32 ae 1d c0 6a c1 c8 cb 89 b5|Sm,E..2...j.....| +0x0260|bd 7e 50 b7 04 95 61 c2 99 0e 7f 22 |.~P...a...." | +0x0260| a7 8d 22 56| .."V| [19]: "a78d2256f3ecd4db2cfe1de2af295f44341f2077427968feb04dcd2b86aeb3ea" (raw bits) id 0x26c-0x28c (32) +0x0270|f3 ec d4 db 2c fe 1d e2 af 29 5f 44 34 1f 20 77|....,....)_D4. w| +0x0280|42 79 68 fe b0 4d cd 2b 86 ae b3 ea |Byh..M.+.... | +0x0280| ae 00 f0 f6| ....| [20]: "ae00f0f61f288ad751a920c8a6778a192102df1f9997bbd294eff333f510a314" (raw bits) id 0x28c-0x2ac (32) +0x0290|1f 28 8a d7 51 a9 20 c8 a6 77 8a 19 21 02 df 1f|.(..Q. ..w..!...| +0x02a0|99 97 bb d2 94 ef f3 33 f5 10 a3 14 |.......3.... | +0x02a0| d1 21 20 a0| .! .| [21]: "d12120a03426be5f3d5e42b91c0e5f6b29bb996ad5c6a2eb23a8300269aba59f" (raw bits) id 0x2ac-0x2cc (32) +0x02b0|34 26 be 5f 3d 5e 42 b9 1c 0e 5f 6b 29 bb 99 6a|4&._=^B..._k)..j| +0x02c0|d5 c6 a2 eb 23 a8 30 02 69 ab a5 9f |....#.0.i... | +0x02c0| e2 0d a0 55| ...U| [22]: "e20da055e761a1c922e4751d2a12231e06ddbf4b2b39d4484e7e4fea8f4c379f" (raw bits) id 0x2cc-0x2ec (32) +0x02d0|e7 61 a1 c9 22 e4 75 1d 2a 12 23 1e 06 dd bf 4b|.a..".u.*.#....K| +0x02e0|2b 39 d4 48 4e 7e 4f ea 8f 4c 37 9f |+9.HN~O..L7. | +0x02e0| ed b9 06 2e| ....| [23]: "edb9062ecad6724e3cb32dd5d85a6c23302f7310b0d657dca1d2770f945b017b" (raw bits) id 0x2ec-0x30c (32) +0x02f0|ca d6 72 4e 3c b3 2d d5 d8 5a 6c 23 30 2f 73 10|..rN<.-..Zl#0/s.| +0x0300|b0 d6 57 dc a1 d2 77 0f 94 5b 01 7b |..W...w..[.{ | +0x0300| f3 b3 c9 88| ....| [24]: "f3b3c98891df1fcb5868c3038287aa3a139a1f3211b49157eee7bacab9ff2640" (raw bits) id 0x30c-0x32c (32) +0x0310|91 df 1f cb 58 68 c3 03 82 87 aa 3a 13 9a 1f 32|....Xh.....:...2| +0x0320|11 b4 91 57 ee e7 ba ca b9 ff 26 40 |...W......&@ | +0x0320| f5 d1 e5 63| ...c| [25]: "f5d1e563473260feacc58bb2656cef113dd83dca1beb72bec6db02295615ec38" (raw bits) id 0x32c-0x34c (32) +0x0330|47 32 60 fe ac c5 8b b2 65 6c ef 11 3d d8 3d ca|G2`.....el..=.=.| +0x0340|1b eb 72 be c6 db 02 29 56 15 ec 38 |..r....)V..8 | +0x0340| fe f9 09 d2| ....| [26]: "fef909d28ba9bea1c8d678232ace6255e22f4bfdfb4f5735f890ea7c523006f9" (raw bits) id 0x34c-0x36c (32) +0x0350|8b a9 be a1 c8 d6 78 23 2a ce 62 55 e2 2f 4b fd|......x#*.bU./K.| +0x0360|fb 4f 57 35 f8 90 ea 7c 52 30 06 f9 |.OW5...|R0.. | + | | | [2]{}: bound 0x36c-0x6d1 (869) +0x0360| 0b | . | timestamp_delta: 10 (11) 0x36c-0x36d (1) + | | | timestamp: 1726286367 (2024-09-14T03:59:27Z) +0x0360| 01 | . | id_prefix_size: 1 0x36d-0x36e (1) +0x0360| 6b | k | id_prefix: "6b" (raw bits) 0x36e-0x36f (1) +0x0360| 02| .| mode: "idlist" (2) 0x36f-0x370 (1) + | | | idlist{}: 0x370-0x6d1 (865) +0x0370|1b |. | num: 27 0x370-0x371 (1) + | | | ids[0:27]: 0x371-0x6d1 (864) +0x0370| 02 a4 6e f8 85 d8 2d c1 81 03 d3 76 34 cf d7| ..n...-....v4..| [0]: "02a46ef885d82dc18103d37634cfd7c2491abab885e7640a464a949db5a4c8a2" (raw bits) id 0x371-0x391 (32) +0x0380|c2 49 1a ba b8 85 e7 64 0a 46 4a 94 9d b5 a4 c8|.I.....d.FJ.....| +0x0390|a2 |. | +0x0390| 10 70 80 0d 98 17 58 75 4b 49 4f f2 63 b0 31| .p....XuKIO.c.1| [1]: "1070800d981758754b494ff263b031f61de8979e2b5acdf5107dd119dcdfaf27" (raw bits) id 0x391-0x3b1 (32) +0x03a0|f6 1d e8 97 9e 2b 5a cd f5 10 7d d1 19 dc df af|.....+Z...}.....| +0x03b0|27 |' | +0x03b0| 21 70 a2 ce 39 e2 75 9a 36 2b d7 6a 1f 25 e6| !p..9.u.6+.j.%.| [2]: "2170a2ce39e2759a362bd76a1f25e6a3cee38ce610e2643ecf0da3a2cc8ebe11" (raw bits) id 0x3b1-0x3d1 (32) +0x03c0|a3 ce e3 8c e6 10 e2 64 3e cf 0d a3 a2 cc 8e be|.......d>.......| +0x03d0|11 |. | +0x03d0| 2a c1 86 d3 ac f6 3f 1c 76 39 52 de d1 fd 1d| *.....?.v9R....| [3]: "2ac186d3acf63f1c763952ded1fd1df52ced3f8a14b36ecdf1598adf57475156" (raw bits) id 0x3d1-0x3f1 (32) +0x03e0|f5 2c ed 3f 8a 14 b3 6e cd f1 59 8a df 57 47 51|.,.?...n..Y..WGQ| +0x03f0|56 |V | +0x03f0| 45 c8 0d 8b 7c ac ad d3 36 38 aa 16 41 e7 5f| E...|...68..A._| [4]: "45c80d8b7cacadd33638aa1641e75fc744e354243d598d1d3818787b3c76d164" (raw bits) id 0x3f1-0x411 (32) +0x0400|c7 44 e3 54 24 3d 59 8d 1d 38 18 78 7b 3c 76 d1|.D.T$=Y..8.x{...| [14]: "8e6dc57a7054b0bee3844e3eaa857f0156c0a367643c99de1a47b2cf42221596" (raw bits) id 0x531-0x551 (32) +0x0540|01 56 c0 a3 67 64 3c 99 de 1a 47 b2 cf 42 22 15|.V..gd<...G..B".| +0x0550|96 |. | +0x0550| ad 7d 82 0d 53 75 2a 39 c2 d2 a4 19 eb 5a 21| .}..Su*9.....Z!| [15]: "ad7d820d53752a39c2d2a419eb5a21014a7a3efe7e30a6f8a6edab6594e0d395" (raw bits) id 0x551-0x571 (32) +0x0560|01 4a 7a 3e fe 7e 30 a6 f8 a6 ed ab 65 94 e0 d3|.Jz>.~0.....e...| +0x0570|95 |. | +0x0570| bc 3c 87 7f 6d 54 05 48 9d 1a 28 e8 90 0f d4| .<..mT.H..(....| [16]: "bc3c877f6d5405489d1a28e8900fd4b96fb4b329b0aad0904a0688a23cff6ac8" (raw bits) id 0x571-0x591 (32) +0x0580|b9 6f b4 b3 29 b0 aa d0 90 4a 06 88 a2 3c ff 6a|.o..)....J...<.j| +0x0590|c8 |. | +0x0590| c3 24 5d 04 cc 36 1c 9c bb 4f a5 6e 4b de a4| .$]..6...O.nK..| [17]: "c3245d04cc361c9cbb4fa56e4bdea4b3fda313749a33f586017662dee33f7fc4" (raw bits) id 0x591-0x5b1 (32) +0x05a0|b3 fd a3 13 74 9a 33 f5 86 01 76 62 de e3 3f 7f|....t.3...vb..?.| +0x05b0|c4 |. | +0x05b0| c9 6b 84 ba 3a 94 6b 33 eb 24 8f 76 2b 8a 1e| .k..:.k3.$.v+..| [18]: "c96b84ba3a946b33eb248f762b8a1e4b7bdaa97526e4d4e4d566e6096a434323" (raw bits) id 0x5b1-0x5d1 (32) +0x05c0|4b 7b da a9 75 26 e4 d4 e4 d5 66 e6 09 6a 43 43|K{..u&....f..jCC| +0x05d0|23 |# | +0x05d0| e7 2a 82 a7 76 e8 e5 d8 d7 61 03 1e af 81 68| .*..v....a....h| [19]: "e72a82a776e8e5d8d761031eaf816846cb1db1d6a12798e81546c766e2a97b4f" (raw bits) id 0x5d1-0x5f1 (32) +0x05e0|46 cb 1d b1 d6 a1 27 98 e8 15 46 c7 66 e2 a9 7b|F.....'...F.f..{| +0x05f0|4f |O | +0x05f0| 10 88 c0 47 a6 37 5d e4 2b 32 d7 cb 27 7c 46| ...G.7].+2..'|F| [20]: "1088c047a6375de42b32d7cb277c461832822e39ba459845b40639340bfe25f9" (raw bits) id 0x5f1-0x611 (32) +0x0600|18 32 82 2e 39 ba 45 98 45 b4 06 39 34 0b fe 25|.2..9.E.E..94..%| +0x0610|f9 |. | +0x0610| 13 c1 86 54 ed 41 83 9f 89 61 60 79 76 75 4a| ...T.A...a`yvuJ| [21]: "13c18654ed41839f8961607976754af31f395d665a205ee203fbcecac57f5763" (raw bits) id 0x611-0x631 (32) +0x0620|f3 1f 39 5d 66 5a 20 5e e2 03 fb ce ca c5 7f 57|..9]fZ ^.......W| +0x0630|63 |c | +0x0630| 2e 64 66 4f 12 62 23 42 66 36 89 df 8a b0 85| .dfO.b#Bf6.....| [22]: "2e64664f12622342663689df8ab0858e7fa269f28644ee168bff1735eed39c10" (raw bits) id 0x631-0x651 (32) +0x0640|8e 7f a2 69 f2 86 44 ee 16 8b ff 17 35 ee d3 9c|...i..D.....5...| +0x0650|10 |. | +0x0650| 3a 91 c2 06 ed b2 de da 18 ed 15 f8 56 bd 49| :...........V.I| [23]: "3a91c206edb2deda18ed15f856bd49a542b855067b7745b670777cf12cfc36f6" (raw bits) id 0x651-0x671 (32) +0x0660|a5 42 b8 55 06 7b 77 45 b6 70 77 7c f1 2c fc 36|.B.U.{wE.pw|.,.6| +0x0670|f6 |. | +0x0670| 3d a7 2c b6 89 0a da 52 53 5b ef 82 02 6f ab| =.,....RS[...o.| [24]: "3da72cb6890ada52535bef82026fab72f0b2331636968ec1a2cf90b97f1960a5" (raw bits) id 0x671-0x691 (32) +0x0680|72 f0 b2 33 16 36 96 8e c1 a2 cf 90 b9 7f 19 60|r..3.6.........`| +0x0690|a5 |. | +0x0690| 56 ec bb ec 99 88 22 b1 a5 cd b5 a1 ef 58 00| V....."......X.| [25]: "56ecbbec998822b1a5cdb5a1ef5800fb3575f5f12696baf2b9e7cba51521a772" (raw bits) id 0x691-0x6b1 (32) +0x06a0|fb 35 75 f5 f1 26 96 ba f2 b9 e7 cb a5 15 21 a7|.5u..&........!.| +0x06b0|72 |r | +0x06b0| 61 7f 27 f7 dd ff 08 40 60 fa 0f bf c8 4a da| a.'....@`....J.| [26]: "617f27f7ddff084060fa0fbfc84ada149c7bbe477b53d38292e96e0936e4109e" (raw bits) id 0x6b1-0x6d1 (32) +0x06c0|14 9c 7b be 47 7b 53 d3 82 92 e9 6e 09 36 e4 10|..{.G{S....n.6..| +0x06d0|9e |. | + | | | [3]{}: bound 0x6d1-0xa36 (869) +0x06d0| 0b | . | timestamp_delta: 10 (11) 0x6d1-0x6d2 (1) + | | | timestamp: 1726286377 (2024-09-14T03:59:37Z) +0x06d0| 01 | . | id_prefix_size: 1 0x6d2-0x6d3 (1) +0x06d0| bb | . | id_prefix: "bb" (raw bits) 0x6d3-0x6d4 (1) +0x06d0| 02 | . | mode: "idlist" (2) 0x6d4-0x6d5 (1) + | | | idlist{}: 0x6d5-0xa36 (865) +0x06d0| 1b | . | num: 27 0x6d5-0x6d6 (1) + | | | ids[0:27]: 0x6d6-0xa36 (864) +0x06d0| 6b d1 61 fc 27 ac f6 86 94 40| k.a.'....@| [0]: "6bd161fc27acf6869440c73118c5cdfc5b1afb51177ec53195e21c7053e1d759" (raw bits) id 0x6d6-0x6f6 (32) +0x06e0|c7 31 18 c5 cd fc 5b 1a fb 51 17 7e c5 31 95 e2|.1....[..Q.~.1..| +0x06f0|1c 70 53 e1 d7 59 |.pS..Y | +0x06f0| 7a 4a 8d ea c5 3b 83 a2 c2 1f| zJ...;....| [1]: "7a4a8deac53b83a2c21f344d6040256a617673d136273df5b030f584b723833d" (raw bits) id 0x6f6-0x716 (32) +0x0700|34 4d 60 40 25 6a 61 76 73 d1 36 27 3d f5 b0 30|4M`@%javs.6'=..0| +0x0710|f5 84 b7 23 83 3d |...#.= | +0x0710| 88 40 0b c9 64 04 2d 16 1c f9| .@..d.-...| [2]: "88400bc964042d161cf9d0a2bc86be14a6fd074a89cf9821eb0da76f6f8c19ab" (raw bits) id 0x716-0x736 (32) +0x0720|d0 a2 bc 86 be 14 a6 fd 07 4a 89 cf 98 21 eb 0d|.........J...!..| +0x0730|a7 6f 6f 8c 19 ab |.oo... | +0x0730| 92 f7 c0 cd 17 84 05 9d 53 f1| ........S.| [3]: "92f7c0cd1784059d53f164827014207044e9993bb446a2904d8861c659ddaa58" (raw bits) id 0x736-0x756 (32) +0x0740|64 82 70 14 20 70 44 e9 99 3b b4 46 a2 90 4d 88|d.p. pD..;.F..M.| +0x0750|61 c6 59 dd aa 58 |a.Y..X | +0x0750| 95 ff 9b 9c 8f f4 32 0c 20 8a| ......2. .| [4]: "95ff9b9c8ff4320c208a52d7bf72dd95d784653b74a156cb77bdc735c08a26c4" (raw bits) id 0x756-0x776 (32) +0x0760|52 d7 bf 72 dd 95 d7 84 65 3b 74 a1 56 cb 77 bd|R..r....e;t.V.w.| +0x0770|c7 35 c0 8a 26 c4 |.5..&. | +0x0770| 9e 41 85 94 1b 51 e3 d1 f1 a2| .A...Q....| [5]: "9e4185941b51e3d1f1a248328c57115d1db29eb4740d3ccfe30bb2dd3dd8e003" (raw bits) id 0x776-0x796 (32) +0x0780|48 32 8c 57 11 5d 1d b2 9e b4 74 0d 3c cf e3 0b|H2.W.]....t.<...| +0x0790|b2 dd 3d d8 e0 03 |..=... | +0x0790| a0 6a f8 ff a3 2a 8f 1a 35 d0| .j...*..5.| [6]: "a06af8ffa32a8f1a35d08f4bb189229b7269a8f5cb0b334571b5f3a340cb0778" (raw bits) id 0x796-0x7b6 (32) +0x07a0|8f 4b b1 89 22 9b 72 69 a8 f5 cb 0b 33 45 71 b5|.K..".ri....3Eq.| +0x07b0|f3 a3 40 cb 07 78 |..@..x | +0x07b0| aa 11 0d 13 7f 58 87 87 75 f7| .....X..u.| [7]: "aa110d137f58878775f7e8a17c1b0d2985c252c6a84d2a91ce6b86eda2d56a3a" (raw bits) id 0x7b6-0x7d6 (32) +0x07c0|e8 a1 7c 1b 0d 29 85 c2 52 c6 a8 4d 2a 91 ce 6b|..|..)..R..M*..k| +0x07d0|86 ed a2 d5 6a 3a |....j: | +0x07d0| bf b4 41 45 9e c6 6d b2 7f 61| ..AE..m..a| [8]: "bfb441459ec66db27f6140ef1d8cd97548d1b521a6d50e9e60ff04501eb42a51" (raw bits) id 0x7d6-0x7f6 (32) +0x07e0|40 ef 1d 8c d9 75 48 d1 b5 21 a6 d5 0e 9e 60 ff|@....uH..!....`.| +0x07f0|04 50 1e b4 2a 51 |.P..*Q | +0x07f0| c8 6d ee 3c dd 20 23 85 74 39| .m.<. #.t9| [9]: "c86dee3cdd202385743951dc2690d244a4385f168cd04262adf722b8d8edf6b3" (raw bits) id 0x7f6-0x816 (32) +0x0800|51 dc 26 90 d2 44 a4 38 5f 16 8c d0 42 62 ad f7|Q.&..D.8_...Bb..| +0x0810|22 b8 d8 ed f6 b3 |"..... | +0x0810| de 22 42 2c 1b e6 cd 02 84 fd| ."B,......| [10]: "de22422c1be6cd0284fdf516e6885d640085f439fcb609203c24ecee342cc232" (raw bits) id 0x816-0x836 (32) +0x0820|f5 16 e6 88 5d 64 00 85 f4 39 fc b6 09 20 3c 24|....]d...9... <$| +0x0830|ec ee 34 2c c2 32 |..4,.2 | +0x0830| f6 a7 ed 74 67 c1 0e bf 76 37| ...tg...v7| [11]: "f6a7ed7467c10ebf7637f83a402eed472e822868a67e10020dd52b91800af536" (raw bits) id 0x836-0x856 (32) +0x0840|f8 3a 40 2e ed 47 2e 82 28 68 a6 7e 10 02 0d d5|.:@..G..(h.~....| +0x0850|2b 91 80 0a f5 36 |+....6 | +0x0850| fa cc e1 7a a8 77 13 63 5b c5| ...z.w.c[.| [12]: "facce17aa87713635bc55543f7c59d9c17f1acb7860e46d70379c7d64f96e21b" (raw bits) id 0x856-0x876 (32) +0x0860|55 43 f7 c5 9d 9c 17 f1 ac b7 86 0e 46 d7 03 79|UC..........F..y| +0x0870|c7 d6 4f 96 e2 1b |..O... | +0x0870| 32 32 3b 51 f1 fa 48 5e 44 83| 22;Q..H^D.| [13]: "32323b51f1fa485e44838c6ac4600f75aad9bb9817c6c87cd7361e4517bf0342" (raw bits) id 0x876-0x896 (32) +0x0880|8c 6a c4 60 0f 75 aa d9 bb 98 17 c6 c8 7c d7 36|.j.`.u.......|.6| +0x0890|1e 45 17 bf 03 42 |.E...B | +0x0890| 00 8e 54 52 6f f9 95 c0 c4 05| ..TRo.....| [14]: "008e54526ff995c0c40564d50cf750e14e519000abd6c3d45c501ba4058f06fa" (raw bits) id 0x896-0x8b6 (32) +0x08a0|64 d5 0c f7 50 e1 4e 51 90 00 ab d6 c3 d4 5c 50|d...P.NQ......\P| +0x08b0|1b a4 05 8f 06 fa |...... | +0x08b0| 08 de 32 38 f3 0d 45 ce d3 bd| ..28..E...| [15]: "08de3238f30d45ced3bd75e939f3bd9e58683ac5bca856f5ccf6a94d6af549a7" (raw bits) id 0x8b6-0x8d6 (32) +0x08c0|75 e9 39 f3 bd 9e 58 68 3a c5 bc a8 56 f5 cc f6|u.9...Xh:...V...| +0x08d0|a9 4d 6a f5 49 a7 |.Mj.I. | +0x08d0| 13 c2 bb ff 9f 30 54 79 43 66| .....0TyCf| [16]: "13c2bbff9f305479436649d156bf351036c7272bcbc52fa271725694071720b8" (raw bits) id 0x8d6-0x8f6 (32) +0x08e0|49 d1 56 bf 35 10 36 c7 27 2b cb c5 2f a2 71 72|I.V.5.6.'+../.qr| +0x08f0|56 94 07 17 20 b8 |V... . | +0x08f0| 18 b2 f6 41 08 56 98 90 d0 16| ...A.V....| [17]: "18b2f64108569890d01689eea3d73cc9f9ab52e10e43776265d175bbd61ac297" (raw bits) id 0x8f6-0x916 (32) +0x0900|89 ee a3 d7 3c c9 f9 ab 52 e1 0e 43 77 62 65 d1|....<...R..Cwbe.| +0x0910|75 bb d6 1a c2 97 |u..... | +0x0910| 2d 93 cc 90 e0 a4 e4 0b be c6| -.........| [18]: "2d93cc90e0a4e40bbec6cdc15c17cddbff5e78fe22af84e6822f00c36b9c6002" (raw bits) id 0x916-0x936 (32) +0x0920|cd c1 5c 17 cd db ff 5e 78 fe 22 af 84 e6 82 2f|..\....^x."..../| +0x0930|00 c3 6b 9c 60 02 |..k.`. | +0x0930| 35 7b 92 58 5b 43 26 ca 9d f7| 5{.X[C&...| [19]: "357b92585b4326ca9df7f7f9501b631b5a8e3875744a0b7d580cb94494ebbff4" (raw bits) id 0x936-0x956 (32) +0x0940|f7 f9 50 1b 63 1b 5a 8e 38 75 74 4a 0b 7d 58 0c|..P.c.Z.8utJ.}X.| +0x0950|b9 44 94 eb bf f4 |.D.... | +0x0950| 6b 8f 17 7a ed 8b 94 da 05 33| k..z.....3| [20]: "6b8f177aed8b94da053372f3eb84193f34f4ba04d791980c896cbf50278e7b2c" (raw bits) id 0x956-0x976 (32) +0x0960|72 f3 eb 84 19 3f 34 f4 ba 04 d7 91 98 0c 89 6c|r....?4........l| +0x0970|bf 50 27 8e 7b 2c |.P'.{, | +0x0970| 70 6f 87 6a f9 e2 dd 61 98 0a| po.j...a..| [21]: "706f876af9e2dd61980a42929dcf4769a1c65bba7de190364751941c691a9522" (raw bits) id 0x976-0x996 (32) +0x0980|42 92 9d cf 47 69 a1 c6 5b ba 7d e1 90 36 47 51|B...Gi..[.}..6GQ| +0x0990|94 1c 69 1a 95 22 |..i.." | +0x0990| 78 20 26 7f 95 c7 41 9e d9 3f| x &...A..?| [22]: "7820267f95c7419ed93feefa947438dbb4545b3fc038093f781582f668f3d137" (raw bits) id 0x996-0x9b6 (32) +0x09a0|ee fa 94 74 38 db b4 54 5b 3f c0 38 09 3f 78 15|...t8..T[?.8.?x.| +0x09b0|82 f6 68 f3 d1 37 |..h..7 | +0x09b0| 83 ed ad 12 aa 37 e3 a6 39 43| .....7..9C| [23]: "83edad12aa37e3a63943fd70432c2fd9428b4a8e83601bf427adc388d201f1cc" (raw bits) id 0x9b6-0x9d6 (32) +0x09c0|fd 70 43 2c 2f d9 42 8b 4a 8e 83 60 1b f4 27 ad|.pC,/.B.J..`..'.| +0x09d0|c3 88 d2 01 f1 cc |...... | +0x09d0| 94 b7 c8 d1 5b 33 fe c7 83 74| ....[3...t| [24]: "94b7c8d15b33fec783748fa5384c2dc669f26bccb94b9fecbdac56f7eb05a1ec" (raw bits) id 0x9d6-0x9f6 (32) +0x09e0|8f a5 38 4c 2d c6 69 f2 6b cc b9 4b 9f ec bd ac|..8L-.i.k..K....| +0x09f0|56 f7 eb 05 a1 ec |V..... | +0x09f0| af 9d c8 4d 13 26 34 48 1d bf| ...M.&4H..| [25]: "af9dc84d132634481dbff90ce4470560bc5ae9aab7a9dcbd74765af084f24fb0" (raw bits) id 0x9f6-0xa16 (32) +0x0a00|f9 0c e4 47 05 60 bc 5a e9 aa b7 a9 dc bd 74 76|...G.`.Z......tv| +0x0a10|5a f0 84 f2 4f b0 |Z...O. | +0x0a10| b8 64 f0 8d c1 a9 e5 57 dc 92| .d.....W..| [26]: "b864f08dc1a9e557dc92c6d409aefab415f5bbf89bd0275048e065785445bb05" (raw bits) id 0xa16-0xa36 (32) +0x0a20|c6 d4 09 ae fa b4 15 f5 bb f8 9b d0 27 50 48 e0|............'PH.| +0x0a30|65 78 54 45 bb 05 |exTE.. | + | | | [4]{}: bound 0xa36-0xd9b (869) +0x0a30| 0b | . | timestamp_delta: 10 (11) 0xa36-0xa37 (1) + | | | timestamp: 1726286387 (2024-09-14T03:59:47Z) +0x0a30| 01 | . | id_prefix_size: 1 0xa37-0xa38 (1) +0x0a30| f6 | . | id_prefix: "f6" (raw bits) 0xa38-0xa39 (1) +0x0a30| 02 | . | mode: "idlist" (2) 0xa39-0xa3a (1) + | | | idlist{}: 0xa3a-0xd9b (865) +0x0a30| 1b | . | num: 27 0xa3a-0xa3b (1) + | | | ids[0:27]: 0xa3b-0xd9b (864) +0x0a30| bb da a2 2e 2a| ....*| [0]: "bbdaa22e2a342c7b99987b394a49837a5455701598f69f4606050d183ed07736" (raw bits) id 0xa3b-0xa5b (32) +0x0a40|34 2c 7b 99 98 7b 39 4a 49 83 7a 54 55 70 15 98|4,{..{9JI.zTUp..| +0x0a50|f6 9f 46 06 05 0d 18 3e d0 77 36 |..F....>.w6 | +0x0a50| c9 44 4a a9 ac| .DJ..| [1]: "c9444aa9acff83bf71246a34239c8ef62565c44df9736fe11325cdb2bf623651" (raw bits) id 0xa5b-0xa7b (32) +0x0a60|ff 83 bf 71 24 6a 34 23 9c 8e f6 25 65 c4 4d f9|...q$j4#...%e.M.| +0x0a70|73 6f e1 13 25 cd b2 bf 62 36 51 |so..%...b6Q | +0x0a70| df c6 e7 c1 eb| .....| [2]: "dfc6e7c1ebe4425388009ddffa01d252052f2d7822f7b48cd6820d89a94e0ce6" (raw bits) id 0xa7b-0xa9b (32) +0x0a80|e4 42 53 88 00 9d df fa 01 d2 52 05 2f 2d 78 22|.BS.......R./-x"| +0x0a90|f7 b4 8c d6 82 0d 89 a9 4e 0c e6 |........N.. | +0x0a90| e7 80 26 1b 6c| ..&.l| [3]: "e780261b6ce1f1aa763ea593184785ec68ca390983dd263c8c12e952a55a1762" (raw bits) id 0xa9b-0xabb (32) +0x0aa0|e1 f1 aa 76 3e a5 93 18 47 85 ec 68 ca 39 09 83|...v>...G..h.9..| +0x0ab0|dd 26 3c 8c 12 e9 52 a5 5a 17 62 |.&<...R.Z.b | +0x0ab0| f2 35 aa ac 10| .5...| [4]: "f235aaac1004c340f3894c07d0c64281e256d2aba15582b6ddbf73b81d00de72" (raw bits) id 0xabb-0xadb (32) +0x0ac0|04 c3 40 f3 89 4c 07 d0 c6 42 81 e2 56 d2 ab a1|..@..L...B..V...| +0x0ad0|55 82 b6 dd bf 73 b8 1d 00 de 72 |U....s....r | +0x0ad0| f4 54 03 16 28| .T..(| [5]: "f454031628ce9a9bed7879df3e248bc1ce367a9a45bdbe74b2934623e12c11d6" (raw bits) id 0xadb-0xafb (32) +0x0ae0|ce 9a 9b ed 78 79 df 3e 24 8b c1 ce 36 7a 9a 45|....xy.>$...6z.E| +0x0af0|bd be 74 b2 93 46 23 e1 2c 11 d6 |..t..F#.,.. | +0x0af0| f7 a4 b8 66 e4| ...f.| [6]: "f7a4b866e4781d578a7e1dcc60ac2543c9602aa5fad820bca68a638f4e6ce658" (raw bits) id 0xafb-0xb1b (32) +0x0b00|78 1d 57 8a 7e 1d cc 60 ac 25 43 c9 60 2a a5 fa|x.W.~..`.%C.`*..| +0x0b10|d8 20 bc a6 8a 63 8f 4e 6c e6 58 |. ...c.Nl.X | +0x0b10| fd f7 f3 73 aa| ...s.| [7]: "fdf7f373aa2eb29ce142a8311d3bf9d117fb7e1c5662fb034512a1e9205f5de5" (raw bits) id 0xb1b-0xb3b (32) +0x0b20|2e b2 9c e1 42 a8 31 1d 3b f9 d1 17 fb 7e 1c 56|....B.1.;....~.V| +0x0b30|62 fb 03 45 12 a1 e9 20 5f 5d e5 |b..E... _]. | +0x0b30| 5c 8d 48 0d c4| \.H..| [8]: "5c8d480dc4e764db56deb67b7a341d5d7421683a8481c43f0fe120e1068d203a" (raw bits) id 0xb3b-0xb5b (32) +0x0b40|e7 64 db 56 de b6 7b 7a 34 1d 5d 74 21 68 3a 84|.d.V..{z4.]t!h:.| +0x0b50|81 c4 3f 0f e1 20 e1 06 8d 20 3a |..?.. ... : | +0x0b50| 08 fd 92 ec f7| .....| [9]: "08fd92ecf7f4399e084822ff797fc746d4d8a1be3633860fd5d884601be3a945" (raw bits) id 0xb5b-0xb7b (32) +0x0b60|f4 39 9e 08 48 22 ff 79 7f c7 46 d4 d8 a1 be 36|.9..H".y..F....6| +0x0b70|33 86 0f d5 d8 84 60 1b e3 a9 45 |3.....`...E | +0x0b70| 12 73 2c 2d eb| .s,-.| [10]: "12732c2deb41f9001817442bae47c5960ccbe04ad0e14ab047511c8b1bcc42e7" (raw bits) id 0xb7b-0xb9b (32) +0x0b80|41 f9 00 18 17 44 2b ae 47 c5 96 0c cb e0 4a d0|A....D+.G.....J.| +0x0b90|e1 4a b0 47 51 1c 8b 1b cc 42 e7 |.J.GQ....B. | +0x0b90| 1d 3f ef 9d 84| .?...| [11]: "1d3fef9d84bdd903b8c8910b29ab683e0f73d95a63f982ff8a920201043756bf" (raw bits) id 0xb9b-0xbbb (32) +0x0ba0|bd d9 03 b8 c8 91 0b 29 ab 68 3e 0f 73 d9 5a 63|.......).h>.s.Zc| +0x0bb0|f9 82 ff 8a 92 02 01 04 37 56 bf |........7V. | +0x0bb0| 23 0c 67 4a 90| #.gJ.| [12]: "230c674a9018cec7c4d401bbb0743f25bdc82bcbd1f26506a93b72532afcabc1" (raw bits) id 0xbbb-0xbdb (32) +0x0bc0|18 ce c7 c4 d4 01 bb b0 74 3f 25 bd c8 2b cb d1|........t?%..+..| +0x0bd0|f2 65 06 a9 3b 72 53 2a fc ab c1 |.e..;rS*... | +0x0bd0| 35 99 a6 2b 7e| 5..+~| [13]: "3599a62b7edb5b578401002bcda94e8320c1c06fe778475b35cf28851bb9cc1a" (raw bits) id 0xbdb-0xbfb (32) +0x0be0|db 5b 57 84 01 00 2b cd a9 4e 83 20 c1 c0 6f e7|.[W...+..N. ..o.| +0x0bf0|78 47 5b 35 cf 28 85 1b b9 cc 1a |xG[5.(..... | +0x0bf0| 44 3e 26 d5 f8| D>&..| [14]: "443e26d5f8ed3030b24931e59a0511e7f8006fede42a2a0c9989a9d32c269f9d" (raw bits) id 0xbfb-0xc1b (32) +0x0c00|ed 30 30 b2 49 31 e5 9a 05 11 e7 f8 00 6f ed e4|.00.I1.......o..| +0x0c10|2a 2a 0c 99 89 a9 d3 2c 26 9f 9d |**.....,&.. | +0x0c10| 47 b9 02 b4 7f| G....| [15]: "47b902b47f834bd3cf31fc1b8e486019bd5fc579c2653c60e64531ccce1f1187" (raw bits) id 0xc1b-0xc3b (32) +0x0c20|83 4b d3 cf 31 fc 1b 8e 48 60 19 bd 5f c5 79 c2|.K..1...H`.._.y.| +0x0c30|65 3c 60 e6 45 31 cc ce 1f 11 87 |e<`.E1..... | +0x0c30| 5b 8c 3b 51 62| [.;Qb| [16]: "5b8c3b51625dbe128d874e26626343830490a105abc6f3732c09c18b38ee044b" (raw bits) id 0xc3b-0xc5b (32) +0x0c40|5d be 12 8d 87 4e 26 62 63 43 83 04 90 a1 05 ab|]....N&bcC......| +0x0c50|c6 f3 73 2c 09 c1 8b 38 ee 04 4b |..s,...8..K | +0x0c50| 60 bb 69 42 34| `.iB4| [17]: "60bb69423407376513496bb63440067f02c43512263cdf8d23645c19cbf6cf0e" (raw bits) id 0xc5b-0xc7b (32) +0x0c60|07 37 65 13 49 6b b6 34 40 06 7f 02 c4 35 12 26|.7e.Ik.4@....5.&| +0x0c70|3c df 8d 23 64 5c 19 cb f6 cf 0e |<..#d\..... | +0x0c70| 6e c8 05 a3 b1| n....| [18]: "6ec805a3b1001ad36bd64fa16c056cf3c5ec05a49daaef89419ef1a0ba71e809" (raw bits) id 0xc7b-0xc9b (32) +0x0c80|00 1a d3 6b d6 4f a1 6c 05 6c f3 c5 ec 05 a4 9d|...k.O.l.l......| +0x0c90|aa ef 89 41 9e f1 a0 ba 71 e8 09 |...A....q.. | +0x0c90| 6f 4f f2 31 09| oO.1.| [19]: "6f4ff2310936376f8a74a11d473196fa66b78bd4c0d344cbad0945c2e592852d" (raw bits) id 0xc9b-0xcbb (32) +0x0ca0|36 37 6f 8a 74 a1 1d 47 31 96 fa 66 b7 8b d4 c0|67o.t..G1..f....| +0x0cb0|d3 44 cb ad 09 45 c2 e5 92 85 2d |.D...E....- | +0x0cb0| 8c 1a 00 9b 66| ....f| [20]: "8c1a009b66d3929154dd1cb4c7ac959afc2cdaf3138b197382c30f0c7a908b92" (raw bits) id 0xcbb-0xcdb (32) +0x0cc0|d3 92 91 54 dd 1c b4 c7 ac 95 9a fc 2c da f3 13|...T........,...| +0x0cd0|8b 19 73 82 c3 0f 0c 7a 90 8b 92 |..s....z... | +0x0cd0| 8c 34 bd 49 c8| .4.I.| [21]: "8c34bd49c8610f920500c3e3b47127bdb271f382e284f9c2714a2efabbc96376" (raw bits) id 0xcdb-0xcfb (32) +0x0ce0|61 0f 92 05 00 c3 e3 b4 71 27 bd b2 71 f3 82 e2|a.......q'..q...| +0x0cf0|84 f9 c2 71 4a 2e fa bb c9 63 76 |...qJ....cv | +0x0cf0| 8c 7b 7c 2e 3e| .{|.>| [22]: "8c7b7c2e3e1cffb2c930c419be4b3c099c5b3dd6e25c26ebf26d75da59dc57cd" (raw bits) id 0xcfb-0xd1b (32) +0x0d00|1c ff b2 c9 30 c4 19 be 4b 3c 09 9c 5b 3d d6 e2|....0...K<..[=..| +0x0d10|5c 26 eb f2 6d 75 da 59 dc 57 cd |\&..mu.Y.W. | +0x0d10| 9a 0d 98 18 dd| .....| [23]: "9a0d9818dd19afd225681cf2954afbc6b5fbc70f5fa291fc047a4d6fa044b963" (raw bits) id 0xd1b-0xd3b (32) +0x0d20|19 af d2 25 68 1c f2 95 4a fb c6 b5 fb c7 0f 5f|...%h...J......_| +0x0d30|a2 91 fc 04 7a 4d 6f a0 44 b9 63 |....zMo.D.c | +0x0d30| a1 fa de 71 a3| ...q.| [24]: "a1fade71a3a5d4b67316e4eebb55d24c80430f6a1f93ff7df70ae66495824e30" (raw bits) id 0xd3b-0xd5b (32) +0x0d40|a5 d4 b6 73 16 e4 ee bb 55 d2 4c 80 43 0f 6a 1f|...s....U.L.C.j.| +0x0d50|93 ff 7d f7 0a e6 64 95 82 4e 30 |..}...d..N0 | +0x0d50| b4 93 c3 28 96| ...(.| [25]: "b493c328966c2494c1ce5302bd3e56ea3b2d2f02bf2f49d5d9994b970d2eb69d" (raw bits) id 0xd5b-0xd7b (32) +0x0d60|6c 24 94 c1 ce 53 02 bd 3e 56 ea 3b 2d 2f 02 bf|l$...S..>V.;-/..| +0x0d70|2f 49 d5 d9 99 4b 97 0d 2e b6 9d |/I...K..... | +0x0d70| f1 76 f8 71 3d| .v.q=| [26]: "f176f8713df9cd6f9dcab22e9cc6bf63758b06c1d2ea18dfa7f4cf195c02eaf0" (raw bits) id 0xd7b-0xd9b (32) +0x0d80|f9 cd 6f 9d ca b2 2e 9c c6 bf 63 75 8b 06 c1 d2|..o.......cu....| +0x0d90|ea 18 df a7 f4 cf 19 5c 02 ea f0 |.......\... | + | | | [5]{}: bound 0xd9b-0x1100 (869) +0x0d90| 15 | . | timestamp_delta: 20 (21) 0xd9b-0xd9c (1) + | | | timestamp: 1726286407 (2024-09-14T04:00:07Z) +0x0d90| 01 | . | id_prefix_size: 1 0xd9c-0xd9d (1) +0x0d90| 44 | D | id_prefix: "44" (raw bits) 0xd9d-0xd9e (1) +0x0d90| 02 | . | mode: "idlist" (2) 0xd9e-0xd9f (1) + | | | idlist{}: 0xd9f-0x1100 (865) +0x0d90| 1b| .| num: 27 0xd9f-0xda0 (1) + | | | ids[0:27]: 0xda0-0x1100 (864) +0x0da0|f6 f5 ae 00 dd aa d2 f2 52 0c 19 f1 3e 5c ed 4e|........R...>\.N| [0]: "f6f5ae00ddaad2f2520c19f13e5ced4ee83f6fd86b8ce17c237f0dc177238057" (raw bits) id 0xda0-0xdc0 (32) +0x0db0|e8 3f 6f d8 6b 8c e1 7c 23 7f 0d c1 77 23 80 57|.?o.k..|#...w#.W| +0x0dc0|ff 00 1b 37 9b 2e 07 e5 59 5e f5 95 92 42 9b 44|...7....Y^...B.D| [1]: "ff001b379b2e07e5595ef59592429b44f9e5883de71571dad1fac05efb29b9d3" (raw bits) id 0xdc0-0xde0 (32) +0x0dd0|f9 e5 88 3d e7 15 71 da d1 fa c0 5e fb 29 b9 d3|...=..q....^.)..| +0x0de0|1b 73 79 d5 43 29 68 84 4a 99 71 33 6a 99 af 6f|.sy.C)h.J.q3j..o| [2]: "1b7379d5432968844a9971336a99af6f94c67dd7daf222f80f8c99bf151156e2" (raw bits) id 0xde0-0xe00 (32) +0x0df0|94 c6 7d d7 da f2 22 f8 0f 8c 99 bf 15 11 56 e2|..}...".......V.| +0x0e00|02 43 22 74 db 8b 44 42 19 ff 3f a3 62 0b f0 5d|.C"t..DB..?.b..]| [3]: "02432274db8b444219ff3fa3620bf05dba70a9a90c231554e194a6ba46e41d1d" (raw bits) id 0xe00-0xe20 (32) +0x0e10|ba 70 a9 a9 0c 23 15 54 e1 94 a6 ba 46 e4 1d 1d|.p...#.T....F...| +0x0e20|0b 68 d9 51 81 4b 7a 4d b3 2c 28 0a f3 64 1c 8d|.h.Q.KzM.,(..d..| [4]: "0b68d951814b7a4db32c280af3641c8def9cdfd03f36e0f4ea8f71e30d5a3587" (raw bits) id 0xe20-0xe40 (32) +0x0e30|ef 9c df d0 3f 36 e0 f4 ea 8f 71 e3 0d 5a 35 87|....?6....q..Z5.| +0x0e40|0f bf d0 17 0e e5 a9 54 9b 02 65 ae 52 7b f1 3c|.......T..e.R{.<| [5]: "0fbfd0170ee5a9549b0265ae527bf13cd8ae635cd2db527325362922c7508585" (raw bits) id 0xe40-0xe60 (32) +0x0e50|d8 ae 63 5c d2 db 52 73 25 36 29 22 c7 50 85 85|..c\..Rs%6)".P..| +0x0e60|1c 4c b6 8d cc e9 c8 95 50 00 e8 b2 9d 79 99 f1|.L......P....y..| [6]: "1c4cb68dcce9c8955000e8b29d7999f16cbfab2a751da5015c6b4ae08110aa4f" (raw bits) id 0xe60-0xe80 (32) +0x0e70|6c bf ab 2a 75 1d a5 01 5c 6b 4a e0 81 10 aa 4f|l..*u...\kJ....O| +0x0e80|1d 74 fb 60 f7 46 79 6c 63 31 e6 49 f5 a7 db 4a|.t.`.Fylc1.I...J| [7]: "1d74fb60f746796c6331e649f5a7db4aacd840038a2b39228346abbc371d286f" (raw bits) id 0xe80-0xea0 (32) +0x0e90|ac d8 40 03 8a 2b 39 22 83 46 ab bc 37 1d 28 6f|..@..+9".F..7.(o| +0x0ea0|26 90 89 f2 38 94 8f 09 d4 cb f2 4a 8d 12 7d 96|&...8......J..}.| [8]: "269089f238948f09d4cbf24a8d127d967e99c6e55776a1e72586237668e78ac0" (raw bits) id 0xea0-0xec0 (32) +0x0eb0|7e 99 c6 e5 57 76 a1 e7 25 86 23 76 68 e7 8a c0|~...Wv..%.#vh...| +0x0ec0|29 15 34 20 ed 1d c2 35 e6 4e 51 2b 19 5c d8 68|).4 ...5.NQ+.\.h| [9]: "29153420ed1dc235e64e512b195cd8689dcaaa46deb5e0eb3e6ffcfb34e1d579" (raw bits) id 0xec0-0xee0 (32) +0x0ed0|9d ca aa 46 de b5 e0 eb 3e 6f fc fb 34 e1 d5 79|...F....>o..4..y| +0x0ee0|39 ab 0f f0 c6 5c 87 78 f5 8f 94 30 b1 ba 44 c8|9....\.x...0..D.| [10]: "39ab0ff0c65c8778f58f9430b1ba44c8529f54b3027514844d56d17fe9b90f9e" (raw bits) id 0xee0-0xf00 (32) +0x0ef0|52 9f 54 b3 02 75 14 84 4d 56 d1 7f e9 b9 0f 9e|R.T..u..MV......| +0x0f00|39 ce 6c e3 46 79 94 b4 1b b6 e7 ff 06 b2 ee 90|9.l.Fy..........| [11]: "39ce6ce3467994b41bb6e7ff06b2ee90be4ff37b6fedc610f5dd790e4be0f18b" (raw bits) id 0xf00-0xf20 (32) +0x0f10|be 4f f3 7b 6f ed c6 10 f5 dd 79 0e 4b e0 f1 8b|.O.{o.....y.K...| +0x0f20|5d da 0a 6f 20 a0 2d e4 ab dd b2 2c a8 02 dc ae|]..o .-....,....| [12]: "5dda0a6f20a02de4abddb22ca802dcae8f74013698523c1443709587ced30b59" (raw bits) id 0xf20-0xf40 (32) +0x0f30|8f 74 01 36 98 52 3c 14 43 70 95 87 ce d3 0b 59|.t.6.R<.Cp.....Y| +0x0f40|7e 07 60 01 57 96 99 f5 93 dc 79 dd b8 f5 7a e9|~.`.W.....y...z.| [13]: "7e076001579699f593dc79ddb8f57ae9869a98bd155a6b9c1d12056a89ab46de" (raw bits) id 0xf40-0xf60 (32) +0x0f50|86 9a 98 bd 15 5a 6b 9c 1d 12 05 6a 89 ab 46 de|.....Zk....j..F.| +0x0f60|8a 21 9d 57 75 c4 3b 02 e0 b6 59 af 54 92 5d 68|.!.Wu.;...Y.T.]h| [14]: "8a219d5775c43b02e0b659af54925d6866f69afa5af5e0ca12f7d1dee7b415bf" (raw bits) id 0xf60-0xf80 (32) +0x0f70|66 f6 9a fa 5a f5 e0 ca 12 f7 d1 de e7 b4 15 bf|f...Z...........| +0x0f80|94 c5 a6 bc 64 2c ea 45 2d 4f 3f 0c 9d cc 37 8f|....d,.E-O?...7.| [15]: "94c5a6bc642cea452d4f3f0c9dcc378f15cfd829035cbe9ace7d9a2fdf289d64" (raw bits) id 0xf80-0xfa0 (32) +0x0f90|15 cf d8 29 03 5c be 9a ce 7d 9a 2f df 28 9d 64|...).\...}./.(.d| +0x0fa0|9a 3b ca 15 6c 5b 33 40 93 2a 79 5e 71 8a 84 4d|.;..l[3@.*y^q..M| [16]: "9a3bca156c5b3340932a795e718a844dee09efe0c9ab6464d3b98f61fcf0bcc2" (raw bits) id 0xfa0-0xfc0 (32) +0x0fb0|ee 09 ef e0 c9 ab 64 64 d3 b9 8f 61 fc f0 bc c2|......dd...a....| +0x0fc0|9b 8c f3 33 eb 8b 66 0b 75 49 a8 1b 9d a1 69 3e|...3..f.uI....i>| [17]: "9b8cf333eb8b660b7549a81b9da1693e56ae639c26d03a2fc55b337dc100c206" (raw bits) id 0xfc0-0xfe0 (32) +0x0fd0|56 ae 63 9c 26 d0 3a 2f c5 5b 33 7d c1 00 c2 06|V.c.&.:/.[3}....| +0x0fe0|d5 0f b9 30 cf 8a cc 82 95 7e b0 b5 9a 37 59 fe|...0.....~...7Y.| [18]: "d50fb930cf8acc82957eb0b59a3759fe8175535b94457561e4ef5da6f74f65db" (raw bits) id 0xfe0-0x1000 (32) +0x0ff0|81 75 53 5b 94 45 75 61 e4 ef 5d a6 f7 4f 65 db|.uS[.Eua..]..Oe.| +0x1000|d6 af d2 22 31 83 ee 17 c3 79 7f 94 69 8e 69 ae|..."1....y..i.i.| [19]: "d6afd2223183ee17c3797f94698e69aeea387aec510425b1e7271efb4630c54b" (raw bits) id 0x1000-0x1020 (32) +0x1010|ea 38 7a ec 51 04 25 b1 e7 27 1e fb 46 30 c5 4b|.8z.Q.%..'..F0.K| +0x1020|e0 a4 de 11 d7 b0 69 52 b3 10 d5 04 dc 95 14 b6|......iR........| [20]: "e0a4de11d7b06952b310d504dc9514b6f4228971ce1dd6ad68300b92f34faf83" (raw bits) id 0x1020-0x1040 (32) +0x1030|f4 22 89 71 ce 1d d6 ad 68 30 0b 92 f3 4f af 83|.".q....h0...O..| +0x1040|e3 26 81 bf f1 c7 cc f8 b6 ac 0e 19 ec 6d cf b6|.&...........m..| [21]: "e32681bff1c7ccf8b6ac0e19ec6dcfb617461a5765b90b658e789b54834a4b1f" (raw bits) id 0x1040-0x1060 (32) +0x1050|17 46 1a 57 65 b9 0b 65 8e 78 9b 54 83 4a 4b 1f|.F.We..e.x.T.JK.| +0x1060|ff 30 43 41 0c 8b 0f 88 1b 5c a8 40 2a 86 d4 53|.0CA.....\.@*..S| [22]: "ff3043410c8b0f881b5ca8402a86d453da973b4318389708695b768a1b18d856" (raw bits) id 0x1060-0x1080 (32) +0x1070|da 97 3b 43 18 38 97 08 69 5b 76 8a 1b 18 d8 56|..;C.8..i[v....V| +0x1080|16 57 37 f1 38 96 56 36 96 25 81 57 0a aa f8 dc|.W7.8.V6.%.W....| [23]: "165737f138965636962581570aaaf8dc30b5361a8d6de9d4e6130314b397fb66" (raw bits) id 0x1080-0x10a0 (32) +0x1090|30 b5 36 1a 8d 6d e9 d4 e6 13 03 14 b3 97 fb 66|0.6..m.........f| +0x10a0|18 be aa 57 e6 46 e1 58 1f 59 fc 01 fd 0d c1 b4|...W.F.X.Y......| [24]: "18beaa57e646e1581f59fc01fd0dc1b4af2a3c142c29018ff70234cbc55553ea" (raw bits) id 0x10a0-0x10c0 (32) +0x10b0|af 2a 3c 14 2c 29 01 8f f7 02 34 cb c5 55 53 ea|.*<.,)....4..US.| +0x10c0|27 ee 8c 7c e7 da cd c7 87 e8 aa 47 b9 83 dc 71|'..|.......G...q| [25]: "27ee8c7ce7dacdc787e8aa47b983dc711c1f6def7a17c8f3e8423f599baf20f2" (raw bits) id 0x10c0-0x10e0 (32) +0x10d0|1c 1f 6d ef 7a 17 c8 f3 e8 42 3f 59 9b af 20 f2|..m.z....B?Y.. .| +0x10e0|40 44 94 a5 0d e8 c9 26 f7 ef ef 86 d5 02 d7 ac|@D.....&........| [26]: "404494a50de8c926f7efef86d502d7aca3fab039d0caf3bd3aa3f3d1175f5339" (raw bits) id 0x10e0-0x1100 (32) +0x10f0|a3 fa b0 39 d0 ca f3 bd 3a a3 f3 d1 17 5f 53 39|...9....:...._S9| + | | | [6]{}: bound 0x1100-0x1466 (870) +0x1100|4b |K | timestamp_delta: 74 (75) 0x1100-0x1101 (1) + | | | timestamp: 1726286481 (2024-09-14T04:01:21Z) +0x1100| 02 | . | id_prefix_size: 2 0x1101-0x1102 (1) +0x1100| 80 7a | .z | id_prefix: "807a" (raw bits) 0x1102-0x1104 (2) +0x1100| 02 | . | mode: "idlist" (2) 0x1104-0x1105 (1) + | | | idlist{}: 0x1105-0x1466 (865) +0x1100| 1b | . | num: 27 0x1105-0x1106 (1) + | | | ids[0:27]: 0x1106-0x1466 (864) +0x1100| 44 c0 3d ca 4f 2b 86 93 e3 a7| D.=.O+....| [0]: "44c03dca4f2b8693e3a787e58101ff8ffa8c2b683ff3406f19a9b69e0c7b0de1" (raw bits) id 0x1106-0x1126 (32) +0x1110|87 e5 81 01 ff 8f fa 8c 2b 68 3f f3 40 6f 19 a9|........+h?.@o..| +0x1120|b6 9e 0c 7b 0d e1 |...{.. | +0x1120| 48 16 a2 d8 ba ab 93 d2 3c c1| H.......<.| [1]: "4816a2d8baab93d23cc156ec94fec7cdd6eccabcf1629c43b1486d193f400115" (raw bits) id 0x1126-0x1146 (32) +0x1130|56 ec 94 fe c7 cd d6 ec ca bc f1 62 9c 43 b1 48|V..........b.C.H| +0x1140|6d 19 3f 40 01 15 |m.?@.. | +0x1140| 55 e7 75 10 70 a1 22 6a a8 aa| U.u.p."j..| [2]: "55e7751070a1226aa8aa45bce6133bcc09fdd85e1538fb254968ee9b2e474fa8" (raw bits) id 0x1146-0x1166 (32) +0x1150|45 bc e6 13 3b cc 09 fd d8 5e 15 38 fb 25 49 68|E...;....^.8.%Ih| +0x1160|ee 9b 2e 47 4f a8 |...GO. | +0x1160| 62 bf 27 96 0f de c1 25 4e 87| b.'....%N.| [3]: "62bf27960fdec1254e87c4d86f34570ca01cb720a1257a4f600033f136005dd4" (raw bits) id 0x1166-0x1186 (32) +0x1170|c4 d8 6f 34 57 0c a0 1c b7 20 a1 25 7a 4f 60 00|..o4W.... .%zO`.| +0x1180|33 f1 36 00 5d d4 |3.6.]. | +0x1180| 71 49 e8 c3 f4 df c7 c6 08 7e| qI.......~| [4]: "7149e8c3f4dfc7c6087e9f001297fe194c5cfbefea6674d45fc466346bd8d0b7" (raw bits) id 0x1186-0x11a6 (32) +0x1190|9f 00 12 97 fe 19 4c 5c fb ef ea 66 74 d4 5f c4|......L\...ft._.| +0x11a0|66 34 6b d8 d0 b7 |f4k... | +0x11a0| 7e 27 fe b7 32 b3 6d 62 9b 48| ~'..2.mb.H| [5]: "7e27feb732b36d629b48b2ec16a6fa8f8b29e0290e4373897adf266ddedd5dd5" (raw bits) id 0x11a6-0x11c6 (32) +0x11b0|b2 ec 16 a6 fa 8f 8b 29 e0 29 0e 43 73 89 7a df|.......).).Cs.z.| +0x11c0|26 6d de dd 5d d5 |&m..]. | +0x11c0| 82 b2 d7 33 07 92 68 d4 80 20| ...3..h.. | [6]: "82b2d733079268d480205445b672bc1a72300ffe5ac65dfc89bb3ecec80e7c4e" (raw bits) id 0x11c6-0x11e6 (32) +0x11d0|54 45 b6 72 bc 1a 72 30 0f fe 5a c6 5d fc 89 bb|TE.r..r0..Z.]...| +0x11e0|3e ce c8 0e 7c 4e |>...|N | +0x11e0| 9e aa 6d 5f f2 da f6 93 d0 55| ..m_.....U| [7]: "9eaa6d5ff2daf693d0551c95b1f62ae166ffd3c2702ccf2ec3a01ee0331e926f" (raw bits) id 0x11e6-0x1206 (32) +0x11f0|1c 95 b1 f6 2a e1 66 ff d3 c2 70 2c cf 2e c3 a0|....*.f...p,....| +0x1200|1e e0 33 1e 92 6f |..3..o | +0x1200| a2 ab fc a3 ee d0 7f ed d9 2e| ..........| [8]: "a2abfca3eed07fedd92ee9eaff5565b59abf670cccbd6cf17fddcb4bd60c81bc" (raw bits) id 0x1206-0x1226 (32) +0x1210|e9 ea ff 55 65 b5 9a bf 67 0c cc bd 6c f1 7f dd|...Ue...g...l...| +0x1220|cb 4b d6 0c 81 bc |.K.... | +0x1220| a3 44 27 3b 70 dd 33 07 e1 40| .D';p.3..@| [9]: "a344273b70dd3307e140384fbf1c263a5aa02f17354e585c927244433cbdaefe" (raw bits) id 0x1226-0x1246 (32) +0x1230|38 4f bf 1c 26 3a 5a a0 2f 17 35 4e 58 5c 92 72|8O..&:Z./.5NX\.r| +0x1240|44 43 3c bd ae fe |DC<... | +0x1240| a4 86 e9 ba 03 95 63 fe 23 87| ......c.#.| [10]: "a486e9ba039563fe238732ac0bc55cc5b669f1a54fb6968f18f3f21da7d78ad2" (raw bits) id 0x1246-0x1266 (32) +0x1250|32 ac 0b c5 5c c5 b6 69 f1 a5 4f b6 96 8f 18 f3|2...\..i..O.....| +0x1260|f2 1d a7 d7 8a d2 |...... | +0x1260| c2 ad f2 4d 92 60 11 e8 63 29| ...M.`..c)| [11]: "c2adf24d926011e8632963fd9eb92aa41129caa2440ddc590d98a588a6c41331" (raw bits) id 0x1266-0x1286 (32) +0x1270|63 fd 9e b9 2a a4 11 29 ca a2 44 0d dc 59 0d 98|c...*..)..D..Y..| +0x1280|a5 88 a6 c4 13 31 |.....1 | +0x1280| ca 5c 84 5a 22 56 18 96 44 2e| .\.Z"V..D.| [12]: "ca5c845a22561896442e02fbf8d51ce935b715dd810b050b7931a8b317f901a1" (raw bits) id 0x1286-0x12a6 (32) +0x1290|02 fb f8 d5 1c e9 35 b7 15 dd 81 0b 05 0b 79 31|......5.......y1| +0x12a0|a8 b3 17 f9 01 a1 |...... | +0x12a0| cb 34 c2 2d 5f a4 1a 44 a1 c8| .4.-_..D..| [13]: "cb34c22d5fa41a44a1c8bd2f93fc75ae04ad2f9947933033afafb53d5f58e5f2" (raw bits) id 0x12a6-0x12c6 (32) +0x12b0|bd 2f 93 fc 75 ae 04 ad 2f 99 47 93 30 33 af af|./..u.../.G.03..| +0x12c0|b5 3d 5f 58 e5 f2 |.=_X.. | +0x12c0| f4 e9 e0 76 53 b2 bc 7b 28 5a| ...vS..{(Z| [14]: "f4e9e07653b2bc7b285adee77fbac2c0d6886ddac034d935e36992aca4ade342" (raw bits) id 0x12c6-0x12e6 (32) +0x12d0|de e7 7f ba c2 c0 d6 88 6d da c0 34 d9 35 e3 69|........m..4.5.i| +0x12e0|92 ac a4 ad e3 42 |.....B | +0x12e0| fa 14 b7 d0 1f 34 7f 4d 02 9e| .....4.M..| [15]: "fa14b7d01f347f4d029e7a653961bfcb88e305332a289dbaadda5897713cda90" (raw bits) id 0x12e6-0x1306 (32) +0x12f0|7a 65 39 61 bf cb 88 e3 05 33 2a 28 9d ba ad da|ze9a.....3*(....| +0x1300|58 97 71 3c da 90 |X.q<.. | +0x1300| 05 0e 5b be ea 89 fb 7d ef 12| ..[....}..| [16]: "050e5bbeea89fb7def128660b3d1769c83ce451d31c77e2b6aa3a4dffaaf5362" (raw bits) id 0x1306-0x1326 (32) +0x1310|86 60 b3 d1 76 9c 83 ce 45 1d 31 c7 7e 2b 6a a3|.`..v...E.1.~+j.| +0x1320|a4 df fa af 53 62 |....Sb | +0x1320| 07 f8 5d 3a 17 b2 25 72 d7 19| ..]:..%r..| [17]: "07f85d3a17b22572d719271eb52276ef74e99589046ec88d2c1c16b93f2ebb08" (raw bits) id 0x1326-0x1346 (32) +0x1330|27 1e b5 22 76 ef 74 e9 95 89 04 6e c8 8d 2c 1c|'.."v.t....n..,.| +0x1340|16 b9 3f 2e bb 08 |..?... | +0x1340| 1b 31 de 5f 75 7a a9 da b8 bc| .1._uz....| [18]: "1b31de5f757aa9dab8bc9a9e0a004b9673629d70ef8e885e511b58f579853801" (raw bits) id 0x1346-0x1366 (32) +0x1350|9a 9e 0a 00 4b 96 73 62 9d 70 ef 8e 88 5e 51 1b|....K.sb.p...^Q.| +0x1360|58 f5 79 85 38 01 |X.y.8. | +0x1360| 4b 49 e9 7f 64 72 81 d1 9f 3e| KI..dr...>| [19]: "4b49e97f647281d19f3e95f31734ff4ee905641e3eb6478ae036a0d01da0ed44" (raw bits) id 0x1366-0x1386 (32) +0x1370|95 f3 17 34 ff 4e e9 05 64 1e 3e b6 47 8a e0 36|...4.N..d.>.G..6| +0x1380|a0 d0 1d a0 ed 44 |.....D | +0x1380| 4c 48 1a f8 e7 7c 35 8d c8 1d| LH...|5...| [20]: "4c481af8e77c358dc81d6228a565ed91927c1e91fd638dfc6a5aab6dd3cc9987" (raw bits) id 0x1386-0x13a6 (32) +0x1390|62 28 a5 65 ed 91 92 7c 1e 91 fd 63 8d fc 6a 5a|b(.e...|...c..jZ| +0x13a0|ab 6d d3 cc 99 87 |.m.... | +0x13a0| 50 68 cd e7 b4 de 1b b6 27 e3| Ph......'.| [21]: "5068cde7b4de1bb627e3251f24ed1a6d348addc026e07973665809c4f52826d4" (raw bits) id 0x13a6-0x13c6 (32) +0x13b0|25 1f 24 ed 1a 6d 34 8a dd c0 26 e0 79 73 66 58|%.$..m4...&.ysfX| +0x13c0|09 c4 f5 28 26 d4 |...(&. | +0x13c0| 57 5e 5d a9 72 c0 29 01 4c 10| W^].r.).L.| [22]: "575e5da972c029014c1053d7b8df7dcd79ee3c855a4e9d35a0ea764699c08c2e" (raw bits) id 0x13c6-0x13e6 (32) +0x13d0|53 d7 b8 df 7d cd 79 ee 3c 85 5a 4e 9d 35 a0 ea|S...}.y.<.ZN.5..| +0x13e0|76 46 99 c0 8c 2e |vF.... | +0x13e0| 58 23 71 eb 0e a0 3e 85 a0 52| X#q...>..R| [23]: "582371eb0ea03e85a052eaa76e0d2bf2debc185be1a13cd8eaff2052856c1f21" (raw bits) id 0x13e6-0x1406 (32) +0x13f0|ea a7 6e 0d 2b f2 de bc 18 5b e1 a1 3c d8 ea ff|..n.+....[..<...| +0x1400|20 52 85 6c 1f 21 | R.l.! | +0x1400| 68 ad 8b ce 51 d8 ea ec 03 46| h...Q....F| [24]: "68ad8bce51d8eaec03468ffa0ad3992d70174755e4ef175db10978289df2c33e" (raw bits) id 0x1406-0x1426 (32) +0x1410|8f fa 0a d3 99 2d 70 17 47 55 e4 ef 17 5d b1 09|.....-p.GU...]..| +0x1420|78 28 9d f2 c3 3e |x(...> | +0x1420| 72 2f bd bc 54 48 9a e0 f8 0b| r/..TH....| [25]: "722fbdbc54489ae0f80b63c5a1da9cd88d14c6f166cc3364cdf00b477eea8a1f" (raw bits) id 0x1426-0x1446 (32) +0x1430|63 c5 a1 da 9c d8 8d 14 c6 f1 66 cc 33 64 cd f0|c.........f.3d..| +0x1440|0b 47 7e ea 8a 1f |.G~... | +0x1440| 80 55 e9 b5 f3 20 73 4d ed 94| .U... sM..| [26]: "8055e9b5f320734ded94c110f14f458eb7c5a7faeaf616e0a3f62e16b7c68271" (raw bits) id 0x1446-0x1466 (32) +0x1450|c1 10 f1 4f 45 8e b7 c5 a7 fa ea f6 16 e0 a3 f6|...OE...........| +0x1460|2e 16 b7 c6 82 71 |.....q | + | | | [7]{}: bound 0x1466-0x17cb (869) +0x1460| 0b | . | timestamp_delta: 10 (11) 0x1466-0x1467 (1) + | | | timestamp: 1726286491 (2024-09-14T04:01:31Z) +0x1460| 01 | . | id_prefix_size: 1 0x1467-0x1468 (1) +0x1460| f4 | . | id_prefix: "f4" (raw bits) 0x1468-0x1469 (1) +0x1460| 02 | . | mode: "idlist" (2) 0x1469-0x146a (1) + | | | idlist{}: 0x146a-0x17cb (865) +0x1460| 1b | . | num: 27 0x146a-0x146b (1) + | | | ids[0:27]: 0x146b-0x17cb (864) +0x1460| 80 7a 07 96 a1| .z...| [0]: "807a0796a1e1d178a2fe16067172f20b5b27f63a3591d1340147427f1b223229" (raw bits) id 0x146b-0x148b (32) +0x1470|e1 d1 78 a2 fe 16 06 71 72 f2 0b 5b 27 f6 3a 35|..x....qr..['.:5| +0x1480|91 d1 34 01 47 42 7f 1b 22 32 29 |..4.GB.."2) | +0x1480| 86 2f a9 59 5e| ./.Y^| [1]: "862fa9595ed20e347f3a71664c788bd3ba7137d0e9526bf1b5b5def99a168b53" (raw bits) id 0x148b-0x14ab (32) +0x1490|d2 0e 34 7f 3a 71 66 4c 78 8b d3 ba 71 37 d0 e9|..4.:qfLx...q7..| +0x14a0|52 6b f1 b5 b5 de f9 9a 16 8b 53 |Rk........S | +0x14a0| 89 01 75 0c 37| ..u.7| [2]: "8901750c378c6d65d182ec104ca6a4ed33712258ce1f6ac35f6e3a54410801db" (raw bits) id 0x14ab-0x14cb (32) +0x14b0|8c 6d 65 d1 82 ec 10 4c a6 a4 ed 33 71 22 58 ce|.me....L...3q"X.| +0x14c0|1f 6a c3 5f 6e 3a 54 41 08 01 db |.j._n:TA... | +0x14c0| 8c 77 f2 63 18| .w.c.| [3]: "8c77f263188b2487b13ec969416af15acaa9abea275775a58f68ed391430c431" (raw bits) id 0x14cb-0x14eb (32) +0x14d0|8b 24 87 b1 3e c9 69 41 6a f1 5a ca a9 ab ea 27|.$..>.iAj.Z....'| +0x14e0|57 75 a5 8f 68 ed 39 14 30 c4 31 |Wu..h.9.0.1 | +0x14e0| 90 ff dc 34 ea| ...4.| [4]: "90ffdc34ea1bc6a608b00b8679eeda22d48443b36b5be5ce4abcfd27ad66e1e8" (raw bits) id 0x14eb-0x150b (32) +0x14f0|1b c6 a6 08 b0 0b 86 79 ee da 22 d4 84 43 b3 6b|.......y.."..C.k| +0x1500|5b e5 ce 4a bc fd 27 ad 66 e1 e8 |[..J..'.f.. | +0x1500| c1 bb 94 e4 8a| .....| [5]: "c1bb94e48ab7f94448101af2f79439039e65b37b6e4c92fc6595aacb24a976d9" (raw bits) id 0x150b-0x152b (32) +0x1510|b7 f9 44 48 10 1a f2 f7 94 39 03 9e 65 b3 7b 6e|..DH.....9..e.{n| +0x1520|4c 92 fc 65 95 aa cb 24 a9 76 d9 |L..e...$.v. | +0x1520| c2 6e c6 9e ba| .n...| [6]: "c26ec69ebaa2936b11b5225b67bb7afa58f04164c8a40ec74ab846acedb7a651" (raw bits) id 0x152b-0x154b (32) +0x1530|a2 93 6b 11 b5 22 5b 67 bb 7a fa 58 f0 41 64 c8|..k.."[g.z.X.Ad.| +0x1540|a4 0e c7 4a b8 46 ac ed b7 a6 51 |...J.F....Q | +0x1540| cf 30 68 d3 8a| .0h..| [7]: "cf3068d38a9c83bb1c1c5b58faa4c8331fa969a0b0c43e77504f4bdfa6c9fe05" (raw bits) id 0x154b-0x156b (32) +0x1550|9c 83 bb 1c 1c 5b 58 fa a4 c8 33 1f a9 69 a0 b0|.....[X...3..i..| +0x1560|c4 3e 77 50 4f 4b df a6 c9 fe 05 |.>wPOK..... | +0x1560| fe 09 b9 d6 3f| ....?| [8]: "fe09b9d63f9fedf55d85dc22959c2cea73c3c1998d5233aa3bb84047f40c3666" (raw bits) id 0x156b-0x158b (32) +0x1570|9f ed f5 5d 85 dc 22 95 9c 2c ea 73 c3 c1 99 8d|...].."..,.s....| +0x1580|52 33 aa 3b b8 40 47 f4 0c 36 66 |R3.;.@G..6f | +0x1580| 03 63 65 6a 7e| .cej~| [9]: "0363656a7efdf2d02158e721b2043e6a71867d21f64df3dd4bf2e85591f923ef" (raw bits) id 0x158b-0x15ab (32) +0x1590|fd f2 d0 21 58 e7 21 b2 04 3e 6a 71 86 7d 21 f6|...!X.!..>jq.}!.| +0x15a0|4d f3 dd 4b f2 e8 55 91 f9 23 ef |M..K..U..#. | +0x15a0| 18 99 a4 82 6c| ....l| [10]: "1899a4826ce8d5e625e5af5caf724224589b34a7ae0dc881dfe7b4680029e39d" (raw bits) id 0x15ab-0x15cb (32) +0x15b0|e8 d5 e6 25 e5 af 5c af 72 42 24 58 9b 34 a7 ae|...%..\.rB$X.4..| +0x15c0|0d c8 81 df e7 b4 68 00 29 e3 9d |......h.).. | +0x15c0| 40 08 40 23 1b| @.@#.| [11]: "400840231b69bb9d7ed3726d67b5dcf4898f41e74d2c253e223b3de34c6144f1" (raw bits) id 0x15cb-0x15eb (32) +0x15d0|69 bb 9d 7e d3 72 6d 67 b5 dc f4 89 8f 41 e7 4d|i..~.rmg.....A.M| +0x15e0|2c 25 3e 22 3b 3d e3 4c 61 44 f1 |,%>";=.LaD. | +0x15e0| 41 ef 2e 17 08| A....| [12]: "41ef2e17080e53942935e3204f96bb53cd9201829959731b44ee0fd0186bdb85" (raw bits) id 0x15eb-0x160b (32) +0x15f0|0e 53 94 29 35 e3 20 4f 96 bb 53 cd 92 01 82 99|.S.)5. O..S.....| +0x1600|59 73 1b 44 ee 0f d0 18 6b db 85 |Ys.D....k.. | +0x1600| 5a 2e 01 46 9a| Z..F.| [13]: "5a2e01469a5e162d93f83201d3107c5b1f3bcbee48c240d402d72dfa0dd422b1" (raw bits) id 0x160b-0x162b (32) +0x1610|5e 16 2d 93 f8 32 01 d3 10 7c 5b 1f 3b cb ee 48|^.-..2...|[.;..H| +0x1620|c2 40 d4 02 d7 2d fa 0d d4 22 b1 |.@...-...". | +0x1620| 76 b1 98 a3 6e| v...n| [14]: "76b198a36eb589fb8537ada5699ba4ceed2504c891baf6c9f15196fa281949c6" (raw bits) id 0x162b-0x164b (32) +0x1630|b5 89 fb 85 37 ad a5 69 9b a4 ce ed 25 04 c8 91|....7..i....%...| +0x1640|ba f6 c9 f1 51 96 fa 28 19 49 c6 |....Q..(.I. | +0x1640| 7c b9 70 63 7d| |.pc}| [15]: "7cb970637d13ad4ffc979a5ce00382764a7f6b3bcff086ed3e6f7b675fe168f4" (raw bits) id 0x164b-0x166b (32) +0x1650|13 ad 4f fc 97 9a 5c e0 03 82 76 4a 7f 6b 3b cf|..O...\...vJ.k;.| +0x1660|f0 86 ed 3e 6f 7b 67 5f e1 68 f4 |...>o{g_.h. | +0x1660| 7c ef 3d 49 fa| |.=I.| [16]: "7cef3d49fa236acf140cfac13f898be51cafc12da0c0af9a3eeb2d22be4a374f" (raw bits) id 0x166b-0x168b (32) +0x1670|23 6a cf 14 0c fa c1 3f 89 8b e5 1c af c1 2d a0|#j.....?......-.| +0x1680|c0 af 9a 3e eb 2d 22 be 4a 37 4f |...>.-".J7O | +0x1680| 7d 0f 5a 68 b3| }.Zh.| [17]: "7d0f5a68b3572202eee59a8f6d00d49aff833f3b7ff8257726b615f1a76cf146" (raw bits) id 0x168b-0x16ab (32) +0x1690|57 22 02 ee e5 9a 8f 6d 00 d4 9a ff 83 3f 3b 7f|W".....m.....?;.| +0x16a0|f8 25 77 26 b6 15 f1 a7 6c f1 46 |.%w&....l.F | +0x16a0| 82 ad 74 06 8d| ..t..| [18]: "82ad74068dbb658aef40578d8fe2c1304ff97727bff53199383ea07027d0a85b" (raw bits) id 0x16ab-0x16cb (32) +0x16b0|bb 65 8a ef 40 57 8d 8f e2 c1 30 4f f9 77 27 bf|.e..@W....0O.w'.| +0x16c0|f5 31 99 38 3e a0 70 27 d0 a8 5b |.1.8>.p'..[ | +0x16c0| 83 cd d5 ba 06| .....| [19]: "83cdd5ba06689ee54f514f93fcad928f9b21c39e10b64abcc9a8f330da5255bb" (raw bits) id 0x16cb-0x16eb (32) +0x16d0|68 9e e5 4f 51 4f 93 fc ad 92 8f 9b 21 c3 9e 10|h..OQO......!...| +0x16e0|b6 4a bc c9 a8 f3 30 da 52 55 bb |.J....0.RU. | +0x16e0| 87 af ca 8d cf| .....| [20]: "87afca8dcf3f11f20691cde9108c9c58995fe98c29506ba4e55e3303ceaef9b4" (raw bits) id 0x16eb-0x170b (32) +0x16f0|3f 11 f2 06 91 cd e9 10 8c 9c 58 99 5f e9 8c 29|?.........X._..)| +0x1700|50 6b a4 e5 5e 33 03 ce ae f9 b4 |Pk..^3..... | +0x1700| 8b 8a 6c 9d 7f| ..l..| [21]: "8b8a6c9d7f7174febc7590c6f38780814a6cc9aa0a9e1cd344befbc429ec8b2e" (raw bits) id 0x170b-0x172b (32) +0x1710|71 74 fe bc 75 90 c6 f3 87 80 81 4a 6c c9 aa 0a|qt..u......Jl...| +0x1720|9e 1c d3 44 be fb c4 29 ec 8b 2e |...D...)... | +0x1720| 96 e0 dd e3 d7| .....| [22]: "96e0dde3d75addfa46f2f140852467d1095eb3637a33b291a691dd3905772463" (raw bits) id 0x172b-0x174b (32) +0x1730|5a dd fa 46 f2 f1 40 85 24 67 d1 09 5e b3 63 7a|Z..F..@.$g..^.cz| +0x1740|33 b2 91 a6 91 dd 39 05 77 24 63 |3.....9.w$c | +0x1740| ae 09 c1 e3 72| ....r| [23]: "ae09c1e372d3e7e4d6cb377a58feec5d8ea77d9b800467e002f195656fc4cf13" (raw bits) id 0x174b-0x176b (32) +0x1750|d3 e7 e4 d6 cb 37 7a 58 fe ec 5d 8e a7 7d 9b 80|.....7zX..]..}..| +0x1760|04 67 e0 02 f1 95 65 6f c4 cf 13 |.g....eo... | +0x1760| b3 16 b2 da 0c| .....| [24]: "b316b2da0c7f5c91955ee13fd8e3c03c64dd0987235f3de855190a343e0a5102" (raw bits) id 0x176b-0x178b (32) +0x1770|7f 5c 91 95 5e e1 3f d8 e3 c0 3c 64 dd 09 87 23|.\..^.?....Q. | +0x1780| c1 71 a3 64 30| .q.d0| [25]: "c171a364300ec8229b59ad4c1aa6e65104f434ed5a62ab911080b3ecb8c8c1f7" (raw bits) id 0x178b-0x17ab (32) +0x1790|0e c8 22 9b 59 ad 4c 1a a6 e6 51 04 f4 34 ed 5a|..".Y.L...Q..4.Z| +0x17a0|62 ab 91 10 80 b3 ec b8 c8 c1 f7 |b.......... | +0x17a0| dd 81 3e 41 18| ..>A.| [26]: "dd813e411837c87e4c5e79200ff11bcfbda7ac521bfb2df5279bc74172649191" (raw bits) id 0x17ab-0x17cb (32) +0x17b0|37 c8 7e 4c 5e 79 20 0f f1 1b cf bd a7 ac 52 1b|7.~L^y .......R.| +0x17c0|fb 2d f5 27 9b c7 41 72 64 91 91 |.-.'..Ard.. | + | | | [8]{}: bound 0x17cb-0x1b30 (869) +0x17c0| 15 | . | timestamp_delta: 20 (21) 0x17cb-0x17cc (1) + | | | timestamp: 1726286511 (2024-09-14T04:01:51Z) +0x17c0| 01 | . | id_prefix_size: 1 0x17cc-0x17cd (1) +0x17c0| 63 | c | id_prefix: "63" (raw bits) 0x17cd-0x17ce (1) +0x17c0| 02 | . | mode: "idlist" (2) 0x17ce-0x17cf (1) + | | | idlist{}: 0x17cf-0x1b30 (865) +0x17c0| 1b| .| num: 27 0x17cf-0x17d0 (1) + | | | ids[0:27]: 0x17d0-0x1b30 (864) +0x17d0|f4 bf d0 18 0b 6f f2 87 e1 97 54 8b 36 0c bc 56|.....o....T.6..V| [0]: "f4bfd0180b6ff287e197548b360cbc5616906b4c0f3b017f1943d61b4bad031f" (raw bits) id 0x17d0-0x17f0 (32) +0x17e0|16 90 6b 4c 0f 3b 01 7f 19 43 d6 1b 4b ad 03 1f|..kL.;...C..K...| +0x17f0|f9 37 2d 74 9c 18 36 f2 b5 d2 de 1b 47 b1 00 0a|.7-t..6.....G...| [1]: "f9372d749c1836f2b5d2de1b47b1000af6840cdedca8703ac8f784b0dcae68ed" (raw bits) id 0x17f0-0x1810 (32) +0x1800|f6 84 0c de dc a8 70 3a c8 f7 84 b0 dc ae 68 ed|......p:......h.| +0x1810|0a 9c 8b c2 c2 d0 98 22 31 4b 20 75 55 5c 3d f5|......."1K uU\=.| [2]: "0a9c8bc2c2d09822314b2075555c3df5a72c621ad532e592d7cd4ab7e49f5f73" (raw bits) id 0x1810-0x1830 (32) +0x1820|a7 2c 62 1a d5 32 e5 92 d7 cd 4a b7 e4 9f 5f 73|.,b..2....J..._s| +0x1830|19 3e 59 fe 4e 50 76 02 ae 32 f8 db e5 70 40 be|.>Y.NPv..2...p@.| [3]: "193e59fe4e507602ae32f8dbe57040be964d2983e5b68fab289c444cbdc53733" (raw bits) id 0x1830-0x1850 (32) +0x1840|96 4d 29 83 e5 b6 8f ab 28 9c 44 4c bd c5 37 33|.M).....(.DL..73| +0x1850|22 6e 34 81 60 28 9e 7a ff ff af 7c a7 fa da 9f|"n4.`(.z...|....| [4]: "226e348160289e7affffaf7ca7fada9fe8a675dd3badd0f0ac5f4e326832b608" (raw bits) id 0x1850-0x1870 (32) +0x1860|e8 a6 75 dd 3b ad d0 f0 ac 5f 4e 32 68 32 b6 08|..u.;...._N2h2..| +0x1870|41 58 53 06 87 6e 2d 34 da cf 26 61 2a ab 71 27|AXS..n-4..&a*.q'| [5]: "41585306876e2d34dacf26612aab71278ae934745070a1871e039bb3f5d7e57a" (raw bits) id 0x1870-0x1890 (32) +0x1880|8a e9 34 74 50 70 a1 87 1e 03 9b b3 f5 d7 e5 7a|..4tPp.........z| +0x1890|42 8b 42 7e d3 ab 9b 50 15 a3 61 77 a0 d7 47 58|B.B~...P..aw..GX| [6]: "428b427ed3ab9b5015a36177a0d74758ceba6c47754c7e7e0b7f0c678458be26" (raw bits) id 0x1890-0x18b0 (32) +0x18a0|ce ba 6c 47 75 4c 7e 7e 0b 7f 0c 67 84 58 be 26|..lGuL~~...g.X.&| +0x18b0|43 38 ea 76 fc 3d 58 42 e9 68 fa c5 2b e8 f1 27|C8.v.=XB.h..+..'| [7]: "4338ea76fc3d5842e968fac52be8f127fabbb2b4ca06ce308606c8972af08268" (raw bits) id 0x18b0-0x18d0 (32) +0x18c0|fa bb b2 b4 ca 06 ce 30 86 06 c8 97 2a f0 82 68|.......0....*..h| +0x18d0|66 53 ac cf 00 73 b9 af aa f3 77 27 f9 1e 77 0e|fS...s....w'..w.| [8]: "6653accf0073b9afaaf37727f91e770e9077bd868f67c1a6218f0c7fdf25f3b4" (raw bits) id 0x18d0-0x18f0 (32) +0x18e0|90 77 bd 86 8f 67 c1 a6 21 8f 0c 7f df 25 f3 b4|.w...g..!....%..| +0x18f0|68 71 30 fc 0e 5d f7 ff 2b 3c 66 e9 53 f4 a2 18|hq0..]..+.n.| +0x19d0|ae 24 e8 d5 7d c2 50 3a 7f ca 12 83 f2 85 d1 3d|.$..}.P:.......=| [16]: "ae24e8d57dc2503a7fca1283f285d13df02cb864afc3459e389476dc8f1d4762" (raw bits) id 0x19d0-0x19f0 (32) +0x19e0|f0 2c b8 64 af c3 45 9e 38 94 76 dc 8f 1d 47 62|.,.d..E.8.v...Gb| +0x19f0|b0 10 20 a3 34 0f a1 97 d7 4a a9 6b da 6d 2e 92|.. .4....J.k.m..| [17]: "b01020a3340fa197d74aa96bda6d2e921d8ec7de6dfed2242d8a8130b324e387" (raw bits) id 0x19f0-0x1a10 (32) +0x1a00|1d 8e c7 de 6d fe d2 24 2d 8a 81 30 b3 24 e3 87|....m..$-..0.$..| +0x1a10|b6 ec b4 2f 66 3e c9 62 28 f9 48 3d bc cb 3d bd|.../f>.b(.H=..=.| [18]: "b6ecb42f663ec96228f9483dbccb3dbd385e882da926dfe094356f2f463c43ac" (raw bits) id 0x1a10-0x1a30 (32) +0x1a20|38 5e 88 2d a9 26 df e0 94 35 6f 2f 46 3c 43 ac|8^.-.&...5o/F..D.n...| [4]: "90983ee5ba44906e83b79894215fdcda9bbda47997162aa2251b1364f186b829" (raw bits) id 0x1bb5-0x1bd5 (32) +0x1bc0|94 21 5f dc da 9b bd a4 79 97 16 2a a2 25 1b 13|.!_.....y..*.%..| +0x1bd0|64 f1 86 b8 29 |d...) | +0x1bd0| 9e 05 3c 43 9c c9 05 0a 5d 06 2e| ...8..8..v| [7]: "aa853e1b38ec8938e1d27630045a383fb065915b79539ad32d050cfa88ba26af" (raw bits) id 0x1c15-0x1c35 (32) +0x1c20|30 04 5a 38 3f b0 65 91 5b 79 53 9a d3 2d 05 0c|0.Z8?.e.[yS..-..| +0x1c30|fa 88 ba 26 af |...&. | +0x1c30| ab 8f d4 93 e3 bd 2d 4a de f0 36| ......-J..6| [8]: "ab8fd493e3bd2d4adef036fd4e2b2190546768d40e261c7941a4df38ba276da1" (raw bits) id 0x1c35-0x1c55 (32) +0x1c40|fd 4e 2b 21 90 54 67 68 d4 0e 26 1c 79 41 a4 df|.N+!.Tgh..&.yA..| +0x1c50|38 ba 27 6d a1 |8.'m. | +0x1c50| af eb 7c 1f 27 59 8a 13 a9 3c 08| ..|.'Y...<.| [9]: "afeb7c1f27598a13a93c088b8b8646110a1d4d622bb43bf1b5288eaeaaac951f" (raw bits) id 0x1c55-0x1c75 (32) +0x1c60|8b 8b 86 46 11 0a 1d 4d 62 2b b4 3b f1 b5 28 8e|...F...Mb+.;..(.| +0x1c70|ae aa ac 95 1f |..... | +0x1c70| b9 11 36 1e 2e ce 39 33 8e fe d0| ..6...93...| [10]: "b911361e2ece39338efed01bfb74315a845e104f6c97f24738576237c95ba286" (raw bits) id 0x1c75-0x1c95 (32) +0x1c80|1b fb 74 31 5a 84 5e 10 4f 6c 97 f2 47 38 57 62|..t1Z.^.Ol..G8Wb| +0x1c90|37 c9 5b a2 86 |7.[.. | +0x1c90| c4 c9 b4 33 f0 9f 22 bb e1 d5 eb| ...3.."....| [11]: "c4c9b433f09f22bbe1d5eb8e825adeb58d04ebeb43a95bd4b1b213caac107ed8" (raw bits) id 0x1c95-0x1cb5 (32) +0x1ca0|8e 82 5a de b5 8d 04 eb eb 43 a9 5b d4 b1 b2 13|..Z......C.[....| +0x1cb0|ca ac 10 7e d8 |...~. | +0x1cb0| d6 23 1e d1 ba 0c 7a d9 ac f4 07| .#....z....| [12]: "d6231ed1ba0c7ad9acf40701de8e34cf0c3f27bb051a8d5563c03d880d3b52c6" (raw bits) id 0x1cb5-0x1cd5 (32) +0x1cc0|01 de 8e 34 cf 0c 3f 27 bb 05 1a 8d 55 63 c0 3d|...4..?'....Uc.=| +0x1cd0|88 0d 3b 52 c6 |..;R. | +0x1cd0| e8 7f a0 5d 46 90 36 a5 ec 03 22| ...]F.6..."| [13]: "e87fa05d469036a5ec0322206ceb69c88b13b579e1b3b96ad2eef611eade9931" (raw bits) id 0x1cd5-0x1cf5 (32) +0x1ce0|20 6c eb 69 c8 8b 13 b5 79 e1 b3 b9 6a d2 ee f6| l.i....y...j...| +0x1cf0|11 ea de 99 31 |....1 | +0x1cf0| f5 be 36 aa c1 ad 52 eb 44 b3 6a| ..6...R.D.j| [14]: "f5be36aac1ad52eb44b36a7076be34ff659d29ae5d4c8abc67fd65cce51baeff" (raw bits) id 0x1cf5-0x1d15 (32) +0x1d00|70 76 be 34 ff 65 9d 29 ae 5d 4c 8a bc 67 fd 65|pv.4.e.).]L..g.e| +0x1d10|cc e5 1b ae ff |..... | +0x1d10| 08 ea d5 98 9e 1a 3c aa 3e 9b 0a| ......<.>..| [15]: "08ead5989e1a3caa3e9b0a4c2127cb95bd7663e3eaa5b762e916c37f50fd78b6" (raw bits) id 0x1d15-0x1d35 (32) +0x1d20|4c 21 27 cb 95 bd 76 63 e3 ea a5 b7 62 e9 16 c3|L!'...vc....b...| +0x1d30|7f 50 fd 78 b6 |.P.x. | +0x1d30| 19 9f 74 ce 4f a6 e4 f4 2d b6 63| ..t.O...-.c| [16]: "199f74ce4fa6e4f42db6639d4657131d7388bd21188c2b64a5e07861c9d8d9f5" (raw bits) id 0x1d35-0x1d55 (32) +0x1d40|9d 46 57 13 1d 73 88 bd 21 18 8c 2b 64 a5 e0 78|.FW..s..!..+d..x| +0x1d50|61 c9 d8 d9 f5 |a.... | +0x1d50| 24 f9 33 04 4a f9 51 c0 9c c6 37| $.3.J.Q...7| [17]: "24f933044af951c09cc637df30118c232dabe37719293148a8e660668e270033" (raw bits) id 0x1d55-0x1d75 (32) +0x1d60|df 30 11 8c 23 2d ab e3 77 19 29 31 48 a8 e6 60|.0..#-..w.)1H..`| +0x1d70|66 8e 27 00 33 |f.'.3 | +0x1d70| 28 1b a1 bf b3 4a 24 65 1a d1 02| (....J$e...| [18]: "281ba1bfb34a24651ad102bd0a074e8caafe8d93c7591acb1be67b858f5e3358" (raw bits) id 0x1d75-0x1d95 (32) +0x1d80|bd 0a 07 4e 8c aa fe 8d 93 c7 59 1a cb 1b e6 7b|...N......Y....{| +0x1d90|85 8f 5e 33 58 |..^3X | +0x1d90| 2e aa 62 1f c0 ae 86 3c 10 1d 66| ..b....<..f| [19]: "2eaa621fc0ae863c101d668691d91656f3e9dda49bc2f023c1691e494bbfb5f9" (raw bits) id 0x1d95-0x1db5 (32) +0x1da0|86 91 d9 16 56 f3 e9 dd a4 9b c2 f0 23 c1 69 1e|....V.......#.i.| +0x1db0|49 4b bf b5 f9 |IK... | +0x1db0| 3e f2 80 2c f9 64 d4 5c 43 ec e6| >..,.d.\C..| [20]: "3ef2802cf964d45c43ece616363c3a826bede64e718697568853ce56f0272634" (raw bits) id 0x1db5-0x1dd5 (32) +0x1dc0|16 36 3c 3a 82 6b ed e6 4e 71 86 97 56 88 53 ce|.6<:.k..Nq..V.S.| +0x1dd0|56 f0 27 26 34 |V.'&4 | +0x1dd0| 4a 93 f1 74 7b b8 19 8e 28 6e 23| J..t{...(n#| [21]: "4a93f1747bb8198e286e2342c5a802b8930c9e9fd166872cfd6fcf127b2f376e" (raw bits) id 0x1dd5-0x1df5 (32) +0x1de0|42 c5 a8 02 b8 93 0c 9e 9f d1 66 87 2c fd 6f cf|B.........f.,.o.| +0x1df0|12 7b 2f 37 6e |.{/7n | +0x1df0| 59 a4 c6 a9 83 97 1c 94 58 95 7e| Y.......X.~| [22]: "59a4c6a983971c9458957eed284ff58bb3c5cf89fe7f74a21a1eab8112e9e941" (raw bits) id 0x1df5-0x1e15 (32) +0x1e00|ed 28 4f f5 8b b3 c5 cf 89 fe 7f 74 a2 1a 1e ab|.(O........t....| +0x1e10|81 12 e9 e9 41 |....A | +0x1e10| 5d ea e9 d4 a2 03 60 10 d6 59 e0| ].....`..Y.| [23]: "5deae9d4a2036010d659e0cc961180ca08547ec0aaadf863ed8c55b25770e287" (raw bits) id 0x1e15-0x1e35 (32) +0x1e20|cc 96 11 80 ca 08 54 7e c0 aa ad f8 63 ed 8c 55|......T~....c..U| +0x1e30|b2 57 70 e2 87 |.Wp.. | +0x1e30| 6b 90 fe 55 4f 4e 61 06 5a af 4f| k..UONa.Z.O| [24]: "6b90fe554f4e61065aaf4f72aeebf20af61b83631e41fbb0c913b761c7766c9e" (raw bits) id 0x1e35-0x1e55 (32) +0x1e40|72 ae eb f2 0a f6 1b 83 63 1e 41 fb b0 c9 13 b7|r.......c.A.....| +0x1e50|61 c7 76 6c 9e |a.vl. | +0x1e50| 76 02 66 b2 d8 fa 76 45 ba 9b 49| v.f...vE..I| [25]: "760266b2d8fa7645ba9b49cf7aa1495efb3a7d1e0f73c5a365c01c0e3276548c" (raw bits) id 0x1e55-0x1e75 (32) +0x1e60|cf 7a a1 49 5e fb 3a 7d 1e 0f 73 c5 a3 65 c0 1c|.z.I^.:}..s..e..| +0x1e70|0e 32 76 54 8c |.2vT. | +0x1e70| 8e c3 25 37 ab be 4a e9 ba 0a fb| ..%7..J....| [26]: "8ec32537abbe4ae9ba0afbe55ddf6e6db4345c6695f233c5bd2b492e3d3259f1" (raw bits) id 0x1e75-0x1e95 (32) +0x1e80|e5 5d df 6e 6d b4 34 5c 66 95 f2 33 c5 bd 2b 49|.].nm.4\f..3..+I| +0x1e90|2e 3d 32 59 f1 |.=2Y. | + | | | [10]{}: bound 0x1e95-0x21fa (869) +0x1e90| 0b | . | timestamp_delta: 10 (11) 0x1e95-0x1e96 (1) + | | | timestamp: 1726286531 (2024-09-14T04:02:11Z) +0x1e90| 01 | . | id_prefix_size: 1 0x1e96-0x1e97 (1) +0x1e90| d8 | . | id_prefix: "d8" (raw bits) 0x1e97-0x1e98 (1) +0x1e90| 02 | . | mode: "idlist" (2) 0x1e98-0x1e99 (1) + | | | idlist{}: 0x1e99-0x21fa (865) +0x1e90| 1b | . | num: 27 0x1e99-0x1e9a (1) + | | | ids[0:27]: 0x1e9a-0x21fa (864) +0x1e90| 8f c5 e1 23 a5 38| ...#.8| [0]: "8fc5e123a53886ed4ede08d7034039271d3ce126fc84107c089814a1eaa8e3f0" (raw bits) id 0x1e9a-0x1eba (32) +0x1ea0|86 ed 4e de 08 d7 03 40 39 27 1d 3c e1 26 fc 84|..N....@9'.<.&..| +0x1eb0|10 7c 08 98 14 a1 ea a8 e3 f0 |.|........ | +0x1eb0| 90 8d 75 f5 52 c8| ..u.R.| [1]: "908d75f552c8265a04712f2293b0948cb99b2ffda7e9272c1373830b92200fed" (raw bits) id 0x1eba-0x1eda (32) +0x1ec0|26 5a 04 71 2f 22 93 b0 94 8c b9 9b 2f fd a7 e9|&Z.q/"....../...| +0x1ed0|27 2c 13 73 83 0b 92 20 0f ed |',.s... .. | +0x1ed0| d8 67 af 02 da 9f| .g....| [2]: "d867af02da9f67c07b56f00879c0e2dd4350f9d234257ea0db2917fb73607081" (raw bits) id 0x1eda-0x1efa (32) +0x1ee0|67 c0 7b 56 f0 08 79 c0 e2 dd 43 50 f9 d2 34 25|g.{V..y...CP..4%| +0x1ef0|7e a0 db 29 17 fb 73 60 70 81 |~..)..s`p. | +0x1ef0| df 9f df f7 a0 79| .....y| [3]: "df9fdff7a0795c30eb1364056d6be3bc5b0012e869b02539d37d21a8b9873d84" (raw bits) id 0x1efa-0x1f1a (32) +0x1f00|5c 30 eb 13 64 05 6d 6b e3 bc 5b 00 12 e8 69 b0|\0..d.mk..[...i.| +0x1f10|25 39 d3 7d 21 a8 b9 87 3d 84 |%9.}!...=. | +0x1f10| e9 9a 9c aa 35 b8| ....5.| [4]: "e99a9caa35b875b098732a16bc3036673cc470b864995da41f0cd0601358957e" (raw bits) id 0x1f1a-0x1f3a (32) +0x1f20|75 b0 98 73 2a 16 bc 30 36 67 3c c4 70 b8 64 99|u..s*..06g<.p.d.| +0x1f30|5d a4 1f 0c d0 60 13 58 95 7e |]....`.X.~ | +0x1f30| f1 d9 78 67 86 12| ..xg..| [5]: "f1d9786786125966a42297e564ee677604e31e61dbd81c9ffe4253805dd46c73" (raw bits) id 0x1f3a-0x1f5a (32) +0x1f40|59 66 a4 22 97 e5 64 ee 67 76 04 e3 1e 61 db d8|Yf."..d.gv...a..| +0x1f50|1c 9f fe 42 53 80 5d d4 6c 73 |...BS.].ls | +0x1f50| f3 70 8c 47 9b a4| .p.G..| [6]: "f3708c479ba412e8380c27bc54b5a77b1638e316057e7aeb6cee6b04e505151b" (raw bits) id 0x1f5a-0x1f7a (32) +0x1f60|12 e8 38 0c 27 bc 54 b5 a7 7b 16 38 e3 16 05 7e|..8.'.T..{.8...~| +0x1f70|7a eb 6c ee 6b 04 e5 05 15 1b |z.l.k..... | +0x1f70| f5 13 90 05 ef e1| ......| [7]: "f5139005efe18b0af60a312914b1b7fda8ba1134cfdf2e98cd02c0d5aaf57c20" (raw bits) id 0x1f7a-0x1f9a (32) +0x1f80|8b 0a f6 0a 31 29 14 b1 b7 fd a8 ba 11 34 cf df|....1).......4..| +0x1f90|2e 98 cd 02 c0 d5 aa f5 7c 20 |........| | +0x1f90| 0a 65 93 19 3c 46| .e...../..| +0x2030|c5 a8 b1 62 36 8c 5d 55 5e c6 |...b6.]U^. | +0x2030| 55 f3 28 54 1c 3b| U.(T.;| [13]: "55f328541c3b6aae89f2406e83d6d3bf4482600a27ece9da4064a8253ea6f25f" (raw bits) id 0x203a-0x205a (32) +0x2040|6a ae 89 f2 40 6e 83 d6 d3 bf 44 82 60 0a 27 ec|j...@n....D.`.'.| +0x2050|e9 da 40 64 a8 25 3e a6 f2 5f |..@d.%>.._ | +0x2050| 57 e6 04 3e 6e 47| W..>nG| [14]: "57e6043e6e47068f321223f89f977f888d5c5f94dd78d244e88e25ad660f7d2e" (raw bits) id 0x205a-0x207a (32) +0x2060|06 8f 32 12 23 f8 9f 97 7f 88 8d 5c 5f 94 dd 78|..2.#......\_..x| +0x2070|d2 44 e8 8e 25 ad 66 0f 7d 2e |.D..%.f.}. | +0x2070| 65 ab 6e 1b 74 86| e.n.t.| [15]: "65ab6e1b7486b58e36616109df457640467da181461ad11ee34b8193c7463190" (raw bits) id 0x207a-0x209a (32) +0x2080|b5 8e 36 61 61 09 df 45 76 40 46 7d a1 81 46 1a|..6aa..Ev@F}..F.| +0x2090|d1 1e e3 4b 81 93 c7 46 31 90 |...K...F1. | +0x2090| 75 87 34 c0 85 a8| u.4...| [16]: "758734c085a8096d836e085dbbce014172242e499e758306cf31d1e7ed669cee" (raw bits) id 0x209a-0x20ba (32) +0x20a0|09 6d 83 6e 08 5d bb ce 01 41 72 24 2e 49 9e 75|.m.n.]...Ar$.I.u| +0x20b0|83 06 cf 31 d1 e7 ed 66 9c ee |...1...f.. | +0x20b0| 76 c3 d7 ee 10 31| v....1| [17]: "76c3d7ee10318996aa84f6ab853c082a789f66816f88ce2d560a4f9233d5f685" (raw bits) id 0x20ba-0x20da (32) +0x20c0|89 96 aa 84 f6 ab 85 3c 08 2a 78 9f 66 81 6f 88|.......<.*x.f.o.| +0x20d0|ce 2d 56 0a 4f 92 33 d5 f6 85 |.-V.O.3... | +0x20d0| 87 c1 5c 85 98 79| ..\..y| [18]: "87c15c8598790e8d1e20c89cd81476af036ae854c04be0de79f15875f7c05d2d" (raw bits) id 0x20da-0x20fa (32) +0x20e0|0e 8d 1e 20 c8 9c d8 14 76 af 03 6a e8 54 c0 4b|... ....v..j.T.K| +0x20f0|e0 de 79 f1 58 75 f7 c0 5d 2d |..y.Xu..]- | +0x20f0| 89 6b 8f 63 b5 cc| .k.c..| [19]: "896b8f63b5cc8103296312047af06b1c59a15106793c4cd5d53bb06d9b92b7df" (raw bits) id 0x20fa-0x211a (32) +0x2100|81 03 29 63 12 04 7a f0 6b 1c 59 a1 51 06 79 3c|..)c..z.k.Y.Q.y<| +0x2110|4c d5 d5 3b b0 6d 9b 92 b7 df |L..;.m.... | +0x2110| 8d d4 8e ce ef ab| ......| [20]: "8dd48eceefab4feac06c2129172a63c9b1282d5c9f3ca76fbad56d8d2a1b7c15" (raw bits) id 0x211a-0x213a (32) +0x2120|4f ea c0 6c 21 29 17 2a 63 c9 b1 28 2d 5c 9f 3c|O..l!).*c..(-\.<| +0x2130|a7 6f ba d5 6d 8d 2a 1b 7c 15 |.o..m.*.|. | +0x2130| 92 13 1b d8 8c 9c| ......| [21]: "92131bd88c9cca2ed53ba049781dc7dcfcb797e9d757f4ff2f00a265abfcbd08" (raw bits) id 0x213a-0x215a (32) +0x2140|ca 2e d5 3b a0 49 78 1d c7 dc fc b7 97 e9 d7 57|...;.Ix........W| +0x2150|f4 ff 2f 00 a2 65 ab fc bd 08 |../..e.... | +0x2150| 92 61 c5 22 ed 9d| .a."..| [22]: "9261c522ed9d3fb8526f6055d2be0085ffcfd19d117bc8713bffbec3eca2ec2d" (raw bits) id 0x215a-0x217a (32) +0x2160|3f b8 52 6f 60 55 d2 be 00 85 ff cf d1 9d 11 7b|?.Ro`U.........{| +0x2170|c8 71 3b ff be c3 ec a2 ec 2d |.q;......- | +0x2170| 94 7e 3f 5f 59 ef| .~?_Y.| [23]: "947e3f5f59ef5e6bb4c22ef88ba87c00f3337ce1c676a3ce384355791faeed37" (raw bits) id 0x217a-0x219a (32) +0x2180|5e 6b b4 c2 2e f8 8b a8 7c 00 f3 33 7c e1 c6 76|^k......|..3|..v| +0x2190|a3 ce 38 43 55 79 1f ae ed 37 |..8CUy...7 | +0x2190| 9d 97 b4 3b 4a 9e| ...;J.| [24]: "9d97b43b4a9e41bdc830ec2091a70ec61f29df68972d499df2c3beab5e38b583" (raw bits) id 0x219a-0x21ba (32) +0x21a0|41 bd c8 30 ec 20 91 a7 0e c6 1f 29 df 68 97 2d|A..0. .....).h.-| +0x21b0|49 9d f2 c3 be ab 5e 38 b5 83 |I.....^8.. | +0x21b0| bf 8c 43 0e 8e 38| ..C..8| [25]: "bf8c430e8e3865604c158632fc925d3b849bb94913bc5b2b4c4076d1a7a81ee3" (raw bits) id 0x21ba-0x21da (32) +0x21c0|65 60 4c 15 86 32 fc 92 5d 3b 84 9b b9 49 13 bc|e`L..2..];...I..| +0x21d0|5b 2b 4c 40 76 d1 a7 a8 1e e3 |[+L@v..... | +0x21d0| c4 b0 fd 2e 1f 1a| ......| [26]: "c4b0fd2e1f1a95f2e9296bfc059e77e013dbb33307e5377fb541f4ca9d6e462e" (raw bits) id 0x21da-0x21fa (32) +0x21e0|95 f2 e9 29 6b fc 05 9e 77 e0 13 db b3 33 07 e5|...)k...w....3..| +0x21f0|37 7f b5 41 f4 ca 9d 6e 46 2e |7..A...nF. | + | | | [11]{}: bound 0x21fa-0x255f (869) +0x21f0| 15 | . | timestamp_delta: 20 (21) 0x21fa-0x21fb (1) + | | | timestamp: 1726286551 (2024-09-14T04:02:31Z) +0x21f0| 01 | . | id_prefix_size: 1 0x21fb-0x21fc (1) +0x21f0| 55 | U | id_prefix: "55" (raw bits) 0x21fc-0x21fd (1) +0x21f0| 02 | . | mode: "idlist" (2) 0x21fd-0x21fe (1) + | | | idlist{}: 0x21fe-0x255f (865) +0x21f0| 1b | . | num: 27 0x21fe-0x21ff (1) + | | | ids[0:27]: 0x21ff-0x255f (864) +0x21f0| d8| .| [0]: "d810daa5b3d42da3df9cf3a659fa776d74f10d9b3839ca67e3b53c9192136f18" (raw bits) id 0x21ff-0x221f (32) +0x2200|10 da a5 b3 d4 2d a3 df 9c f3 a6 59 fa 77 6d 74|.....-.....Y.wmt| +0x2210|f1 0d 9b 38 39 ca 67 e3 b5 3c 91 92 13 6f 18 |...89.g..<...o. | +0x2210| 09| .| [1]: "09be4ce026df60215958920701e57e305f1c435b5bc6544cca2df3eb5819181e" (raw bits) id 0x221f-0x223f (32) +0x2220|be 4c e0 26 df 60 21 59 58 92 07 01 e5 7e 30 5f|.L.&.`!YX....~0_| +0x2230|1c 43 5b 5b c6 54 4c ca 2d f3 eb 58 19 18 1e |.C[[.TL.-..X... | +0x2230| 11| .| [2]: "11d4f88dc509411bc373aada7738fdb859c893cf237d84dffab984b457b6293a" (raw bits) id 0x223f-0x225f (32) +0x2240|d4 f8 8d c5 09 41 1b c3 73 aa da 77 38 fd b8 59|.....A..s..w8..Y| +0x2250|c8 93 cf 23 7d 84 df fa b9 84 b4 57 b6 29 3a |...#}......W.): | +0x2250| 2b| +| [3]: "2ba3af672fcdbf2d2f84fbefae7c3f526e92d605c776db26a7ac65a9d661b386" (raw bits) id 0x225f-0x227f (32) +0x2260|a3 af 67 2f cd bf 2d 2f 84 fb ef ae 7c 3f 52 6e|..g/..-/....|?Rn| +0x2270|92 d6 05 c7 76 db 26 a7 ac 65 a9 d6 61 b3 86 |....v.&..e..a.. | +0x2270| 2c| ,| [4]: "2c94837ea782192544abbaf986c92a211121ebbf20a12b39bf9fc72f22c095c0" (raw bits) id 0x227f-0x229f (32) +0x2280|94 83 7e a7 82 19 25 44 ab ba f9 86 c9 2a 21 11|..~...%D.....*!.| +0x2290|21 eb bf 20 a1 2b 39 bf 9f c7 2f 22 c0 95 c0 |!.. .+9.../"... | +0x2290| 2d| -| [5]: "2d50b822c57dfd03da320f0b2dc23d173482f479d7d4090036e1687f07920df1" (raw bits) id 0x229f-0x22bf (32) +0x22a0|50 b8 22 c5 7d fd 03 da 32 0f 0b 2d c2 3d 17 34|P.".}...2..-.=.4| +0x22b0|82 f4 79 d7 d4 09 00 36 e1 68 7f 07 92 0d f1 |..y....6.h..... | +0x22b0| 3c| <| [6]: "3cebde2418cdee29e5325453de94e558a526c8bc920f2e07630770eba5827624" (raw bits) id 0x22bf-0x22df (32) +0x22c0|eb de 24 18 cd ee 29 e5 32 54 53 de 94 e5 58 a5|..$...).2TS...X.| +0x22d0|26 c8 bc 92 0f 2e 07 63 07 70 eb a5 82 76 24 |&......c.p...v$ | +0x22d0| 62| b| [7]: "62e05d59c2d0768942574df8722bfc898d92d1fade670d3675ec10c38f2b3a80" (raw bits) id 0x22df-0x22ff (32) +0x22e0|e0 5d 59 c2 d0 76 89 42 57 4d f8 72 2b fc 89 8d|.]Y..v.BWM.r+...| +0x22f0|92 d1 fa de 67 0d 36 75 ec 10 c3 8f 2b 3a 80 |....g.6u....+:. | +0x22f0| 63| c| [8]: "636b1471cdda150ec74cdf4be4ccef7bdfcd91e39cb665fc0d664c4fbd0fb8d7" (raw bits) id 0x22ff-0x231f (32) +0x2300|6b 14 71 cd da 15 0e c7 4c df 4b e4 cc ef 7b df|k.q.....L.K...{.| +0x2310|cd 91 e3 9c b6 65 fc 0d 66 4c 4f bd 0f b8 d7 |.....e..fLO.... | +0x2310| 7c| || [9]: "7ca468684b9cf44105c318944d97f62b64bbf13211a15a6d2087bbf7a61d97f1" (raw bits) id 0x231f-0x233f (32) +0x2320|a4 68 68 4b 9c f4 41 05 c3 18 94 4d 97 f6 2b 64|.hhK..A....M..+d| +0x2330|bb f1 32 11 a1 5a 6d 20 87 bb f7 a6 1d 97 f1 |..2..Zm ....... | +0x2330| 7e| ~| [10]: "7e1c5b5be2ce224ce603025a25aaed3233183a7b7e951512f0aff0c73c0cd301" (raw bits) id 0x233f-0x235f (32) +0x2340|1c 5b 5b e2 ce 22 4c e6 03 02 5a 25 aa ed 32 33|.[[.."L...Z%..23| +0x2350|18 3a 7b 7e 95 15 12 f0 af f0 c7 3c 0c d3 01 |.:{~.......<... | +0x2350| 9c| .| [11]: "9ca7442d42d7e1e5fafcbe260fa91ca7b3d8a08088e93bf25e97cf22ad965803" (raw bits) id 0x235f-0x237f (32) +0x2360|a7 44 2d 42 d7 e1 e5 fa fc be 26 0f a9 1c a7 b3|.D-B......&.....| +0x2370|d8 a0 80 88 e9 3b f2 5e 97 cf 22 ad 96 58 03 |.....;.^.."..X. | +0x2370| 9e| .| [12]: "9e48ac4cf7aeef341466742ff913df8fa4f7cc5edc0b1fa4dfecdeb01da6c176" (raw bits) id 0x237f-0x239f (32) +0x2380|48 ac 4c f7 ae ef 34 14 66 74 2f f9 13 df 8f a4|H.L...4.ft/.....| +0x2390|f7 cc 5e dc 0b 1f a4 df ec de b0 1d a6 c1 76 |..^...........v | +0x2390| 9f| .| [13]: "9f4c8ed050ba028f4a5e6320eb79b98685b1cb9fa3afa3d120467fd5e00c3434" (raw bits) id 0x239f-0x23bf (32) +0x23a0|4c 8e d0 50 ba 02 8f 4a 5e 63 20 eb 79 b9 86 85|L..P...J^c .y...| +0x23b0|b1 cb 9f a3 af a3 d1 20 46 7f d5 e0 0c 34 34 |....... F....44 | +0x23b0| a3| .| [14]: "a3c67e8b115f6646850b9df657519574ef45715f889552804a9af3260f69526c" (raw bits) id 0x23bf-0x23df (32) +0x23c0|c6 7e 8b 11 5f 66 46 85 0b 9d f6 57 51 95 74 ef|.~.._fF....WQ.t.| +0x23d0|45 71 5f 88 95 52 80 4a 9a f3 26 0f 69 52 6c |Eq_..R.J..&.iRl | +0x23d0| a4| .| [15]: "a418d8ca56b0ae8a87f5ff51ca4c61e14d1d7ccfcdd9dcf6ede8e8f7a58ac520" (raw bits) id 0x23df-0x23ff (32) +0x23e0|18 d8 ca 56 b0 ae 8a 87 f5 ff 51 ca 4c 61 e1 4d|...V......Q.La.M| +0x23f0|1d 7c cf cd d9 dc f6 ed e8 e8 f7 a5 8a c5 20 |.|............ | +0x23f0| ad| .| [16]: "add0bc9563748878cef071ddf285c0768db4465aae431fb851336b47945050f3" (raw bits) id 0x23ff-0x241f (32) +0x2400|d0 bc 95 63 74 88 78 ce f0 71 dd f2 85 c0 76 8d|...ct.x..q....v.| +0x2410|b4 46 5a ae 43 1f b8 51 33 6b 47 94 50 50 f3 |.FZ.C..Q3kG.PP. | +0x2410| b5| .| [17]: "b515b6b94ab98db94375533b609bd1d49cb0ba1221aedb67771c6c3e2210c5a7" (raw bits) id 0x241f-0x243f (32) +0x2420|15 b6 b9 4a b9 8d b9 43 75 53 3b 60 9b d1 d4 9c|...J...CuS;`....| +0x2430|b0 ba 12 21 ae db 67 77 1c 6c 3e 22 10 c5 a7 |...!..gw.l>"... | +0x2430| e9| .| [18]: "e9ad6b512140732cce232c15db9d412d7f22f4f181a639066b8b39f44c22e694" (raw bits) id 0x243f-0x245f (32) +0x2440|ad 6b 51 21 40 73 2c ce 23 2c 15 db 9d 41 2d 7f|.kQ!@s,.#,...A-.| +0x2450|22 f4 f1 81 a6 39 06 6b 8b 39 f4 4c 22 e6 94 |"....9.k.9.L".. | +0x2450| ee| .| [19]: "ee9ccf3c9745d939c771e23091f16a593611efaaf22a35d2338ef0363ceb0406" (raw bits) id 0x245f-0x247f (32) +0x2460|9c cf 3c 97 45 d9 39 c7 71 e2 30 91 f1 6a 59 36|..<.E.9.q.0..jY6| +0x2470|11 ef aa f2 2a 35 d2 33 8e f0 36 3c eb 04 06 |....*5.3..6<... | +0x2470| fb| .| [20]: "fb046995c1556cc42ba007aa8892a90fb23d915d0bda466f6977be8267c19374" (raw bits) id 0x247f-0x249f (32) +0x2480|04 69 95 c1 55 6c c4 2b a0 07 aa 88 92 a9 0f b2|.i..Ul.+........| +0x2490|3d 91 5d 0b da 46 6f 69 77 be 82 67 c1 93 74 |=.]..Foiw..g..t | +0x2490| 09| .| [21]: "09a58c1af8c5e9b115c4dee8fcbd2991206d281fba8dcd9edb90867ee1525121" (raw bits) id 0x249f-0x24bf (32) +0x24a0|a5 8c 1a f8 c5 e9 b1 15 c4 de e8 fc bd 29 91 20|.............). | +0x24b0|6d 28 1f ba 8d cd 9e db 90 86 7e e1 52 51 21 |m(........~.RQ! | +0x24b0| 09| .| [22]: "09fe444ce8125805533e273f75b354c62882bdb2c2a5684e60770129e5083057" (raw bits) id 0x24bf-0x24df (32) +0x24c0|fe 44 4c e8 12 58 05 53 3e 27 3f 75 b3 54 c6 28|.DL..X.S>'?u.T.(| +0x24d0|82 bd b2 c2 a5 68 4e 60 77 01 29 e5 08 30 57 |.....hN`w.)..0W | +0x24d0| 1d| .| [23]: "1d69622a29887f71d8042f15beba0d202bc3fd059361f54772e3ec1480f3a0af" (raw bits) id 0x24df-0x24ff (32) +0x24e0|69 62 2a 29 88 7f 71 d8 04 2f 15 be ba 0d 20 2b|ib*)..q../.... +| +0x24f0|c3 fd 05 93 61 f5 47 72 e3 ec 14 80 f3 a0 af |....a.Gr....... | +0x24f0| 21| !| [24]: "21ebce250649cda7eb7061d80d6b10d3f7b7c279339efd34493824804cfd14cf" (raw bits) id 0x24ff-0x251f (32) +0x2500|eb ce 25 06 49 cd a7 eb 70 61 d8 0d 6b 10 d3 f7|..%.I...pa..k...| +0x2510|b7 c2 79 33 9e fd 34 49 38 24 80 4c fd 14 cf |..y3..4I8$.L... | +0x2510| 31| 1| [25]: "310f8b35c91355c0c06fc73d8372350d27925836e8d18a3633174ff79c88481b" (raw bits) id 0x251f-0x253f (32) +0x2520|0f 8b 35 c9 13 55 c0 c0 6f c7 3d 83 72 35 0d 27|..5..U..o.=.r5.'| +0x2530|92 58 36 e8 d1 8a 36 33 17 4f f7 9c 88 48 1b |.X6...63.O...H. | +0x2530| 52| R| [26]: "52a2d338399e379dc6e55d7e4331829c48e5af34074fb357046cbd13782a4ea1" (raw bits) id 0x253f-0x255f (32) +0x2540|a2 d3 38 39 9e 37 9d c6 e5 5d 7e 43 31 82 9c 48|..89.7...]~C1..H| +0x2550|e5 af 34 07 4f b3 57 04 6c bd 13 78 2a 4e a1 |..4.O.W.l..x*N. | + | | | [12]{}: bound 0x255f-0x28c6 (871) +0x2550| 9c| .| timestamp_delta: 464422 (464423) 0x255f-0x2562 (3) +0x2560|ac 27 |.' | + | | | timestamp: 1726750973 (2024-09-19T13:02:53Z) +0x2560| 01 | . | id_prefix_size: 1 0x2562-0x2563 (1) +0x2560| b6 | . | id_prefix: "b6" (raw bits) 0x2563-0x2564 (1) +0x2560| 02 | . | mode: "idlist" (2) 0x2564-0x2565 (1) + | | | idlist{}: 0x2565-0x28c6 (865) +0x2560| 1b | . | num: 27 0x2565-0x2566 (1) + | | | ids[0:27]: 0x2566-0x28c6 (864) +0x2560| 55 77 51 9c 73 6b 79 67 bb 71| UwQ.skyg.q| [0]: "5577519c736b7967bb71eaff5b1f770fccb2d8324eb45eca71b34805356ef7f0" (raw bits) id 0x2566-0x2586 (32) +0x2570|ea ff 5b 1f 77 0f cc b2 d8 32 4e b4 5e ca 71 b3|..[.w....2N.^.q.| +0x2580|48 05 35 6e f7 f0 |H.5n.. | +0x2580| 66 eb ce a1 9f 5c 8d 84 c2 00| f....\....| [1]: "66ebcea19f5c8d84c200c5f8687cc438a45615ec6897fcd28e2da3427ecf31aa" (raw bits) id 0x2586-0x25a6 (32) +0x2590|c5 f8 68 7c c4 38 a4 56 15 ec 68 97 fc d2 8e 2d|..h|.8.V..h....-| +0x25a0|a3 42 7e cf 31 aa |.B~.1. | +0x25a0| 71 81 ec ec 89 73 5a 3a c5 13| q....sZ:..| [2]: "7181ecec89735a3ac51304e6a8bd4f3d80c805ffb8775614e97be1fbd6a04f1a" (raw bits) id 0x25a6-0x25c6 (32) +0x25b0|04 e6 a8 bd 4f 3d 80 c8 05 ff b8 77 56 14 e9 7b|....O=.....wV..{| +0x25c0|e1 fb d6 a0 4f 1a |....O. | +0x25c0| ad 30 70 e8 86 a0 c2 29 c2 ac| .0p....)..| [3]: "ad3070e886a0c229c2acafeda2043c3bffa26fcef03eab7177a9dc9cc0f88943" (raw bits) id 0x25c6-0x25e6 (32) +0x25d0|af ed a2 04 3c 3b ff a2 6f ce f0 3e ab 71 77 a9|....<;..o..>.qw.| +0x25e0|dc 9c c0 f8 89 43 |.....C | +0x25e0| b0 c1 36 ed a8 09 80 20 55 de| ..6.... U.| [4]: "b0c136eda809802055de31a936b909f222f3c4f30d5da870264275d3acc7f7d6" (raw bits) id 0x25e6-0x2606 (32) +0x25f0|31 a9 36 b9 09 f2 22 f3 c4 f3 0d 5d a8 70 26 42|1.6..."....].p&B| +0x2600|75 d3 ac c7 f7 d6 |u..... | +0x2600| c4 4b 05 4b f4 7f 14 d9 c0 ef| .K.K......| [5]: "c44b054bf47f14d9c0ef23daac84c7f5744ba0de7b173688f994a68896a9c20c" (raw bits) id 0x2606-0x2626 (32) +0x2610|23 da ac 84 c7 f5 74 4b a0 de 7b 17 36 88 f9 94|#.....tK..{.6...| +0x2620|a6 88 96 a9 c2 0c |...... | +0x2620| ce 08 27 01 ae 41 59 aa f1 48| ..'..AY..H| [6]: "ce082701ae4159aaf14814ba8629495b83cf30c527d90c3a41a767016cd45d74" (raw bits) id 0x2626-0x2646 (32) +0x2630|14 ba 86 29 49 5b 83 cf 30 c5 27 d9 0c 3a 41 a7|...)I[..0.'..:A.| +0x2640|67 01 6c d4 5d 74 |g.l.]t | +0x2640| d4 f1 5a 07 d0 fe bd 2b a4 a8| ..Z....+..| [7]: "d4f15a07d0febd2ba4a84a973ae6f3563799c37333b5da69dee2085c4206777d" (raw bits) id 0x2646-0x2666 (32) +0x2650|4a 97 3a e6 f3 56 37 99 c3 73 33 b5 da 69 de e2|J.:..V7..s3..i..| +0x2660|08 5c 42 06 77 7d |.\B.w} | +0x2660| d8 34 09 02 ef b9 cb 66 bd c8| .4.....f..| [8]: "d8340902efb9cb66bdc87dd9d8c79de2dcbfc94f4b3fbf82b24ee24f0e197a26" (raw bits) id 0x2666-0x2686 (32) +0x2670|7d d9 d8 c7 9d e2 dc bf c9 4f 4b 3f bf 82 b2 4e|}........OK?...N| +0x2680|e2 4f 0e 19 7a 26 |.O..z& | +0x2680| db 1f eb 9d e3 06 b2 58 60 d7| .......X`.| [9]: "db1feb9de306b25860d7fb3f1a862b63150bbccc0734807e60e69c7c070d9030" (raw bits) id 0x2686-0x26a6 (32) +0x2690|fb 3f 1a 86 2b 63 15 0b bc cc 07 34 80 7e 60 e6|.?..+c.....4.~`.| +0x26a0|9c 7c 07 0d 90 30 |.|...0 | +0x26a0| e3 2c 36 29 30 ff 64 16 af 30| .,6)0.d..0| [10]: "e32c362930ff6416af305815b6dcb6bae767de0f481a2c255996020b2e72bdcc" (raw bits) id 0x26a6-0x26c6 (32) +0x26b0|58 15 b6 dc b6 ba e7 67 de 0f 48 1a 2c 25 59 96|X......g..H.,%Y.| +0x26c0|02 0b 2e 72 bd cc |...r.. | +0x26c0| e7 23 52 7c c8 71 c2 51 57 a2| .#R|.q.QW.| [11]: "e723527cc871c25157a267cceb79211aa8abf6a1a9607e22db9c9f51cb0cf688" (raw bits) id 0x26c6-0x26e6 (32) +0x26d0|67 cc eb 79 21 1a a8 ab f6 a1 a9 60 7e 22 db 9c|g..y!......`~"..| +0x26e0|9f 51 cb 0c f6 88 |.Q.... | +0x26e0| fd 88 a4 81 30 77 51 bb 80 a5| ....0wQ...| [12]: "fd88a481307751bb80a5ed7193e5f5f7a73b9c6cedf40d05a163df1818dbdaa3" (raw bits) id 0x26e6-0x2706 (32) +0x26f0|ed 71 93 e5 f5 f7 a7 3b 9c 6c ed f4 0d 05 a1 63|.q.....;.l.....c| +0x2700|df 18 18 db da a3 |...... | +0x2700| ff a0 3e e0 c0 06 6b a3 20 0a| ..>...k. .| [13]: "ffa03ee0c0066ba3200ab6c256490083a7904ad871c64e666d51398924f34d62" (raw bits) id 0x2706-0x2726 (32) +0x2710|b6 c2 56 49 00 83 a7 90 4a d8 71 c6 4e 66 6d 51|..VI....J.q.NfmQ| +0x2720|39 89 24 f3 4d 62 |9.$.Mb | +0x2720| 04 d7 d7 af ff eb eb a8 a2 bb| ..........| [14]: "04d7d7afffebeba8a2bbb216c1cf38d917dbaa17c0b5ab20940e3bb861128aa7" (raw bits) id 0x2726-0x2746 (32) +0x2730|b2 16 c1 cf 38 d9 17 db aa 17 c0 b5 ab 20 94 0e|....8........ ..| +0x2740|3b b8 61 12 8a a7 |;.a... | +0x2740| 08 0c df 53 3a 51 c8 bc a9 28| ...S:Q...(| [15]: "080cdf533a51c8bca92844e45f15146b64cb17c056b05b59db12c5b1e4f34d7e" (raw bits) id 0x2746-0x2766 (32) +0x2750|44 e4 5f 15 14 6b 64 cb 17 c0 56 b0 5b 59 db 12|D._..kd...V.[Y..| +0x2760|c5 b1 e4 f3 4d 7e |....M~ | +0x2760| 09 5d c8 31 2b 2a 30 74 23 b8| .].1+*0t#.| [16]: "095dc8312b2a307423b8ea4ea5ec7de06ae2c18588ca9fce8bb513a07d656b84" (raw bits) id 0x2766-0x2786 (32) +0x2770|ea 4e a5 ec 7d e0 6a e2 c1 85 88 ca 9f ce 8b b5|.N..}.j.........| +0x2780|13 a0 7d 65 6b 84 |..}ek. | +0x2780| 0d d1 59 f2 e6 02 b4 c8 8d 68| ..Y......h| [17]: "0dd159f2e602b4c88d68c1f902fa05681fcaaa5531a5aa8eb8de998a0cc5e3d5" (raw bits) id 0x2786-0x27a6 (32) +0x2790|c1 f9 02 fa 05 68 1f ca aa 55 31 a5 aa 8e b8 de|.....h...U1.....| +0x27a0|99 8a 0c c5 e3 d5 |...... | +0x27a0| 1d 5a a5 fd cd 80 15 8e 7f 2c| .Z.......,| [18]: "1d5aa5fdcd80158e7f2c5a805913d1cb9a62703fc6b0ecb35bc9ac711e3226b8" (raw bits) id 0x27a6-0x27c6 (32) +0x27b0|5a 80 59 13 d1 cb 9a 62 70 3f c6 b0 ec b3 5b c9|Z.Y....bp?....[.| +0x27c0|ac 71 1e 32 26 b8 |.q.2&. | +0x27c0| 2f de 77 d8 e7 8e 22 fa 3a 6c| /.w...".:l| [19]: "2fde77d8e78e22fa3a6c86a63d3367a2e33dd0d2e4e7728f5be48d7691c57e0a" (raw bits) id 0x27c6-0x27e6 (32) +0x27d0|86 a6 3d 33 67 a2 e3 3d d0 d2 e4 e7 72 8f 5b e4|..=3g..=....r.[.| +0x27e0|8d 76 91 c5 7e 0a |.v..~. | +0x27e0| 31 20 c9 cc 69 dd 94 8f ed bf| 1 ..i.....| [20]: "3120c9cc69dd948fedbfa41556a75c34e1a30b815cfaa7e565eda012dabc8dde" (raw bits) id 0x27e6-0x2806 (32) +0x27f0|a4 15 56 a7 5c 34 e1 a3 0b 81 5c fa a7 e5 65 ed|..V.\4....\...e.| +0x2800|a0 12 da bc 8d de |...... | +0x2800| 44 fd c3 5a 6e 57 6b 9e 73 11| D..ZnWk.s.| [21]: "44fdc35a6e576b9e7311b4e8b846937e148b22b4ab28f7f3dbaf6563ac30a42b" (raw bits) id 0x2806-0x2826 (32) +0x2810|b4 e8 b8 46 93 7e 14 8b 22 b4 ab 28 f7 f3 db af|...F.~.."..(....| +0x2820|65 63 ac 30 a4 2b |ec.0.+ | +0x2820| 5c 3b 25 ba f2 61 04 7d 62 60| \;%..a.}b`| [22]: "5c3b25baf261047d6260a12c56900929175dc9911c49e1721da1a3d5ba955e12" (raw bits) id 0x2826-0x2846 (32) +0x2830|a1 2c 56 90 09 29 17 5d c9 91 1c 49 e1 72 1d a1|.,V..).]...I.r..| +0x2840|a3 d5 ba 95 5e 12 |....^. | +0x2840| 5c 6f 41 7a 8f bf 1f 8e 35 70| \oAz....5p| [23]: "5c6f417a8fbf1f8e3570b4bd09424d5c7ccf7d8e787596fd06d3bba21b9b5a33" (raw bits) id 0x2846-0x2866 (32) +0x2850|b4 bd 09 42 4d 5c 7c cf 7d 8e 78 75 96 fd 06 d3|...BM\|.}.xu....| +0x2860|bb a2 1b 9b 5a 33 |....Z3 | +0x2860| 83 a4 ca 5b 96 89 cf 2b 7a ea| ...[...+z.| [24]: "83a4ca5b9689cf2b7aeaecb0587e28d210b8bd00188456beabc68f445a7446be" (raw bits) id 0x2866-0x2886 (32) +0x2870|ec b0 58 7e 28 d2 10 b8 bd 00 18 84 56 be ab c6|..X~(.......V...| +0x2880|8f 44 5a 74 46 be |.DZtF. | +0x2880| 85 e4 03 7b b0 38 ac b1 3f c7| ...{.8..?.| [25]: "85e4037bb038acb13fc7f1e09e0db8e67888ba65198791285a188cca21217168" (raw bits) id 0x2886-0x28a6 (32) +0x2890|f1 e0 9e 0d b8 e6 78 88 ba 65 19 87 91 28 5a 18|......x..e...(Z.| +0x28a0|8c ca 21 21 71 68 |..!!qh | +0x28a0| 96 fd 8e c4 7f 19 c9 60 38 b6| .......`8.| [26]: "96fd8ec47f19c96038b685a041718127f9a1994756ffb48aaad5c1c8f52739b7" (raw bits) id 0x28a6-0x28c6 (32) +0x28b0|85 a0 41 71 81 27 f9 a1 99 47 56 ff b4 8a aa d5|..Aq.'...GV.....| +0x28c0|c1 c8 f5 27 39 b7 |...'9. | + | | | [13]{}: bound 0x28c6-0x2c2a (868) +0x28c0| 15 | . | timestamp_delta: 20 (21) 0x28c6-0x28c7 (1) + | | | timestamp: 1726750993 (2024-09-19T13:03:13Z) +0x28c0| 00 | . | id_prefix_size: 0 0x28c7-0x28c8 (1) +0x28c0| 02 | . | mode: "idlist" (2) 0x28c8-0x28c9 (1) + | | | idlist{}: 0x28c9-0x2c2a (865) +0x28c0| 1b | . | num: 27 0x28c9-0x28ca (1) + | | | ids[0:27]: 0x28ca-0x2c2a (864) +0x28c0| b6 c2 19 5f 0b 4e| ..._.N| [0]: "b6c2195f0b4e24ed5fe4802eec464f190a0aee36638dc7a69376264e828fa092" (raw bits) id 0x28ca-0x28ea (32) +0x28d0|24 ed 5f e4 80 2e ec 46 4f 19 0a 0a ee 36 63 8d|$._....FO....6c.| +0x28e0|c7 a6 93 76 26 4e 82 8f a0 92 |...v&N.... | +0x28e0| cb 8c a6 0f cb 59| .....Y| [1]: "cb8ca60fcb597e2f858643b5290858af761366e9dac01bd3d1f5d38dccad2e91" (raw bits) id 0x28ea-0x290a (32) +0x28f0|7e 2f 85 86 43 b5 29 08 58 af 76 13 66 e9 da c0|~/..C.).X.v.f...| +0x2900|1b d3 d1 f5 d3 8d cc ad 2e 91 |.......... | +0x2900| cb d4 0d 3c 33 82| ...<3.| [2]: "cbd40d3c3382231cacfee0df7ef6ba3b2bfad02cbe25c2f39582297cf0dce2ee" (raw bits) id 0x290a-0x292a (32) +0x2910|23 1c ac fe e0 df 7e f6 ba 3b 2b fa d0 2c be 25|#.....~..;+..,.%| +0x2920|c2 f3 95 82 29 7c f0 dc e2 ee |....)|.... | +0x2920| cd e3 22 bd f9 a0| .."...| [3]: "cde322bdf9a096d521ea072c05d9c92be5518f6e30ea3499bdc9fd4e69dcfdb4" (raw bits) id 0x292a-0x294a (32) +0x2930|96 d5 21 ea 07 2c 05 d9 c9 2b e5 51 8f 6e 30 ea|..!..,...+.Q.n0.| +0x2940|34 99 bd c9 fd 4e 69 dc fd b4 |4....Ni... | +0x2940| d0 64 6d f7 aa 99| .dm...| [4]: "d0646df7aa99b32d148402c7c4c3c53a0964c33395efa3c223dcabe97221fa3c" (raw bits) id 0x294a-0x296a (32) +0x2950|b3 2d 14 84 02 c7 c4 c3 c5 3a 09 64 c3 33 95 ef|.-.......:.d.3..| +0x2960|a3 c2 23 dc ab e9 72 21 fa 3c |..#...r!.< | +0x2960| fa 18 d4 ae 12 6d| .....m| [5]: "fa18d4ae126db446d6dbfbb13164aba91892e1a9adf0298b7f6d02b3397cb1c6" (raw bits) id 0x296a-0x298a (32) +0x2970|b4 46 d6 db fb b1 31 64 ab a9 18 92 e1 a9 ad f0|.F....1d........| +0x2980|29 8b 7f 6d 02 b3 39 7c b1 c6 |)..m..9|.. | +0x2980| fa 6f 7c d6 13 7c| .o|..|| [6]: "fa6f7cd6137ce38432468f5e295b3b59b0df13d6df5a4c4977619eb072415390" (raw bits) id 0x298a-0x29aa (32) +0x2990|e3 84 32 46 8f 5e 29 5b 3b 59 b0 df 13 d6 df 5a|..2F.^)[;Y.....Z| +0x29a0|4c 49 77 61 9e b0 72 41 53 90 |LIwa..rAS. | +0x29a0| 08 bf b0 8e a6 13| ......| [7]: "08bfb08ea613f9eba3970d751fba59f019adba4592cb5c1c14e15ac3878a09b6" (raw bits) id 0x29aa-0x29ca (32) +0x29b0|f9 eb a3 97 0d 75 1f ba 59 f0 19 ad ba 45 92 cb|.....u..Y....E..| +0x29c0|5c 1c 14 e1 5a c3 87 8a 09 b6 |\...Z..... | +0x29c0| 23 79 1e 46 6a f0| #y.Fj.| [8]: "23791e466af06d71b35a525424cc230dbfe32b2707c51aec26dda480ee57f228" (raw bits) id 0x29ca-0x29ea (32) +0x29d0|6d 71 b3 5a 52 54 24 cc 23 0d bf e3 2b 27 07 c5|mq.ZRT$.#...+'..| +0x29e0|1a ec 26 dd a4 80 ee 57 f2 28 |..&....W.( | +0x29e0| 2f b7 a6 09 ba 04| /.....| [9]: "2fb7a609ba04322927408156d570d691f656345fbe7f86ae0d2f2adb568ac7d4" (raw bits) id 0x29ea-0x2a0a (32) +0x29f0|32 29 27 40 81 56 d5 70 d6 91 f6 56 34 5f be 7f|2)'@.V.p...V4_..| +0x2a00|86 ae 0d 2f 2a db 56 8a c7 d4 |.../*.V... | +0x2a00| 32 9c c2 95 95 b4| 2.....| [10]: "329cc29595b4f4eaa73a678fc78bde2001015c5181bae2be95c5aa714b5df087" (raw bits) id 0x2a0a-0x2a2a (32) +0x2a10|f4 ea a7 3a 67 8f c7 8b de 20 01 01 5c 51 81 ba|...:g.... ..\Q..| +0x2a20|e2 be 95 c5 aa 71 4b 5d f0 87 |.....qK].. | +0x2a20| 51 fa d6 83 f3 a3| Q.....| [11]: "51fad683f3a3c5861ebf91c4bcecc3d13b87acc3ed541cb5c78477a80b2fe858" (raw bits) id 0x2a2a-0x2a4a (32) +0x2a30|c5 86 1e bf 91 c4 bc ec c3 d1 3b 87 ac c3 ed 54|..........;....T| +0x2a40|1c b5 c7 84 77 a8 0b 2f e8 58 |....w../.X | +0x2a40| 5e d5 3c f1 75 e6| ^.<.u.| [12]: "5ed53cf175e6ab48964b7d3b2d0515aaef75a58d00f844ecf3fc061be3dea5b8" (raw bits) id 0x2a4a-0x2a6a (32) +0x2a50|ab 48 96 4b 7d 3b 2d 05 15 aa ef 75 a5 8d 00 f8|.H.K};-....u....| +0x2a60|44 ec f3 fc 06 1b e3 de a5 b8 |D......... | +0x2a60| 66 03 9c 8d f9 37| f....7| [13]: "66039c8df937a7d0d78cceb49f5f9ec5533f8e95dfd66819c1d14ea467d03975" (raw bits) id 0x2a6a-0x2a8a (32) +0x2a70|a7 d0 d7 8c ce b4 9f 5f 9e c5 53 3f 8e 95 df d6|......._..S?....| +0x2a80|68 19 c1 d1 4e a4 67 d0 39 75 |h...N.g.9u | +0x2a80| 66 a1 cc 66 1f 4d| f..f.M| [14]: "66a1cc661f4d1fed40be158e35bfbe3aa7f309bef2a3116310daddbb3187579d" (raw bits) id 0x2a8a-0x2aaa (32) +0x2a90|1f ed 40 be 15 8e 35 bf be 3a a7 f3 09 be f2 a3|..@...5..:......| +0x2aa0|11 63 10 da dd bb 31 87 57 9d |.c....1.W. | +0x2aa0| 68 4b eb cf c3 8b| hK....| [15]: "684bebcfc38b3fe7bb4531f835f6eaf8387c9bdb2ee663ae87a42e91cfbe2812" (raw bits) id 0x2aaa-0x2aca (32) +0x2ab0|3f e7 bb 45 31 f8 35 f6 ea f8 38 7c 9b db 2e e6|?..E1.5...8|....| +0x2ac0|63 ae 87 a4 2e 91 cf be 28 12 |c.......(. | +0x2ac0| 6e 2e 3b 0f 6f eb| n.;.o.| [16]: "6e2e3b0f6feb4f993200e3e23930c0230b0df542f591168217726db0492de5ba" (raw bits) id 0x2aca-0x2aea (32) +0x2ad0|4f 99 32 00 e3 e2 39 30 c0 23 0b 0d f5 42 f5 91|O.2...90.#...B..| +0x2ae0|16 82 17 72 6d b0 49 2d e5 ba |...rm.I-.. | +0x2ae0| 72 6b 96 c9 7e 30| rk..~0| [17]: "726b96c97e309cce846d868d27d919c73f2c5851c9fb3220205d73082dd9a0ba" (raw bits) id 0x2aea-0x2b0a (32) +0x2af0|9c ce 84 6d 86 8d 27 d9 19 c7 3f 2c 58 51 c9 fb|...m..'...?,XQ..| +0x2b00|32 20 20 5d 73 08 2d d9 a0 ba |2 ]s.-... | +0x2b00| 8a f0 89 30 58 cf| ...0X.| [18]: "8af0893058cf2e6b3279504707cafe452fef1656c66b269a4105689c62209db0" (raw bits) id 0x2b0a-0x2b2a (32) +0x2b10|2e 6b 32 79 50 47 07 ca fe 45 2f ef 16 56 c6 6b|.k2yPG...E/..V.k| +0x2b20|26 9a 41 05 68 9c 62 20 9d b0 |&.A.h.b .. | +0x2b20| 8f 28 7c 7c 59 98| .(||Y.| [19]: "8f287c7c5998231a59fcc65174255a8db29671b9dfe6725cf88a18fb5547707d" (raw bits) id 0x2b2a-0x2b4a (32) +0x2b30|23 1a 59 fc c6 51 74 25 5a 8d b2 96 71 b9 df e6|#.Y..Qt%Z...q...| +0x2b40|72 5c f8 8a 18 fb 55 47 70 7d |r\....UGp} | +0x2b40| a0 09 6b c8 6f d3| ..k.o.| [20]: "a0096bc86fd3529be0fa9b3eb9ae570689fb87dbb17a9a1c2e6f963a3da6ba18" (raw bits) id 0x2b4a-0x2b6a (32) +0x2b50|52 9b e0 fa 9b 3e b9 ae 57 06 89 fb 87 db b1 7a|R....>..W......z| +0x2b60|9a 1c 2e 6f 96 3a 3d a6 ba 18 |...o.:=... | +0x2b60| a2 c4 00 67 db 68| ...g.h| [21]: "a2c40067db6837f6c3ece90c7e8cca54578babc2c3eb63cd825a305078db5554" (raw bits) id 0x2b6a-0x2b8a (32) +0x2b70|37 f6 c3 ec e9 0c 7e 8c ca 54 57 8b ab c2 c3 eb|7.....~..TW.....| +0x2b80|63 cd 82 5a 30 50 78 db 55 54 |c..Z0Px.UT | +0x2b80| a3 e4 d0 fb c4 4e| .....N| [22]: "a3e4d0fbc44e6ff363a75edac383744d0ae0f4142bb158eb91fecaf748ff74a9" (raw bits) id 0x2b8a-0x2baa (32) +0x2b90|6f f3 63 a7 5e da c3 83 74 4d 0a e0 f4 14 2b b1|o.c.^...tM....+.| +0x2ba0|58 eb 91 fe ca f7 48 ff 74 a9 |X.....H.t. | +0x2ba0| be 9a c4 8e 28 cf| ....(.| [23]: "be9ac48e28cf03bff65e8cf0f0c498f380937098f81527ac67246c23bbb56ffa" (raw bits) id 0x2baa-0x2bca (32) +0x2bb0|03 bf f6 5e 8c f0 f0 c4 98 f3 80 93 70 98 f8 15|...^........p...| +0x2bc0|27 ac 67 24 6c 23 bb b5 6f fa |'.g$l#..o. | +0x2bc0| e7 3f db 60 cc de| .?.`..| [24]: "e73fdb60ccde0be0488241bb50a1ff6646c1b64945c350ad6bbbd0d3b95ce868" (raw bits) id 0x2bca-0x2bea (32) +0x2bd0|0b e0 48 82 41 bb 50 a1 ff 66 46 c1 b6 49 45 c3|..H.A.P..fF..IE.| +0x2be0|50 ad 6b bb d0 d3 b9 5c e8 68 |P.k....\.h | +0x2be0| e9 04 34 5b 28 f6| ..4[(.| [25]: "e904345b28f65b46a2574ab6c8a76d8f65e6e5d40b52161fd8f521b97bcabeea" (raw bits) id 0x2bea-0x2c0a (32) +0x2bf0|5b 46 a2 57 4a b6 c8 a7 6d 8f 65 e6 e5 d4 0b 52|[F.WJ...m.e....R| +0x2c00|16 1f d8 f5 21 b9 7b ca be ea |....!.{... | +0x2c00| f9 f9 f7 59 34 90| ...Y4.| [26]: "f9f9f759349000a4b7f8e852e13d6274a93193c7ff0c125a093a28a5d9b281a2" (raw bits) id 0x2c0a-0x2c2a (32) +0x2c10|00 a4 b7 f8 e8 52 e1 3d 62 74 a9 31 93 c7 ff 0c|.....R.=bt.1....| +0x2c20|12 5a 09 3a 28 a5 d9 b2 81 a2 |.Z.:(..... | + | | | [14]{}: bound 0x2c2a-0x2f8f (869) +0x2c20| 0b | . | timestamp_delta: 10 (11) 0x2c2a-0x2c2b (1) + | | | timestamp: 1726751003 (2024-09-19T13:03:23Z) +0x2c20| 01 | . | id_prefix_size: 1 0x2c2b-0x2c2c (1) +0x2c20| 3d | = | id_prefix: "3d" (raw bits) 0x2c2c-0x2c2d (1) +0x2c20| 02 | . | mode: "idlist" (2) 0x2c2d-0x2c2e (1) + | | | idlist{}: 0x2c2e-0x2f8f (865) +0x2c20| 1b | . | num: 27 0x2c2e-0x2c2f (1) + | | | ids[0:27]: 0x2c2f-0x2f8f (864) +0x2c20| 11| .| [0]: "118ed0ca14ced8f919251e0332bdb1375e48b9b2b3b6f47a3e44784841fd563f" (raw bits) id 0x2c2f-0x2c4f (32) +0x2c30|8e d0 ca 14 ce d8 f9 19 25 1e 03 32 bd b1 37 5e|........%..2..7^| +0x2c40|48 b9 b2 b3 b6 f4 7a 3e 44 78 48 41 fd 56 3f |H.....z>DxHA.V? | +0x2c40| 32| 2| [1]: "325e55db0415f988e61ebcc87896721312019a62a8c8ed8100f0884c4ba20feb" (raw bits) id 0x2c4f-0x2c6f (32) +0x2c50|5e 55 db 04 15 f9 88 e6 1e bc c8 78 96 72 13 12|^U.........x.r..| +0x2c60|01 9a 62 a8 c8 ed 81 00 f0 88 4c 4b a2 0f eb |..b.......LK... | +0x2c60| 36| 6| [2]: "36bd394ae4ab77f26a645de6cbd7351dd261bddbbb402051c152286427b59736" (raw bits) id 0x2c6f-0x2c8f (32) +0x2c70|bd 39 4a e4 ab 77 f2 6a 64 5d e6 cb d7 35 1d d2|.9J..w.jd]...5..| +0x2c80|61 bd db bb 40 20 51 c1 52 28 64 27 b5 97 36 |a...@ Q.R(d'..6 | +0x2c80| 37| 7| [3]: "37512b47adaead509fda49c4049dc1cb7f122a28721951a11a7d6232df252061" (raw bits) id 0x2c8f-0x2caf (32) +0x2c90|51 2b 47 ad ae ad 50 9f da 49 c4 04 9d c1 cb 7f|Q+G...P..I......| +0x2ca0|12 2a 28 72 19 51 a1 1a 7d 62 32 df 25 20 61 |.*(r.Q..}b2.% a | +0x2ca0| 47| G| [4]: "471479ca62e0a9c057fff6facd3e531601e33b182c0ccd132fa48c267b532984" (raw bits) id 0x2caf-0x2ccf (32) +0x2cb0|14 79 ca 62 e0 a9 c0 57 ff f6 fa cd 3e 53 16 01|.y.b...W....>S..| +0x2cc0|e3 3b 18 2c 0c cd 13 2f a4 8c 26 7b 53 29 84 |.;.,.../..&{S). | +0x2cc0| 4f| O| [5]: "4fd56e27ae56a7ca7f05880cf3555cee0797f0e276a8daf64d48e4f37baf64b2" (raw bits) id 0x2ccf-0x2cef (32) +0x2cd0|d5 6e 27 ae 56 a7 ca 7f 05 88 0c f3 55 5c ee 07|.n'.V.......U\..| +0x2ce0|97 f0 e2 76 a8 da f6 4d 48 e4 f3 7b af 64 b2 |...v...MH..{.d. | +0x2ce0| 5e| ^| [6]: "5e1afd57ffb0a0693a7b97ec7555146f89f9697835a368f32b8b1c1a8305ca30" (raw bits) id 0x2cef-0x2d0f (32) +0x2cf0|1a fd 57 ff b0 a0 69 3a 7b 97 ec 75 55 14 6f 89|..W...i:{..uU.o.| +0x2d00|f9 69 78 35 a3 68 f3 2b 8b 1c 1a 83 05 ca 30 |.ix5.h.+......0 | +0x2d00| 73| s| [7]: "73876adbce642a668cb15130e83cc691436e97d635f2ea6ea40aa47c0fe5088e" (raw bits) id 0x2d0f-0x2d2f (32) +0x2d10|87 6a db ce 64 2a 66 8c b1 51 30 e8 3c c6 91 43|.j..d*f..Q0.<..C| +0x2d20|6e 97 d6 35 f2 ea 6e a4 0a a4 7c 0f e5 08 8e |n..5..n...|.... | +0x2d20| 8c| .| [8]: "8c09e04eabd54f6423c86a1436d2cf118b8e3d1238fb85445832bb49c180623b" (raw bits) id 0x2d2f-0x2d4f (32) +0x2d30|09 e0 4e ab d5 4f 64 23 c8 6a 14 36 d2 cf 11 8b|..N..Od#.j.6....| +0x2d40|8e 3d 12 38 fb 85 44 58 32 bb 49 c1 80 62 3b |.=.8..DX2.I..b; | +0x2d40| b0| .| [9]: "b0b844919046bcec02d8fc43974a6239f6f1273120fc64dc33a9f9c1de69fdc3" (raw bits) id 0x2d4f-0x2d6f (32) +0x2d50|b8 44 91 90 46 bc ec 02 d8 fc 43 97 4a 62 39 f6|.D..F.....C.Jb9.| +0x2d60|f1 27 31 20 fc 64 dc 33 a9 f9 c1 de 69 fd c3 |.'1 .d.3....i.. | +0x2d60| bd| .| [10]: "bd3974dd530f8012531f673d9aca58b2da427663bad09fd7aa1f6dfc76bdb296" (raw bits) id 0x2d6f-0x2d8f (32) +0x2d70|39 74 dd 53 0f 80 12 53 1f 67 3d 9a ca 58 b2 da|9t.S...S.g=..X..| +0x2d80|42 76 63 ba d0 9f d7 aa 1f 6d fc 76 bd b2 96 |Bvc......m.v... | +0x2d80| bd| .| [11]: "bd48feff9ec89822482a1920b95fd905b2de56360c14b803c9ca0af2317cc2b8" (raw bits) id 0x2d8f-0x2daf (32) +0x2d90|48 fe ff 9e c8 98 22 48 2a 19 20 b9 5f d9 05 b2|H....."H*. ._...| +0x2da0|de 56 36 0c 14 b8 03 c9 ca 0a f2 31 7c c2 b8 |.V6........1|.. | +0x2da0| c2| .| [12]: "c2e4f896cb73c5c88da452f7b21aaa28b6c09a53046f41ba2550afd7beeb00f1" (raw bits) id 0x2daf-0x2dcf (32) +0x2db0|e4 f8 96 cb 73 c5 c8 8d a4 52 f7 b2 1a aa 28 b6|....s....R....(.| +0x2dc0|c0 9a 53 04 6f 41 ba 25 50 af d7 be eb 00 f1 |..S.oA.%P...... | +0x2dc0| ca| .| [13]: "ca2e4e4455bb92384bfa98d62555040e66c718fa0fae43c887bd93cb25caccb6" (raw bits) id 0x2dcf-0x2def (32) +0x2dd0|2e 4e 44 55 bb 92 38 4b fa 98 d6 25 55 04 0e 66|.NDU..8K...%U..f| +0x2de0|c7 18 fa 0f ae 43 c8 87 bd 93 cb 25 ca cc b6 |.....C.....%... | +0x2de0| dc| .| [14]: "dc802e6a865218ca24f7e541861c572c43062f10bb61092eccaaad6dc26df104" (raw bits) id 0x2def-0x2e0f (32) +0x2df0|80 2e 6a 86 52 18 ca 24 f7 e5 41 86 1c 57 2c 43|..j.R..$..A..W,C| +0x2e00|06 2f 10 bb 61 09 2e cc aa ad 6d c2 6d f1 04 |./..a.....m.m.. | +0x2e00| eb| .| [15]: "eb1e42bc0563b5737133af1ab0f9a5127e91f828369d0d1b91e9f24f98e2438c" (raw bits) id 0x2e0f-0x2e2f (32) +0x2e10|1e 42 bc 05 63 b5 73 71 33 af 1a b0 f9 a5 12 7e|.B..c.sq3......~| +0x2e20|91 f8 28 36 9d 0d 1b 91 e9 f2 4f 98 e2 43 8c |..(6......O..C. | +0x2e20| f1| .| [16]: "f1ff9fd9b41bdddff3a178dbb30902d1ceefec632215e3da9c564293e9c00e2d" (raw bits) id 0x2e2f-0x2e4f (32) +0x2e30|ff 9f d9 b4 1b dd df f3 a1 78 db b3 09 02 d1 ce|.........x......| +0x2e40|ef ec 63 22 15 e3 da 9c 56 42 93 e9 c0 0e 2d |..c"....VB....- | +0x2e40| f4| .| [17]: "f45c6cde4e511a2fe31db0c1090b5bfba07fdc6aa74c5b8b0dc8edb31d9e8c19" (raw bits) id 0x2e4f-0x2e6f (32) +0x2e50|5c 6c de 4e 51 1a 2f e3 1d b0 c1 09 0b 5b fb a0|\l.NQ./......[..| +0x2e60|7f dc 6a a7 4c 5b 8b 0d c8 ed b3 1d 9e 8c 19 |..j.L[......... | +0x2e60| fe| .| [18]: "fe3bfa36a0f6c4cd18c25eb27632085f02de9b42a02b27d3a6684d2ecdccd519" (raw bits) id 0x2e6f-0x2e8f (32) +0x2e70|3b fa 36 a0 f6 c4 cd 18 c2 5e b2 76 32 08 5f 02|;.6......^.v2._.| +0x2e80|de 9b 42 a0 2b 27 d3 a6 68 4d 2e cd cc d5 19 |..B.+'..hM..... | +0x2e80| fe| .| [19]: "fedf8068a4864a28c69cf8795a108cdd81dbe056c4c3e1858ba17ce6e3e42c06" (raw bits) id 0x2e8f-0x2eaf (32) +0x2e90|df 80 68 a4 86 4a 28 c6 9c f8 79 5a 10 8c dd 81|..h..J(...yZ....| +0x2ea0|db e0 56 c4 c3 e1 85 8b a1 7c e6 e3 e4 2c 06 |..V......|...,. | +0x2ea0| 18| .| [20]: "181e9e205c86216fd6ec5e968c25c721c27fcb13788c8cb49b4285205e0e6c81" (raw bits) id 0x2eaf-0x2ecf (32) +0x2eb0|1e 9e 20 5c 86 21 6f d6 ec 5e 96 8c 25 c7 21 c2|.. \.!o..^..%.!.| +0x2ec0|7f cb 13 78 8c 8c b4 9b 42 85 20 5e 0e 6c 81 |...x....B. ^.l. | +0x2ec0| 19| .| [21]: "1977928f6f43367f5117b00cc17d3bd588ae1ae2dcbf8cb8376daa5d62304580" (raw bits) id 0x2ecf-0x2eef (32) +0x2ed0|77 92 8f 6f 43 36 7f 51 17 b0 0c c1 7d 3b d5 88|w..oC6.Q....};..| +0x2ee0|ae 1a e2 dc bf 8c b8 37 6d aa 5d 62 30 45 80 |.......7m.]b0E. | +0x2ee0| 2b| +| [22]: "2b0db9800c289a910ae22ff9ef7e2c8832847057c7a03d8fbf92d1c2cd942bd6" (raw bits) id 0x2eef-0x2f0f (32) +0x2ef0|0d b9 80 0c 28 9a 91 0a e2 2f f9 ef 7e 2c 88 32|....(..../..~,.2| +0x2f00|84 70 57 c7 a0 3d 8f bf 92 d1 c2 cd 94 2b d6 |.pW..=.......+. | +0x2f00| 33| 3| [23]: "338c1ba55b95155376f5713289c945fff77fff1b2a17fedbb2380f52b52b7499" (raw bits) id 0x2f0f-0x2f2f (32) +0x2f10|8c 1b a5 5b 95 15 53 76 f5 71 32 89 c9 45 ff f7|...[..Sv.q2..E..| +0x2f20|7f ff 1b 2a 17 fe db b2 38 0f 52 b5 2b 74 99 |...*....8.R.+t. | +0x2f20| 39| 9| [24]: "3909bbc348dd4b13343a6f91a4fb606e1bae71b7fd5f91d0ee07046302279f4a" (raw bits) id 0x2f2f-0x2f4f (32) +0x2f30|09 bb c3 48 dd 4b 13 34 3a 6f 91 a4 fb 60 6e 1b|...H.K.4:o...`n.| +0x2f40|ae 71 b7 fd 5f 91 d0 ee 07 04 63 02 27 9f 4a |.q.._.....c.'.J | +0x2f40| 39| 9| [25]: "39728b30fa69d4dcda1efcb6a26bfc9797fd6abb530d4b1dc28991e378d7e1ef" (raw bits) id 0x2f4f-0x2f6f (32) +0x2f50|72 8b 30 fa 69 d4 dc da 1e fc b6 a2 6b fc 97 97|r.0.i.......k...| +0x2f60|fd 6a bb 53 0d 4b 1d c2 89 91 e3 78 d7 e1 ef |.j.S.K.....x... | +0x2f60| 3b| ;| [26]: "3bd83bfe185d1cc9530ac54560bfe650760141fe101d82659d02bda04cf021b9" (raw bits) id 0x2f6f-0x2f8f (32) +0x2f70|d8 3b fe 18 5d 1c c9 53 0a c5 45 60 bf e6 50 76|.;..]..S..E`..Pv| +0x2f80|01 41 fe 10 1d 82 65 9d 02 bd a0 4c f0 21 b9 |.A....e....L.!. | + | | | [15]{}: bound 0x2f8f-0x32f4 (869) +0x2f80| 0b| .| timestamp_delta: 10 (11) 0x2f8f-0x2f90 (1) + | | | timestamp: 1726751013 (2024-09-19T13:03:33Z) +0x2f90|01 |. | id_prefix_size: 1 0x2f90-0x2f91 (1) +0x2f90| a0 | . | id_prefix: "a0" (raw bits) 0x2f91-0x2f92 (1) +0x2f90| 02 | . | mode: "idlist" (2) 0x2f92-0x2f93 (1) + | | | idlist{}: 0x2f93-0x32f4 (865) +0x2f90| 1b | . | num: 27 0x2f93-0x2f94 (1) + | | | ids[0:27]: 0x2f94-0x32f4 (864) +0x2f90| 3d b2 12 82 c6 5c e2 93 e8 99 91 57| =....\.....W| [0]: "3db21282c65ce293e89991571bbba96fc6970e7ce4d569d5c71e4dc381414b64" (raw bits) id 0x2f94-0x2fb4 (32) +0x2fa0|1b bb a9 6f c6 97 0e 7c e4 d5 69 d5 c7 1e 4d c3|...o...|..i...M.| +0x2fb0|81 41 4b 64 |.AKd | +0x2fb0| 59 aa f3 c8 23 4e 34 af 0f 35 0d 35| Y...#N4..5.5| [1]: "59aaf3c8234e34af0f350d3530770f6fcfd0871d92f046c5d84d51de2d2b913f" (raw bits) id 0x2fb4-0x2fd4 (32) +0x2fc0|30 77 0f 6f cf d0 87 1d 92 f0 46 c5 d8 4d 51 de|0w.o......F..MQ.| +0x2fd0|2d 2b 91 3f |-+.? | +0x2fd0| 69 8c 87 02 88 23 fa f5 40 8a 59 cb| i....#..@.Y.| [2]: "698c87028823faf5408a59cba7b03af122bec6ae4bc784ba01c9d1bbd7af454d" (raw bits) id 0x2fd4-0x2ff4 (32) +0x2fe0|a7 b0 3a f1 22 be c6 ae 4b c7 84 ba 01 c9 d1 bb|..:."...K.......| +0x2ff0|d7 af 45 4d |..EM | +0x2ff0| 70 79 73 77 23 36 66 8a 3b c4 ab 9f| pysw#6f.;...| [3]: "707973772336668a3bc4ab9fc1d38b21b0dacdb01104331e82b8cd28e0ac42be" (raw bits) id 0x2ff4-0x3014 (32) +0x3000|c1 d3 8b 21 b0 da cd b0 11 04 33 1e 82 b8 cd 28|...!......3....(| +0x3010|e0 ac 42 be |..B. | +0x3010| 71 ac 61 46 9b 85 ca bb ad 3b dd 89| q.aF.....;..| [4]: "71ac61469b85cabbad3bdd8920ae109551fbd187366590765ec22f531cd3472d" (raw bits) id 0x3014-0x3034 (32) +0x3020|20 ae 10 95 51 fb d1 87 36 65 90 76 5e c2 2f 53| ...Q...6e.v^./S| +0x3030|1c d3 47 2d |..G- | +0x3030| 7c 9b c7 ef 2d 98 04 ab 04 28 66 b3| |...-....(f.| [5]: "7c9bc7ef2d9804ab042866b3b10c54426d0ebb888d2bb7571f16cf346b6d4696" (raw bits) id 0x3034-0x3054 (32) +0x3040|b1 0c 54 42 6d 0e bb 88 8d 2b b7 57 1f 16 cf 34|..TBm....+.W...4| +0x3050|6b 6d 46 96 |kmF. | +0x3050| af 10 52 3e b0 1d 6b ef 07 c6 7b ec| ..R>..k...{.| [6]: "af10523eb01d6bef07c67becd470d703f1fe4decf570159eaaa82750d94856bc" (raw bits) id 0x3054-0x3074 (32) +0x3060|d4 70 d7 03 f1 fe 4d ec f5 70 15 9e aa a8 27 50|.p....M..p....'P| +0x3070|d9 48 56 bc |.HV. | +0x3070| c6 16 04 ee ed af c9 ec 51 ee 03 1f| ........Q...| [7]: "c61604eeedafc9ec51ee031fb2ebc38ade9beacb03c21350f7a2295ccb7fcc66" (raw bits) id 0x3074-0x3094 (32) +0x3080|b2 eb c3 8a de 9b ea cb 03 c2 13 50 f7 a2 29 5c|...........P..)\| +0x3090|cb 7f cc 66 |...f | +0x3090| c7 98 fa fd 39 5c 3c d9 47 a8 18 2d| ....9\<.G..-| [8]: "c798fafd395c3cd947a8182dfa8540a49cfb79dca8d5b929753d6c53f79b3d5a" (raw bits) id 0x3094-0x30b4 (32) +0x30a0|fa 85 40 a4 9c fb 79 dc a8 d5 b9 29 75 3d 6c 53|..@...y....)u=lS| +0x30b0|f7 9b 3d 5a |..=Z | +0x30b0| ca 55 57 e1 f5 3e 6c 8d 1d b5 ad 3d| .UW..>l....=| [9]: "ca5557e1f53e6c8d1db5ad3d2b5ffd5553ab5bfb9d68386bae4d59a7eaea4ad7" (raw bits) id 0x30b4-0x30d4 (32) +0x30c0|2b 5f fd 55 53 ab 5b fb 9d 68 38 6b ae 4d 59 a7|+_.US.[..h8k.MY.| +0x30d0|ea ea 4a d7 |..J. | +0x30d0| d0 9e c5 87 86 b6 15 2a 18 38 26 fd| .......*.8&.| [10]: "d09ec58786b6152a183826fdd971f0ab6500aaabbb67f028311cd1826fdf9687" (raw bits) id 0x30d4-0x30f4 (32) +0x30e0|d9 71 f0 ab 65 00 aa ab bb 67 f0 28 31 1c d1 82|.q..e....g.(1...| +0x30f0|6f df 96 87 |o... | +0x30f0| e2 d4 e3 a6 64 00 b5 5a 45 7a cd f2| ....d..ZEz..| [11]: "e2d4e3a66400b55a457acdf211d4d1d3fca707fb4d94cc3f3390b2f90da73059" (raw bits) id 0x30f4-0x3114 (32) +0x3100|11 d4 d1 d3 fc a7 07 fb 4d 94 cc 3f 33 90 b2 f9|........M..?3...| +0x3110|0d a7 30 59 |..0Y | +0x3110| f7 eb 9e d2 96 0e 0f f9 fd 36 70 05| .........6p.| [12]: "f7eb9ed2960e0ff9fd367005b3280649d71f4eae7c33a23c0cd5a811759071b0" (raw bits) id 0x3114-0x3134 (32) +0x3120|b3 28 06 49 d7 1f 4e ae 7c 33 a2 3c 0c d5 a8 11|.(.I..N.|3.<....| +0x3130|75 90 71 b0 |u.q. | +0x3130| 00 5c ef 5e 15 fa 74 e3 39 51 9f 52| .\.^..t.9Q.R| [13]: "005cef5e15fa74e339519f52eb1dd0eeaabdcbe842890155c3072b379acf040d" (raw bits) id 0x3134-0x3154 (32) +0x3140|eb 1d d0 ee aa bd cb e8 42 89 01 55 c3 07 2b 37|........B..U..+7| +0x3150|9a cf 04 0d |.... | +0x3150| 06 53 a2 f0 20 fe c2 10 94 82 ec ff| .S.. .......| [14]: "0653a2f020fec2109482ecffc12acbd112b809a95581ce4a7579cd98c0a53c6a" (raw bits) id 0x3154-0x3174 (32) +0x3160|c1 2a cb d1 12 b8 09 a9 55 81 ce 4a 75 79 cd 98|.*......U..Juy..| +0x3170|c0 a5 3c 6a |...| [16]: "253b46f94c5978a11c703ed0edac2a202ff43246cde816b7094f108961cffdd7" (raw bits) id 0x3194-0x31b4 (32) +0x31a0|ed ac 2a 20 2f f4 32 46 cd e8 16 b7 09 4f 10 89|..* /.2F.....O..| +0x31b0|61 cf fd d7 |a... | +0x31b0| 27 32 11 32 62 3e df 47 53 33 16 b8| '2.2b>.GS3..| [17]: "27321132623edf47533316b8c415c475bddd30f54d50553850bf59c37ac47120" (raw bits) id 0x31b4-0x31d4 (32) +0x31c0|c4 15 c4 75 bd dd 30 f5 4d 50 55 38 50 bf 59 c3|...u..0.MPU8P.Y.| +0x31d0|7a c4 71 20 |z.q | +0x31d0| 35 0f 3a 0d 1d bb 0c 65 79 ed 8c 38| 5.:....ey..8| [18]: "350f3a0d1dbb0c6579ed8c3809627498e582c6e45222790c22c38bd886e53c9b" (raw bits) id 0x31d4-0x31f4 (32) +0x31e0|09 62 74 98 e5 82 c6 e4 52 22 79 0c 22 c3 8b d8|.bt.....R"y."...| +0x31f0|86 e5 3c 9b |..<. | +0x31f0| 3c 0c 24 3f 62 c7 2e f0 3e 8f 10 1a| <.$?b...>...| [19]: "3c0c243f62c72ef03e8f101ada1d479a7f199aa43992a1ab12430c5d6b5f9a64" (raw bits) id 0x31f4-0x3214 (32) +0x3200|da 1d 47 9a 7f 19 9a a4 39 92 a1 ab 12 43 0c 5d|..G.....9....C.]| +0x3210|6b 5f 9a 64 |k_.d | +0x3210| 52 33 f8 77 49 bf 95 28 7f 83 eb e4| R3.wI..(....| [20]: "5233f87749bf95287f83ebe4def1a961138e8afec35c499831f8648b4a8c4253" (raw bits) id 0x3214-0x3234 (32) +0x3220|de f1 a9 61 13 8e 8a fe c3 5c 49 98 31 f8 64 8b|...a.....\I.1.d.| +0x3230|4a 8c 42 53 |J.BS | +0x3230| 58 a3 ed cf 78 13 cd 50 4f 73 00 32| X...x..POs.2| [21]: "58a3edcf7813cd504f73003257d5f20757a3a77531018060a6da2f3cc787b62a" (raw bits) id 0x3234-0x3254 (32) +0x3240|57 d5 f2 07 57 a3 a7 75 31 01 80 60 a6 da 2f 3c|W...W..u1..`../<| +0x3250|c7 87 b6 2a |...* | +0x3250| 63 65 7c 04 c8 2b 5b 05 2b d0 30 a6| ce|..+[.+.0.| [22]: "63657c04c82b5b052bd030a628ace5b8c4c9a7803d8bcdf1cfeea67ee511776d" (raw bits) id 0x3254-0x3274 (32) +0x3260|28 ac e5 b8 c4 c9 a7 80 3d 8b cd f1 cf ee a6 7e|(.......=......~| +0x3270|e5 11 77 6d |..wm | +0x3270| 65 ab 58 2d 7b 07 37 fd 33 00 ef 90| e.X-{.7.3...| [23]: "65ab582d7b0737fd3300ef90b7dbc7e1f2fec7241c060245ecb8a568d9aa816a" (raw bits) id 0x3274-0x3294 (32) +0x3280|b7 db c7 e1 f2 fe c7 24 1c 06 02 45 ec b8 a5 68|.......$...E...h| +0x3290|d9 aa 81 6a |...j | +0x3290| 71 70 45 3c 08 0f 40 50 77 2f 7f fb| qpE<..@Pw/..| [24]: "7170453c080f4050772f7ffb3fc2a8c61d561d16d44ad8b22802f05b00a78ef2" (raw bits) id 0x3294-0x32b4 (32) +0x32a0|3f c2 a8 c6 1d 56 1d 16 d4 4a d8 b2 28 02 f0 5b|?....V...J..(..[| +0x32b0|00 a7 8e f2 |.... | +0x32b0| 98 5e f9 2c 83 56 6c 72 2c bd 41 98| .^.,.Vlr,.A.| [25]: "985ef92c83566c722cbd4198c26cb0a52ce056ee48f65f054c972164881a7062" (raw bits) id 0x32b4-0x32d4 (32) +0x32c0|c2 6c b0 a5 2c e0 56 ee 48 f6 5f 05 4c 97 21 64|.l..,.V.H._.L.!d| +0x32d0|88 1a 70 62 |..pb | +0x32d0| 9c e5 df 5f 47 b5 2b c6 44 fa f0 f2| ..._G.+.D...| [26]: "9ce5df5f47b52bc644faf0f2d860a5114ea254f84f01b16195d6e319583b4610" (raw bits) id 0x32d4-0x32f4 (32) +0x32e0|d8 60 a5 11 4e a2 54 f8 4f 01 b1 61 95 d6 e3 19|.`..N.T.O..a....| +0x32f0|58 3b 46 10 |X;F. | + | | | [16]{}: bound 0x32f4-0x363b (839) +0x32f0| 82 a2 38 | ..8 | timestamp_delta: 37175 (37176) 0x32f4-0x32f7 (3) + | | | timestamp: 1726788188 (2024-09-19T23:23:08Z) +0x32f0| 01 | . | id_prefix_size: 1 0x32f7-0x32f8 (1) +0x32f0| 08 | . | id_prefix: "08" (raw bits) 0x32f8-0x32f9 (1) +0x32f0| 02 | . | mode: "idlist" (2) 0x32f9-0x32fa (1) + | | | idlist{}: 0x32fa-0x363b (833) +0x32f0| 1a | . | num: 26 0x32fa-0x32fb (1) + | | | ids[0:26]: 0x32fb-0x363b (832) +0x32f0| a0 cb a8 1a 34| ....4| [0]: "a0cba81a345927c81e46496e495fe11cd35e3a3eb2768dc4227239d6fd72300c" (raw bits) id 0x32fb-0x331b (32) +0x3300|59 27 c8 1e 46 49 6e 49 5f e1 1c d3 5e 3a 3e b2|Y'..FInI_...^:>.| +0x3310|76 8d c4 22 72 39 d6 fd 72 30 0c |v.."r9..r0. | +0x3310| e1 fa b2 be 6b| ....k| [1]: "e1fab2be6b2cf35e1a93e2ab9c0972a8aa04f36d63f3e0d1e07bcfe514f0d9de" (raw bits) id 0x331b-0x333b (32) +0x3320|2c f3 5e 1a 93 e2 ab 9c 09 72 a8 aa 04 f3 6d 63|,.^......r....mc| +0x3330|f3 e0 d1 e0 7b cf e5 14 f0 d9 de |....{...... | +0x3330| e5 e5 a9 64 e0| ...d.| [2]: "e5e5a964e00976d80071582e11c3d743597c61eb92c5ff8810255d5ad00ae30e" (raw bits) id 0x333b-0x335b (32) +0x3340|09 76 d8 00 71 58 2e 11 c3 d7 43 59 7c 61 eb 92|.v..qX....CY|a..| +0x3350|c5 ff 88 10 25 5d 5a d0 0a e3 0e |....%]Z.... | +0x3350| ee 2c 49 67 a6| .,Ig.| [3]: "ee2c4967a67672e243c6b284205157cdcfc643d8e8c216a85f57d5474b8a5b55" (raw bits) id 0x335b-0x337b (32) +0x3360|76 72 e2 43 c6 b2 84 20 51 57 cd cf c6 43 d8 e8|vr.C... QW...C..| +0x3370|c2 16 a8 5f 57 d5 47 4b 8a 5b 55 |..._W.GK.[U | +0x3370| f0 f6 16 34 5c| ...4\| [4]: "f0f616345ca423bedfaa754912a64bb82690af4eb0c1bd1f8e724f5d799cc7a0" (raw bits) id 0x337b-0x339b (32) +0x3380|a4 23 be df aa 75 49 12 a6 4b b8 26 90 af 4e b0|.#...uI..K.&..N.| +0x3390|c1 bd 1f 8e 72 4f 5d 79 9c c7 a0 |....rO]y... | +0x3390| f8 ac 6f df d8| ..o..| [5]: "f8ac6fdfd830c6a889d088202540c1cc37b6b672db3ff16b6b44bb7b27002554" (raw bits) id 0x339b-0x33bb (32) +0x33a0|30 c6 a8 89 d0 88 20 25 40 c1 cc 37 b6 b6 72 db|0..... %@..7..r.| +0x33b0|3f f1 6b 6b 44 bb 7b 27 00 25 54 |?.kkD.{'.%T | +0x33b0| 04 7e b1 4e 30| .~.N0| [6]: "047eb14e302ce6d9c602c847a66447f17c9b067d89e34c3ca56631cdf53d5489" (raw bits) id 0x33bb-0x33db (32) +0x33c0|2c e6 d9 c6 02 c8 47 a6 64 47 f1 7c 9b 06 7d 89|,.....G.dG.|..}.| +0x33d0|e3 4c 3c a5 66 31 cd f5 3d 54 89 |.L<.f1..=T. | +0x33d0| 22 99 b0 99 96| "....| [7]: "2299b09996ba54aa833f9b7adfa08f26fc503b767c9fc506595b2a17aaaeec0e" (raw bits) id 0x33db-0x33fb (32) +0x33e0|ba 54 aa 83 3f 9b 7a df a0 8f 26 fc 50 3b 76 7c|.T..?.z...&.P;v|| +0x33f0|9f c5 06 59 5b 2a 17 aa ae ec 0e |...Y[*..... | +0x33f0| 41 d0 f6 20 2b| A.. +| [8]: "41d0f6202b35d34984743d676c785b7fdd2fcc3615d1b8ded5b0143c535916ae" (raw bits) id 0x33fb-0x341b (32) +0x3400|35 d3 49 84 74 3d 67 6c 78 5b 7f dd 2f cc 36 15|5.I.t=glx[../.6.| +0x3410|d1 b8 de d5 b0 14 3c 53 59 16 ae |......Z.1.| | +0x3430| 59 81 97 c3 0c| Y....| [10]: "598197c30ca79589c4f1198053c262b361cfdf747a28cdfb0ae07eaad370972d" (raw bits) id 0x343b-0x345b (32) +0x3440|a7 95 89 c4 f1 19 80 53 c2 62 b3 61 cf df 74 7a|.......S.b.a..tz| +0x3450|28 cd fb 0a e0 7e aa d3 70 97 2d |(....~..p.- | +0x3450| 79 5d c0 5a 85| y].Z.| [11]: "795dc05a85f99eb14fb4059009dd484a25312af444a1f673139223a95c229ba3" (raw bits) id 0x345b-0x347b (32) +0x3460|f9 9e b1 4f b4 05 90 09 dd 48 4a 25 31 2a f4 44|...O.....HJ%1*.D| +0x3470|a1 f6 73 13 92 23 a9 5c 22 9b a3 |..s..#.\".. | +0x3470| 7a 20 42 e2 f5| z B..| [12]: "7a2042e2f5845a2eb37479ef0ed3690a37b4410f5d7eba4f5c71e7766ed2ab3f" (raw bits) id 0x347b-0x349b (32) +0x3480|84 5a 2e b3 74 79 ef 0e d3 69 0a 37 b4 41 0f 5d|.Z..ty...i.7.A.]| +0x3490|7e ba 4f 5c 71 e7 76 6e d2 ab 3f |~.O\q.vn..? | +0x3490| 7d d4 74 d3 57| }.t.W| [13]: "7dd474d3574f07cbe1538d3bea2b67260e9aaac46351f064a37a553fcdf2338e" (raw bits) id 0x349b-0x34bb (32) +0x34a0|4f 07 cb e1 53 8d 3b ea 2b 67 26 0e 9a aa c4 63|O...S.;.+g&....c| +0x34b0|51 f0 64 a3 7a 55 3f cd f2 33 8e |Q.d.zU?..3. | +0x34b0| 80 b9 52 db 5d| ..R.]| [14]: "80b952db5d7229c9b168edc14129174564779a7d9244480bdb1ef2dee617a7ab" (raw bits) id 0x34bb-0x34db (32) +0x34c0|72 29 c9 b1 68 ed c1 41 29 17 45 64 77 9a 7d 92|r)..h..A).Edw.}.| +0x34d0|44 48 0b db 1e f2 de e6 17 a7 ab |DH......... | +0x34d0| 8a 24 c6 1c 73| .$..s| [15]: "8a24c61c731c8e65202b00c9fda5a162b12eee956260bb04940b6b6bf253de44" (raw bits) id 0x34db-0x34fb (32) +0x34e0|1c 8e 65 20 2b 00 c9 fd a5 a1 62 b1 2e ee 95 62|..e +.....b....b| +0x34f0|60 bb 04 94 0b 6b 6b f2 53 de 44 |`....kk.S.D | +0x34f0| 8f 72 06 9e 91| .r...| [16]: "8f72069e913c696e92fa30a44cac3b7c390e95612f15fbe7a7ff227c886bff6e" (raw bits) id 0x34fb-0x351b (32) +0x3500|3c 69 6e 92 fa 30 a4 4c ac 3b 7c 39 0e 95 61 2f|.. | +0x3550| b0 b2 5a e4 e7| ..Z..| [19]: "b0b25ae4e7fef6ea257b74c47d74692157a4fea89b420d47e1d4b91d55551f94" (raw bits) id 0x355b-0x357b (32) +0x3560|fe f6 ea 25 7b 74 c4 7d 74 69 21 57 a4 fe a8 9b|...%{t.}ti!W....| +0x3570|42 0d 47 e1 d4 b9 1d 55 55 1f 94 |B.G....UU.. | +0x3570| b3 35 1f 04 19| .5...| [20]: "b3351f04199db2fa0c423c85bfe09e6242945f63b1648466a8d3688cea37b07f" (raw bits) id 0x357b-0x359b (32) +0x3580|9d b2 fa 0c 42 3c 85 bf e0 9e 62 42 94 5f 63 b1|....B<....bB._c.| +0x3590|64 84 66 a8 d3 68 8c ea 37 b0 7f |d.f..h..7.. | +0x3590| c0 0c 07 62 50| ...bP| [21]: "c00c076250df1f638e2678626343c871b16fb5ff7d19ace813da70cded8c7bbe" (raw bits) id 0x359b-0x35bb (32) +0x35a0|df 1f 63 8e 26 78 62 63 43 c8 71 b1 6f b5 ff 7d|..c.&xbcC.q.o..}| +0x35b0|19 ac e8 13 da 70 cd ed 8c 7b be |.....p...{. | +0x35b0| c0 7a 75 fd aa| .zu..| [22]: "c07a75fdaadb2a52434d0d1dbd6777860511aff5ce1a0f8f8ecf8316236904ef" (raw bits) id 0x35bb-0x35db (32) +0x35c0|db 2a 52 43 4d 0d 1d bd 67 77 86 05 11 af f5 ce|.*RCM...gw......| +0x35d0|1a 0f 8f 8e cf 83 16 23 69 04 ef |.......#i.. | +0x35d0| c9 13 52 2f c0| ..R/.| [23]: "c913522fc00178884bdfe908f9e44ce84651c1d908133e7b56ea22678632a539" (raw bits) id 0x35db-0x35fb (32) +0x35e0|01 78 88 4b df e9 08 f9 e4 4c e8 46 51 c1 d9 08|.x.K.....L.FQ...| +0x35f0|13 3e 7b 56 ea 22 67 86 32 a5 39 |.>{V."g.2.9 | +0x35f0| d2 03 0d 13 3a| ....:| [24]: "d2030d133a1bbb5d1811ef20a72683a2bb374148b8ec5bc77193785dc0a8675c" (raw bits) id 0x35fb-0x361b (32) +0x3600|1b bb 5d 18 11 ef 20 a7 26 83 a2 bb 37 41 48 b8|..]... .&...7AH.| +0x3610|ec 5b c7 71 93 78 5d c0 a8 67 5c |.[.q.x]..g\ | +0x3610| e9 de 1e d9 e9| .....| [25]: "e9de1ed9e93946233f18a0d046cd93cf4bf374dfffc5cb05b877c25e50a14db1" (raw bits) id 0x361b-0x363b (32) +0x3620|39 46 23 3f 18 a0 d0 46 cd 93 cf 4b f3 74 df ff|9F#?...F...K.t..| +0x3630|c5 cb 05 b8 77 c2 5e 50 a1 4d b1| |....w.^P.M.| |